-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb-ui-bundle.html
More file actions
104 lines (88 loc) · 3.88 KB
/
Copy pathweb-ui-bundle.html
File metadata and controls
104 lines (88 loc) · 3.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!-- DRAWER -->
<mostly-slot-content name="favoritesDrawerItem" slot="DRAWER_ITEMS" order="60">
<template>
<mostly-menu-icon name="favorites" icon="mostly:favorites" label="app.favorites"></mostly-menu-icon>
</template>
</mostly-slot-content>
<mostly-slot-content name="favoritesDrawerPage" slot="DRAWER_PAGES">
<template>
<playing-favorites name="favorites"></playing-favorites>
</template>
</mostly-slot-content>
<mostly-slot-content name="collectionsDrawerItem" slot="DRAWER_ITEMS" order="70">
<template>
<mostly-menu-icon name="collections" icon="mostly:collections" label="app.collections"></mostly-menu-icon>
</template>
</mostly-slot-content>
<mostly-slot-content name="collectionsDrawerPage" slot="DRAWER_PAGES">
<template>
<playing-collections name="collections" id="collectionsForm"></playing-collections>
</template>
</mostly-slot-content>
<!-- PAGES -->
<!--
<mostly-slot-content name="collectionsPage" slot="PAGES">
<template>
<playing-collection-results name="collection" id="collectionResults" on-navigate="_navigateFromCollection"></playing-collection-results>
</template>
</mostly-slot-content>
-->
<!-- DOCUMENT ACTIONS -->
<mostly-slot-content name="addToColDocumentAction" slot="DOCUMENT_ACTIONS" order="20">
<template>
<playing-add-to-collection-button document="[[document]]"></playing-add-to-collection-button>
</template>
</mostly-slot-content>
<mostly-slot-content name="favoriteToggleDocumentAction" slot="DOCUMENT_ACTIONS" order="30">
<template>
<playing-favorites-toggle-button document="[[document]]"></playing-favorites-toggle-button>
</template>
</mostly-slot-content>
<mostly-slot-content name="shareDocumentAction" slot="DOCUMENT_ACTIONS" order="40">
<template>
<playing-share-button document="[[document]]"></playing-share-button>
</template>
</mostly-slot-content>
<mostly-slot-content name="notificationDocumentAction" slot="DOCUMENT_ACTIONS" order="50">
<template>
<playing-notifications-toggle-button document="[[document]]"></playing-notifications-toggle-button>
</template>
</mostly-slot-content>
<!-- RESULT SELECTION ACTIONS -->
<mostly-slot-content name="addToCollectionSelectionAction" slot="RESULTS_SELECTION_ACTIONS" order="10">
<template>
<playing-add-to-collection-bulk-button documents="[[selectedItems]]">
</playing-add-to-collection-bulk-button>
</template>
</mostly-slot-content>
<!-- COLECTION ACTIONS -->
<mostly-slot-content name="removeCollectionAction" slot="COLLECTION_ACTIONS" order="10">
<template>
<playing-collection-remove-action members="[[selectedItems]]" all-members="[[items]]" collection="[[collection]]">
</playing-collection-remove-action>
</template>
</mostly-slot-content>
<mostly-slot-content name="moveTopCollectionAction" slot="COLLECTION_ACTIONS" order="20">
<template>
<playing-collection-move-top-action members="[[selectedItems]]" all-members="[[items]]" collection="[[collection]]">
</playing-collection-move-top-action>
</template>
</mostly-slot-content>
<mostly-slot-content name="moveUpCollectionAction" slot="COLLECTION_ACTIONS" order="30">
<template>
<playing-collection-move-up-action members="[[selectedItems]]" all-members="[[items]]" collection="[[collection]]">
</playing-collection-move-up-action>
</template>
</mostly-slot-content>
<mostly-slot-content name="moveDownCollectionAction" slot="COLLECTION_ACTIONS" order="40">
<template>
<playing-collection-move-down-action members="[[selectedItems]]" all-members="[[items]]" collection="[[collection]]">
</playing-collection-move-down-action>
</template>
</mostly-slot-content>
<mostly-slot-content name="moveBottomCollectionAction" slot="COLLECTION_ACTIONS" order="50">
<template>
<playing-collection-move-bottom-action members="[[selectedItems]]" all-members="[[items]]" collection="[[collection]]">
</playing-collection-move-bottom-action>
</template>
</mostly-slot-content>