@alfresco/aca-content 4.0.0-A.2-9984

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (255) hide show
  1. package/README.md +24 -0
  2. package/assets/app.extensions.json +2496 -0
  3. package/assets/i18n/ar.json +634 -0
  4. package/assets/i18n/cs.json +634 -0
  5. package/assets/i18n/da.json +634 -0
  6. package/assets/i18n/de.json +634 -0
  7. package/assets/i18n/en.json +634 -0
  8. package/assets/i18n/es.json +634 -0
  9. package/assets/i18n/fi.json +634 -0
  10. package/assets/i18n/fr.json +634 -0
  11. package/assets/i18n/it.json +634 -0
  12. package/assets/i18n/ja.json +634 -0
  13. package/assets/i18n/nb.json +634 -0
  14. package/assets/i18n/nl.json +634 -0
  15. package/assets/i18n/pl.json +634 -0
  16. package/assets/i18n/pt-BR.json +634 -0
  17. package/assets/i18n/ru.json +634 -0
  18. package/assets/i18n/sv.json +634 -0
  19. package/assets/i18n/zh-CN.json +634 -0
  20. package/assets/images/Wallpaper-BG-generic.svg +39 -0
  21. package/assets/images/adf-move-file-24px.svg +1 -0
  22. package/assets/images/baseline-library_books-24px.svg +2 -0
  23. package/assets/images/baseline-lock-24px.svg +1 -0
  24. package/assets/images/join-library.svg +32 -0
  25. package/assets/images/mastHead-bg-shapesPattern.svg +53 -0
  26. package/esm2020/alfresco-aca-content.mjs +5 -0
  27. package/esm2020/lib/aca-content.module.mjs +364 -0
  28. package/esm2020/lib/aca-content.routes.mjs +582 -0
  29. package/esm2020/lib/components/common/common.module.mjs +49 -0
  30. package/esm2020/lib/components/common/language-picker/language-picker.component.mjs +58 -0
  31. package/esm2020/lib/components/common/location-link/location-link.component.mjs +178 -0
  32. package/esm2020/lib/components/common/logout/logout.component.mjs +61 -0
  33. package/esm2020/lib/components/common/toggle-shared/toggle-shared.component.mjs +66 -0
  34. package/esm2020/lib/components/context-menu/context-menu-item.component.mjs +59 -0
  35. package/esm2020/lib/components/context-menu/context-menu-outside-event.directive.mjs +66 -0
  36. package/esm2020/lib/components/context-menu/context-menu-overlay.mjs +33 -0
  37. package/esm2020/lib/components/context-menu/context-menu.component.mjs +103 -0
  38. package/esm2020/lib/components/context-menu/context-menu.module.mjs +77 -0
  39. package/esm2020/lib/components/context-menu/context-menu.service.mjs +104 -0
  40. package/esm2020/lib/components/context-menu/direction.token.mjs +30 -0
  41. package/esm2020/lib/components/context-menu/interfaces.mjs +26 -0
  42. package/esm2020/lib/components/create-menu/create-menu.component.mjs +74 -0
  43. package/esm2020/lib/components/create-menu/create-menu.module.mjs +45 -0
  44. package/esm2020/lib/components/details/details.component.mjs +100 -0
  45. package/esm2020/lib/components/dl-custom-components/document-list-custom-components.module.mjs +49 -0
  46. package/esm2020/lib/components/dl-custom-components/name-column/name-column.component.mjs +93 -0
  47. package/esm2020/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.mjs +52 -0
  48. package/esm2020/lib/components/favorite-libraries/favorite-libraries.component.mjs +114 -0
  49. package/esm2020/lib/components/favorites/favorites.component.mjs +99 -0
  50. package/esm2020/lib/components/files/files.component.mjs +312 -0
  51. package/esm2020/lib/components/header/header.component.mjs +98 -0
  52. package/esm2020/lib/components/header/header.module.mjs +46 -0
  53. package/esm2020/lib/components/home/home.component.mjs +50 -0
  54. package/esm2020/lib/components/info-drawer/comments-tab/comments-tab.component.mjs +57 -0
  55. package/esm2020/lib/components/info-drawer/info.drawer.module.mjs +93 -0
  56. package/esm2020/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.mjs +144 -0
  57. package/esm2020/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.mjs +43 -0
  58. package/esm2020/lib/components/info-drawer/metadata-tab/metadata-tab.component.mjs +89 -0
  59. package/esm2020/lib/components/info-drawer/versions-tab/versions-tab.component.mjs +96 -0
  60. package/esm2020/lib/components/layout/app-layout/app-layout.component.mjs +147 -0
  61. package/esm2020/lib/components/layout/layout.module.mjs +75 -0
  62. package/esm2020/lib/components/libraries/libraries.component.mjs +71 -0
  63. package/esm2020/lib/components/main-action/main-action.component.mjs +60 -0
  64. package/esm2020/lib/components/main-action/main-action.module.mjs +46 -0
  65. package/esm2020/lib/components/node-version/node-version-form.component.mjs +71 -0
  66. package/esm2020/lib/components/node-version/node-version.module.mjs +79 -0
  67. package/esm2020/lib/components/recent-files/recent-files.component.mjs +82 -0
  68. package/esm2020/lib/components/search/search-action-menu/search-action-menu.component.mjs +60 -0
  69. package/esm2020/lib/components/search/search-input/search-input.component.mjs +263 -0
  70. package/esm2020/lib/components/search/search-input-control/search-input-control.component.mjs +88 -0
  71. package/esm2020/lib/components/search/search-input.module.mjs +48 -0
  72. package/esm2020/lib/components/search/search-libraries-results/search-libraries-query-builder.service.mjs +92 -0
  73. package/esm2020/lib/components/search/search-libraries-results/search-libraries-results.component.mjs +140 -0
  74. package/esm2020/lib/components/search/search-results/search-results.component.mjs +218 -0
  75. package/esm2020/lib/components/search/search-results-row/search-results-row.component.mjs +94 -0
  76. package/esm2020/lib/components/search/search-results.module.mjs +86 -0
  77. package/esm2020/lib/components/shared-files/shared-files.component.mjs +79 -0
  78. package/esm2020/lib/components/shared-link-view/shared-link-view.component.mjs +81 -0
  79. package/esm2020/lib/components/shared-link-view/shared-link-view.module.mjs +66 -0
  80. package/esm2020/lib/components/sidenav/components/button-menu.component.mjs +58 -0
  81. package/esm2020/lib/components/sidenav/components/expand-menu.component.mjs +54 -0
  82. package/esm2020/lib/components/sidenav/directives/action.directive.mjs +75 -0
  83. package/esm2020/lib/components/sidenav/directives/active-link.directive.mjs +93 -0
  84. package/esm2020/lib/components/sidenav/directives/expansion-panel.directive.mjs +102 -0
  85. package/esm2020/lib/components/sidenav/directives/menu-panel.directive.mjs +99 -0
  86. package/esm2020/lib/components/sidenav/sidenav-wrapper/sidenav-wrapper.component.mjs +45 -0
  87. package/esm2020/lib/components/sidenav/sidenav.component.mjs +76 -0
  88. package/esm2020/lib/components/sidenav/sidenav.module.mjs +104 -0
  89. package/esm2020/lib/components/toolbar/document-display-mode/document-display-mode.component.mjs +85 -0
  90. package/esm2020/lib/components/toolbar/toggle-edit-offline/toggle-edit-offline.component.mjs +151 -0
  91. package/esm2020/lib/components/toolbar/toggle-favorite/toggle-favorite.component.mjs +80 -0
  92. package/esm2020/lib/components/toolbar/toggle-favorite-library/toggle-favorite-library.component.mjs +102 -0
  93. package/esm2020/lib/components/toolbar/toggle-info-drawer/toggle-info-drawer.component.mjs +76 -0
  94. package/esm2020/lib/components/toolbar/toggle-join-library/toggle-join-library-button.component.mjs +99 -0
  95. package/esm2020/lib/components/toolbar/toggle-join-library/toggle-join-library-menu.component.mjs +81 -0
  96. package/esm2020/lib/components/toolbar/toolbar.module.mjs +89 -0
  97. package/esm2020/lib/components/toolbar/view-node/view-node.component.mjs +102 -0
  98. package/esm2020/lib/components/trashcan/trashcan.component.mjs +64 -0
  99. package/esm2020/lib/components/trashcan/trashcan.module.mjs +71 -0
  100. package/esm2020/lib/components/upload-files-dialog/upload-files-dialog.component.mjs +34 -0
  101. package/esm2020/lib/components/view-profile/view-profile.component.mjs +158 -0
  102. package/esm2020/lib/components/view-profile/view-profile.guard.mjs +31 -0
  103. package/esm2020/lib/components/view-profile/view-profile.module.mjs +43 -0
  104. package/esm2020/lib/dialogs/node-template/create-from-template.dialog.mjs +120 -0
  105. package/esm2020/lib/directives/directives.module.mjs +43 -0
  106. package/esm2020/lib/directives/document-list.directive.mjs +142 -0
  107. package/esm2020/lib/extensions/core.extensions.module.mjs +66 -0
  108. package/esm2020/lib/material.module.mjs +58 -0
  109. package/esm2020/lib/services/content-management.service.mjs +871 -0
  110. package/esm2020/lib/services/content-service-extension.service.mjs +47 -0
  111. package/esm2020/lib/services/content-url.service.mjs +73 -0
  112. package/esm2020/lib/services/node-actions.service.mjs +601 -0
  113. package/esm2020/lib/services/node-template.service.mjs +150 -0
  114. package/esm2020/lib/store/app-store.module.mjs +96 -0
  115. package/esm2020/lib/store/effects/app.effects.mjs +62 -0
  116. package/esm2020/lib/store/effects/contextmenu.effects.mjs +56 -0
  117. package/esm2020/lib/store/effects/download.effects.mjs +160 -0
  118. package/esm2020/lib/store/effects/favorite.effects.mjs +77 -0
  119. package/esm2020/lib/store/effects/library.effects.mjs +112 -0
  120. package/esm2020/lib/store/effects/node.effects.mjs +310 -0
  121. package/esm2020/lib/store/effects/search.effects.mjs +55 -0
  122. package/esm2020/lib/store/effects/template.effects.mjs +122 -0
  123. package/esm2020/lib/store/effects/upload.effects.mjs +169 -0
  124. package/esm2020/lib/store/effects/viewer.effects.mjs +176 -0
  125. package/esm2020/lib/store/effects.mjs +36 -0
  126. package/esm2020/lib/store/initial-state.mjs +66 -0
  127. package/esm2020/lib/store/reducers/app.reducer.mjs +218 -0
  128. package/esm2020/public-api.mjs +9 -0
  129. package/fesm2015/alfresco-aca-content.mjs +9937 -0
  130. package/fesm2015/alfresco-aca-content.mjs.map +1 -0
  131. package/fesm2020/alfresco-aca-content.mjs +10103 -0
  132. package/fesm2020/alfresco-aca-content.mjs.map +1 -0
  133. package/index.d.ts +5 -0
  134. package/lib/aca-content.module.d.ts +49 -0
  135. package/lib/aca-content.routes.d.ts +28 -0
  136. package/lib/components/common/common.module.d.ts +14 -0
  137. package/lib/components/common/language-picker/language-picker.component.d.ts +5 -0
  138. package/lib/components/common/location-link/location-link.component.d.ts +49 -0
  139. package/lib/components/common/logout/logout.component.d.ts +10 -0
  140. package/lib/components/common/toggle-shared/toggle-shared.component.d.ts +44 -0
  141. package/lib/components/context-menu/context-menu-item.component.d.ts +13 -0
  142. package/lib/components/context-menu/context-menu-outside-event.directive.d.ts +36 -0
  143. package/lib/components/context-menu/context-menu-overlay.d.ts +30 -0
  144. package/lib/components/context-menu/context-menu.component.d.ts +49 -0
  145. package/lib/components/context-menu/context-menu.module.d.ts +18 -0
  146. package/lib/components/context-menu/context-menu.service.d.ts +44 -0
  147. package/lib/components/context-menu/direction.token.d.ts +26 -0
  148. package/lib/components/context-menu/interfaces.d.ts +31 -0
  149. package/lib/components/create-menu/create-menu.component.d.ts +43 -0
  150. package/lib/components/create-menu/create-menu.module.d.ts +10 -0
  151. package/lib/components/details/details.component.d.ts +47 -0
  152. package/lib/components/dl-custom-components/document-list-custom-components.module.d.ts +13 -0
  153. package/lib/components/dl-custom-components/name-column/name-column.component.d.ts +43 -0
  154. package/lib/components/dl-custom-components/thumbnail-column/thumbnail-column.component.d.ts +17 -0
  155. package/lib/components/favorite-libraries/favorite-libraries.component.d.ts +55 -0
  156. package/lib/components/favorites/favorites.component.d.ts +50 -0
  157. package/lib/components/files/files.component.d.ts +80 -0
  158. package/lib/components/header/header.component.d.ts +59 -0
  159. package/lib/components/header/header.module.d.ts +11 -0
  160. package/lib/components/home/home.component.d.ts +37 -0
  161. package/lib/components/info-drawer/comments-tab/comments-tab.component.d.ts +11 -0
  162. package/lib/components/info-drawer/info.drawer.module.d.ts +19 -0
  163. package/lib/components/info-drawer/library-metadata-tab/library-metadata-form.component.d.ts +65 -0
  164. package/lib/components/info-drawer/library-metadata-tab/library-metadata-tab.component.d.ts +7 -0
  165. package/lib/components/info-drawer/metadata-tab/metadata-tab.component.d.ts +50 -0
  166. package/lib/components/info-drawer/versions-tab/versions-tab.component.d.ts +36 -0
  167. package/lib/components/layout/app-layout/app-layout.component.d.ts +63 -0
  168. package/lib/components/layout/layout.module.d.ts +16 -0
  169. package/lib/components/libraries/libraries.component.d.ts +45 -0
  170. package/lib/components/main-action/main-action.component.d.ts +42 -0
  171. package/lib/components/main-action/main-action.module.d.ts +11 -0
  172. package/lib/components/node-version/node-version-form.component.d.ts +47 -0
  173. package/lib/components/node-version/node-version.module.d.ts +16 -0
  174. package/lib/components/recent-files/recent-files.component.d.ts +49 -0
  175. package/lib/components/search/search-action-menu/search-action-menu.component.d.ts +39 -0
  176. package/lib/components/search/search-input/search-input.component.d.ts +82 -0
  177. package/lib/components/search/search-input-control/search-input-control.component.d.ts +51 -0
  178. package/lib/components/search/search-input.module.d.ts +12 -0
  179. package/lib/components/search/search-libraries-results/search-libraries-query-builder.service.d.ts +57 -0
  180. package/lib/components/search/search-libraries-results/search-libraries-results.component.d.ts +58 -0
  181. package/lib/components/search/search-results/search-results.component.d.ts +70 -0
  182. package/lib/components/search/search-results-row/search-results-row.component.d.ts +49 -0
  183. package/lib/components/search/search-results.module.d.ts +21 -0
  184. package/lib/components/shared-files/shared-files.component.d.ts +48 -0
  185. package/lib/components/shared-link-view/shared-link-view.component.d.ts +48 -0
  186. package/lib/components/shared-link-view/shared-link-view.module.d.ts +14 -0
  187. package/lib/components/sidenav/components/button-menu.component.d.ts +38 -0
  188. package/lib/components/sidenav/components/expand-menu.component.d.ts +36 -0
  189. package/lib/components/sidenav/directives/action.directive.d.ts +14 -0
  190. package/lib/components/sidenav/directives/active-link.directive.d.ts +46 -0
  191. package/lib/components/sidenav/directives/expansion-panel.directive.d.ts +45 -0
  192. package/lib/components/sidenav/directives/menu-panel.directive.d.ts +43 -0
  193. package/lib/components/sidenav/sidenav-wrapper/sidenav-wrapper.component.d.ts +12 -0
  194. package/lib/components/sidenav/sidenav.component.d.ts +44 -0
  195. package/lib/components/sidenav/sidenav.module.d.ts +21 -0
  196. package/lib/components/toolbar/document-display-mode/document-display-mode.component.d.ts +13 -0
  197. package/lib/components/toolbar/toggle-edit-offline/toggle-edit-offline.component.d.ts +48 -0
  198. package/lib/components/toolbar/toggle-favorite/toggle-favorite.component.d.ts +43 -0
  199. package/lib/components/toolbar/toggle-favorite-library/toggle-favorite-library.component.d.ts +43 -0
  200. package/lib/components/toolbar/toggle-info-drawer/toggle-info-drawer.component.d.ts +11 -0
  201. package/lib/components/toolbar/toggle-join-library/toggle-join-library-button.component.d.ts +42 -0
  202. package/lib/components/toolbar/toggle-join-library/toggle-join-library-menu.component.d.ts +10 -0
  203. package/lib/components/toolbar/toolbar.module.d.ts +20 -0
  204. package/lib/components/toolbar/view-node/view-node.component.d.ts +17 -0
  205. package/lib/components/trashcan/trashcan.component.d.ts +43 -0
  206. package/lib/components/trashcan/trashcan.module.d.ts +15 -0
  207. package/lib/components/upload-files-dialog/upload-files-dialog.component.d.ts +14 -0
  208. package/lib/components/view-profile/view-profile.component.d.ts +36 -0
  209. package/lib/components/view-profile/view-profile.guard.d.ts +12 -0
  210. package/lib/components/view-profile/view-profile.module.d.ts +9 -0
  211. package/lib/dialogs/node-template/create-from-template.dialog.d.ts +50 -0
  212. package/lib/directives/directives.module.d.ts +9 -0
  213. package/lib/directives/document-list.directive.d.ts +57 -0
  214. package/lib/extensions/core.extensions.module.d.ts +14 -0
  215. package/lib/material.module.d.ts +14 -0
  216. package/lib/services/content-management.service.d.ts +101 -0
  217. package/lib/services/content-service-extension.service.d.ts +11 -0
  218. package/lib/services/content-url.service.d.ts +17 -0
  219. package/lib/services/node-actions.service.d.ts +93 -0
  220. package/lib/services/node-template.service.d.ts +34 -0
  221. package/lib/store/app-store.module.d.ts +10 -0
  222. package/lib/store/effects/app.effects.d.ts +42 -0
  223. package/lib/store/effects/contextmenu.effects.d.ts +12 -0
  224. package/lib/store/effects/download.effects.d.ts +50 -0
  225. package/lib/store/effects/favorite.effects.d.ts +39 -0
  226. package/lib/store/effects/library.effects.d.ts +44 -0
  227. package/lib/store/effects/node.effects.d.ts +57 -0
  228. package/lib/store/effects/search.effects.d.ts +35 -0
  229. package/lib/store/effects/template.effects.d.ts +55 -0
  230. package/lib/store/effects/upload.effects.d.ts +53 -0
  231. package/lib/store/effects/viewer.effects.d.ts +56 -0
  232. package/lib/store/effects.d.ts +35 -0
  233. package/lib/store/initial-state.d.ts +27 -0
  234. package/lib/store/reducers/app.reducer.d.ts +27 -0
  235. package/package.json +34 -0
  236. package/public-api.d.ts +5 -0
  237. package/ui/application.scss +49 -0
  238. package/ui/colors.scss +98 -0
  239. package/ui/custom-theme.scss +28 -0
  240. package/ui/dynamic-theme/custom-background-color.scss +16 -0
  241. package/ui/dynamic-theme/custom-palette-creator.scss +138 -0
  242. package/ui/dynamic-theme/custom-text-color.scss +8 -0
  243. package/ui/dynamic-theme/custom-theme-palettes.scss +29 -0
  244. package/ui/dynamic-theme/custom-theme.scss.tpl +60 -0
  245. package/ui/dynamic-theme/index.scss +1 -0
  246. package/ui/dynamic-theme/theme-configuration.scss.tpl +14 -0
  247. package/ui/dynamic-theme/typography.scss +63 -0
  248. package/ui/mixins.scss +26 -0
  249. package/ui/overrides/adf-about.theme.scss +39 -0
  250. package/ui/overrides/adf-pagination.theme.scss +47 -0
  251. package/ui/overrides/adf-style-fixes.theme.scss +18 -0
  252. package/ui/overrides/ay11.scss +204 -0
  253. package/ui/theme.scss +57 -0
  254. package/ui/variables/font-family.scss +1 -0
  255. package/ui/variables/variables.scss +83 -0
@@ -0,0 +1,2496 @@
1
+ {
2
+ "$schema": "../../../extension.schema.json",
3
+ "$id": "app.core",
4
+ "$name": "app.core",
5
+ "$version": "1.0.0",
6
+ "$vendor": "Alfresco Software, Ltd.",
7
+ "$license": "LGPL-3.0",
8
+ "$runtime": "1.7.0",
9
+ "$description": "Core application extensions and features",
10
+ "$references": [],
11
+ "$ignoreReferenceList": [],
12
+ "rules": [
13
+ {
14
+ "id": "app.toolbar.favorite.canAdd",
15
+ "type": "core.every",
16
+ "parameters": [
17
+ {
18
+ "type": "rule",
19
+ "value": "app.selection.canAddFavorite"
20
+ },
21
+ {
22
+ "type": "rule",
23
+ "value": "app.navigation.isNotRecentFiles"
24
+ },
25
+ {
26
+ "type": "rule",
27
+ "value": "app.navigation.isNotSharedFiles"
28
+ },
29
+ {
30
+ "type": "rule",
31
+ "value": "app.navigation.isNotSearchResults"
32
+ },
33
+ {
34
+ "type": "rule",
35
+ "value": "app.navigation.isNotFavorites"
36
+ }
37
+ ]
38
+ },
39
+ {
40
+ "id": "app.toolbar.favorite.canRemove",
41
+ "type": "core.every",
42
+ "parameters": [
43
+ {
44
+ "type": "rule",
45
+ "value": "app.selection.canRemoveFavorite"
46
+ },
47
+ {
48
+ "type": "rule",
49
+ "value": "app.navigation.isNotRecentFiles"
50
+ },
51
+ {
52
+ "type": "rule",
53
+ "value": "app.navigation.isNotSharedFiles"
54
+ },
55
+ {
56
+ "type": "rule",
57
+ "value": "app.navigation.isNotSearchResults"
58
+ },
59
+ {
60
+ "type": "rule",
61
+ "value": "app.navigation.isNotFavorites"
62
+ }
63
+ ]
64
+ },
65
+ {
66
+ "id": "app.toolbar.favorite.canEditMetadata",
67
+ "type": "core.every",
68
+ "parameters": [
69
+ {
70
+ "type": "rule",
71
+ "value": "app.selection.library"
72
+ },
73
+ {
74
+ "type": "rule",
75
+ "value": "isLibraryManager"
76
+ }
77
+ ]
78
+ }
79
+ ],
80
+ "features": {
81
+ "header": [
82
+ {
83
+ "id": "app.header.notification-center",
84
+ "type": "custom",
85
+ "component": "app.notification-center",
86
+ "order": 50
87
+ },
88
+ {
89
+ "id": "app.header.user",
90
+ "type": "custom",
91
+ "component": "app.user",
92
+ "order": 100
93
+ },
94
+ {
95
+ "id": "app.header.more",
96
+ "type": "menu",
97
+ "order": 10000,
98
+ "icon": "more_vert",
99
+ "title": "APP.ACTIONS.MORE",
100
+ "children": [
101
+ {
102
+ "id": "app.languagePicker",
103
+ "order": 100,
104
+ "type": "custom",
105
+ "component": "app.languagePicker"
106
+ },
107
+ {
108
+ "id": "logout.separator",
109
+ "type": "separator",
110
+ "order": 199
111
+ },
112
+ {
113
+ "id": "app.logout",
114
+ "order": 200,
115
+ "type": "custom",
116
+ "component": "app.logout",
117
+ "rules": {
118
+ "visible": "app.canShowLogout"
119
+ }
120
+ }
121
+ ]
122
+ }
123
+ ],
124
+ "icons": [
125
+ {
126
+ "id": "adf:join_library",
127
+ "value": "./assets/images/join-library.svg"
128
+ },
129
+ {
130
+ "id": "adf:move_file",
131
+ "value": "./assets/images/adf-move-file-24px.svg"
132
+ }
133
+ ],
134
+ "create": [
135
+ {
136
+ "id": "app.create.uploadFile",
137
+ "order": 100,
138
+ "icon": "file_upload",
139
+ "title": "APP.NEW_MENU.MENU_ITEMS.UPLOAD_FILE",
140
+ "description": "APP.NEW_MENU.TOOLTIPS.UPLOAD_FILES",
141
+ "description-disabled": "APP.NEW_MENU.TOOLTIPS.UPLOAD_FILES_NOT_ALLOWED",
142
+ "actions": {
143
+ "click": "UPLOAD_FILES"
144
+ },
145
+ "rules": {
146
+ "enabled": "app.navigation.folder.canUpload",
147
+ "visible": "app.isContentServiceEnabled"
148
+ }
149
+ },
150
+ {
151
+ "id": "app.create.uploadFolder",
152
+ "order": 200,
153
+ "icon": "file_upload",
154
+ "title": "APP.NEW_MENU.MENU_ITEMS.UPLOAD_FOLDER",
155
+ "description": "APP.NEW_MENU.TOOLTIPS.UPLOAD_FOLDERS",
156
+ "description-disabled": "APP.NEW_MENU.TOOLTIPS.UPLOAD_FOLDERS_NOT_ALLOWED",
157
+ "actions": {
158
+ "click": "UPLOAD_FOLDER"
159
+ },
160
+ "rules": {
161
+ "enabled": "app.navigation.folder.canUpload",
162
+ "visible": "app.isContentServiceEnabled"
163
+ }
164
+ },
165
+ {
166
+ "id": "app.create.separator.1",
167
+ "type": "separator",
168
+ "order": 300,
169
+ "rules": {
170
+ "visible": "app.isContentServiceEnabled"
171
+ }
172
+ },
173
+ {
174
+ "id": "app.create.folder",
175
+ "order": 400,
176
+ "icon": "create_new_folder",
177
+ "title": "APP.NEW_MENU.MENU_ITEMS.CREATE_FOLDER",
178
+ "description": "APP.NEW_MENU.TOOLTIPS.CREATE_FOLDER",
179
+ "description-disabled": "APP.NEW_MENU.TOOLTIPS.CREATE_FOLDER_NOT_ALLOWED",
180
+ "actions": {
181
+ "click": "CREATE_FOLDER"
182
+ },
183
+ "rules": {
184
+ "enabled": "app.navigation.folder.canCreate",
185
+ "visible": "app.isContentServiceEnabled"
186
+ }
187
+ },
188
+ {
189
+ "id": "app.create.library",
190
+ "order": 600,
191
+ "title": "APP.NEW_MENU.MENU_ITEMS.CREATE_LIBRARY",
192
+ "description": "APP.NEW_MENU.TOOLTIPS.CREATE_LIBRARY",
193
+ "icon": "create_new_folder",
194
+ "actions": {
195
+ "click": "CREATE_LIBRARY"
196
+ },
197
+ "rules": {
198
+ "visible": "app.isContentServiceEnabled"
199
+ }
200
+ },
201
+ {
202
+ "id": "app.create.separator.2",
203
+ "type": "separator",
204
+ "order": 650,
205
+ "rules": {
206
+ "visible": "app.isContentServiceEnabled"
207
+ }
208
+ },
209
+ {
210
+ "id": "app.create.fileFromTemplate",
211
+ "order": 700,
212
+ "icon": "description",
213
+ "title": "APP.NEW_MENU.MENU_ITEMS.FILE_TEMPLATE",
214
+ "description": "APP.NEW_MENU.MENU_ITEMS.FILE_TEMPLATE",
215
+ "description-disabled": "APP.NEW_MENU.TOOLTIPS.CREATE_FILE_NOT_ALLOWED",
216
+ "actions": {
217
+ "click": "FILE_FROM_TEMPLATE"
218
+ },
219
+ "rules": {
220
+ "enabled": "app.navigation.folder.canUpload",
221
+ "visible": "app.isContentServiceEnabled"
222
+ }
223
+ },
224
+ {
225
+ "id": "app.create.folderFromTemplate",
226
+ "order": 800,
227
+ "icon": "create_new_folder",
228
+ "title": "APP.NEW_MENU.MENU_ITEMS.FOLDER_TEMPLATE",
229
+ "description": "APP.NEW_MENU.MENU_ITEMS.FOLDER_TEMPLATE",
230
+ "description-disabled": "APP.NEW_MENU.TOOLTIPS.CREATE_FOLDER_NOT_ALLOWED",
231
+ "actions": {
232
+ "click": "FOLDER_FROM_TEMPLATE"
233
+ },
234
+ "rules": {
235
+ "enabled": "app.navigation.folder.canUpload",
236
+ "visible": "app.isContentServiceEnabled"
237
+ }
238
+ }
239
+ ],
240
+ "navbar": [
241
+ {
242
+ "id": "app.navbar.primary",
243
+ "items": [
244
+ {
245
+ "id": "app.navbar.personalFiles",
246
+ "order": 100,
247
+ "icon": "folder",
248
+ "title": "APP.BROWSE.PERSONAL.SIDENAV_LINK.LABEL",
249
+ "description": "APP.BROWSE.PERSONAL.SIDENAV_LINK.TOOLTIP",
250
+ "route": "personal-files",
251
+ "rules": {
252
+ "visible": "app.isContentServiceEnabled"
253
+ }
254
+ },
255
+ {
256
+ "id": "app.navbar.libraries.menu",
257
+ "order": 200,
258
+ "icon": "library_books",
259
+ "title": "APP.BROWSE.LIBRARIES.SIDENAV_LINK.LABEL",
260
+ "description": "APP.BROWSE.LIBRARIES.SIDENAV_LINK.TOOLTIP",
261
+ "rules": {
262
+ "visible": "app.isContentServiceEnabled"
263
+ },
264
+ "children": [
265
+ {
266
+ "id": "app.navbar.libraries.favorite",
267
+ "order": 100,
268
+ "title": "APP.BROWSE.LIBRARIES.MENU.FAVORITE_LIBRARIES.SIDENAV_LINK.LABEL",
269
+ "description": "APP.BROWSE.LIBRARIES.MENU.FAVORITE_LIBRARIES.SIDENAV_LINK.TOOLTIP",
270
+ "route": "favorite/libraries"
271
+ },
272
+ {
273
+ "id": "app.navbar.libraries.files",
274
+ "order": 200,
275
+ "title": "APP.BROWSE.LIBRARIES.MENU.MY_LIBRARIES.SIDENAV_LINK.LABEL",
276
+ "description": "APP.BROWSE.LIBRARIES.MENU.MY_LIBRARIES.SIDENAV_LINK.TOOLTIP",
277
+ "route": "libraries"
278
+ }
279
+ ]
280
+ }
281
+ ]
282
+ },
283
+ {
284
+ "id": "app.navbar.secondary",
285
+ "rules": {
286
+ "visible": "app.isContentServiceEnabled"
287
+ },
288
+ "items": [
289
+ {
290
+ "id": "app.navbar.shared",
291
+ "order": 100,
292
+ "icon": "people",
293
+ "title": "APP.BROWSE.SHARED.SIDENAV_LINK.LABEL",
294
+ "description": "APP.BROWSE.SHARED.SIDENAV_LINK.TOOLTIP",
295
+ "route": "shared",
296
+ "rules": {
297
+ "visible": "repository.isQuickShareEnabled"
298
+ }
299
+ },
300
+ {
301
+ "id": "app.navbar.recentFiles",
302
+ "order": 200,
303
+ "icon": "schedule",
304
+ "title": "APP.BROWSE.RECENT.SIDENAV_LINK.LABEL",
305
+ "description": "APP.BROWSE.RECENT.SIDENAV_LINK.TOOLTIP",
306
+ "route": "recent-files"
307
+ },
308
+ {
309
+ "id": "app.navbar.favorites",
310
+ "order": 300,
311
+ "icon": "star",
312
+ "title": "APP.BROWSE.FAVORITES.SIDENAV_LINK.LABEL",
313
+ "description": "APP.BROWSE.FAVORITES.SIDENAV_LINK.TOOLTIP",
314
+ "route": "favorites"
315
+ },
316
+ {
317
+ "id": "app.navbar.trashcan",
318
+ "order": 400,
319
+ "icon": "delete",
320
+ "title": "APP.BROWSE.TRASHCAN.SIDENAV_LINK.LABEL",
321
+ "description": "APP.BROWSE.TRASHCAN.SIDENAV_LINK.TOOLTIP",
322
+ "route": "trashcan"
323
+ }
324
+ ]
325
+ }
326
+ ],
327
+ "toolbar": [
328
+ {
329
+ "id": "app.toolbar.share",
330
+ "type": "custom",
331
+ "order": 100,
332
+ "data": {
333
+ "iconButton": true
334
+ },
335
+ "component": "app.shared-link.toggleSharedLink",
336
+ "rules": {
337
+ "visible": "canToggleSharedLink"
338
+ }
339
+ },
340
+ {
341
+ "id": "app.toolbar.preview",
342
+ "type": "custom",
343
+ "order": 300,
344
+ "data": {
345
+ "title": "APP.ACTIONS.VIEW",
346
+ "iconButton": true
347
+ },
348
+ "component": "app.toolbar.viewNode",
349
+ "rules": {
350
+ "visible": "canViewFile"
351
+ }
352
+ },
353
+ {
354
+ "id": "app.toolbar.download",
355
+ "order": 200,
356
+ "title": "APP.ACTIONS.DOWNLOAD",
357
+ "icon": "get_app",
358
+ "actions": {
359
+ "click": "DOWNLOAD_NODES"
360
+ },
361
+ "rules": {
362
+ "visible": "app.selection.canDownload"
363
+ }
364
+ },
365
+ {
366
+ "id": "app.toolbar.purgeDeletedNodes",
367
+ "order": 400,
368
+ "title": "APP.ACTIONS.DELETE_PERMANENT",
369
+ "icon": "delete_forever",
370
+ "actions": {
371
+ "click": "PURGE_DELETED_NODES"
372
+ },
373
+ "rules": {
374
+ "visible": "isTrashcanItemSelected"
375
+ }
376
+ },
377
+ {
378
+ "id": "app.toolbar.restoreDeletedNodes",
379
+ "order": 500,
380
+ "title": "APP.ACTIONS.RESTORE",
381
+ "icon": "restore",
382
+ "actions": {
383
+ "click": "RESTORE_DELETED_NODES"
384
+ },
385
+ "rules": {
386
+ "visible": "isTrashcanItemSelected"
387
+ }
388
+ },
389
+ {
390
+ "id": "app.toolbar.joinLibrary",
391
+ "type": "custom",
392
+ "order": 600,
393
+ "component": "app.toolbar.toggleJoinLibrary",
394
+ "rules": {
395
+ "visible": "canToggleJoinLibrary"
396
+ }
397
+ },
398
+ {
399
+ "id": "app.toolbar.leaveLibrary",
400
+ "order": 650,
401
+ "title": "APP.ACTIONS.LEAVE",
402
+ "icon": "exit_to_app",
403
+ "actions": {
404
+ "click": "LEAVE_LIBRARY"
405
+ },
406
+ "rules": {
407
+ "visible": "canLeaveLibrary"
408
+ }
409
+ },
410
+ {
411
+ "id": "app.create.separator.2",
412
+ "type": "separator",
413
+ "order": 680
414
+ },
415
+ {
416
+ "id": "app.toolbar.info.infoDrawer",
417
+ "type": "custom",
418
+ "order": 700,
419
+ "component": "app.toolbar.toggleInfoDrawer",
420
+ "rules": {
421
+ "visible": "canShowInfoDrawer"
422
+ }
423
+ },
424
+ {
425
+ "id": "app.libraries.toolbar.infoDrawer",
426
+ "type": "custom",
427
+ "order": 800,
428
+ "component": "app.toolbar.toggleInfoDrawer",
429
+ "rules": {
430
+ "visible": "app.toolbar.favorite.canEditMetadata"
431
+ }
432
+ },
433
+ {
434
+ "id": "app.toolbar.more",
435
+ "type": "menu",
436
+ "order": 10000,
437
+ "icon": "more_vert",
438
+ "title": "APP.ACTIONS.MORE",
439
+ "children": [
440
+ {
441
+ "id": "app.toolbar.toggleLock",
442
+ "order": 100,
443
+ "type": "custom",
444
+ "component": "app.toolbar.toggleEditOffline",
445
+ "rules": {
446
+ "visible": "canToggleEditOffline"
447
+ }
448
+ },
449
+ {
450
+ "id": "app.toolbar.uploadNodeVersion",
451
+ "order": 200,
452
+ "title": "APP.ACTIONS.UPLOAD_VERSION",
453
+ "icon": "playlist_add",
454
+ "actions": {
455
+ "click": "UPLOAD_FILE_VERSION"
456
+ },
457
+ "rules": {
458
+ "visible": "app.selection.file.canUploadVersion"
459
+ }
460
+ },
461
+ {
462
+ "id": "app.toolbar.editFolder",
463
+ "order": 300,
464
+ "title": "APP.ACTIONS.EDIT",
465
+ "icon": "create",
466
+ "actions": {
467
+ "click": "EDIT_FOLDER"
468
+ },
469
+ "rules": {
470
+ "visible": "canEditFolder"
471
+ }
472
+ },
473
+ {
474
+ "id": "app.toolbar.favorite",
475
+ "comment": "workaround for Recent Files and Search API issue",
476
+ "type": "custom",
477
+ "order": 400,
478
+ "data": "['/favorites', '/favorite/libraries']",
479
+ "component": "app.toolbar.toggleFavorite",
480
+ "rules": {
481
+ "visible": "canToggleFavorite"
482
+ }
483
+ },
484
+ {
485
+ "id": "app.libraries.toolbar.toggleFavorite",
486
+ "type": "custom",
487
+ "order": 401,
488
+ "component": "app.toolbar.toggleFavoriteLibrary",
489
+ "rules": {
490
+ "visible": "app.selection.library"
491
+ }
492
+ },
493
+ {
494
+ "id": "app.toolbar.favorite.add",
495
+ "order": 402,
496
+ "title": "APP.ACTIONS.FAVORITE",
497
+ "icon": "star_border",
498
+ "actions": {
499
+ "click": "ADD_FAVORITE"
500
+ },
501
+ "rules": {
502
+ "visible": "app.toolbar.favorite.canAdd"
503
+ }
504
+ },
505
+ {
506
+ "id": "app.toolbar.favorite.remove",
507
+ "order": 403,
508
+ "title": "APP.ACTIONS.REMOVE_FAVORITE",
509
+ "icon": "star",
510
+ "actions": {
511
+ "click": "REMOVE_FAVORITE"
512
+ },
513
+ "rules": {
514
+ "visible": "app.toolbar.favorite.canRemove"
515
+ }
516
+ },
517
+ {
518
+ "id": "app.create.separator.1",
519
+ "type": "separator",
520
+ "order": 500
521
+ },
522
+ {
523
+ "id": "app.toolbar.move",
524
+ "order": 600,
525
+ "title": "APP.ACTIONS.MOVE",
526
+ "icon": "adf:move_file",
527
+ "actions": {
528
+ "click": "MOVE_NODES"
529
+ },
530
+ "rules": {
531
+ "visible": "app.selection.canDelete"
532
+ }
533
+ },
534
+ {
535
+ "id": "app.toolbar.copy",
536
+ "order": 700,
537
+ "title": "APP.ACTIONS.COPY",
538
+ "icon": "content_copy",
539
+ "actions": {
540
+ "click": "COPY_NODES"
541
+ },
542
+ "rules": {
543
+ "visible": "canCopyNode"
544
+ }
545
+ },
546
+ {
547
+ "id": "app.toolbar.delete",
548
+ "order": 800,
549
+ "title": "APP.ACTIONS.DELETE",
550
+ "icon": "delete",
551
+ "actions": {
552
+ "click": "DELETE_NODES"
553
+ },
554
+ "rules": {
555
+ "visible": "app.selection.canDelete"
556
+ }
557
+ },
558
+ {
559
+ "id": "app.create.separator.3",
560
+ "type": "separator",
561
+ "order": 900
562
+ },
563
+ {
564
+ "id": "app.toolbar.versions",
565
+ "order": 1100,
566
+ "title": "APP.ACTIONS.VERSIONS",
567
+ "icon": "history",
568
+ "actions": {
569
+ "click": "MANAGE_VERSIONS"
570
+ },
571
+ "rules": {
572
+ "visible": "canManageFileVersions"
573
+ }
574
+ },
575
+ {
576
+ "id": "app.toolbar.aspects",
577
+ "order": 1110,
578
+ "title": "APP.ACTIONS.CHANGE_ASPECT",
579
+ "icon": "toc",
580
+ "actions": {
581
+ "click": "ASPECT_LIST"
582
+ },
583
+ "rules": {
584
+ "visible": "canEditAspects"
585
+ }
586
+ },
587
+ {
588
+ "id": "app.toolbar.permissions",
589
+ "order": 1200,
590
+ "title": "APP.ACTIONS.PERMISSIONS",
591
+ "icon": "supervisor_account",
592
+ "actions": {
593
+ "click": "MANAGE_PERMISSIONS"
594
+ },
595
+ "rules": {
596
+ "visible": "canManagePermissions"
597
+ }
598
+ },
599
+ {
600
+ "id": "app.toolbar.rules",
601
+ "title": "ACA_FOLDER_RULES.ACTIONS.MANAGE_RULES",
602
+ "icon": "gavel",
603
+ "order": 1300,
604
+ "actions": {
605
+ "click": "MANAGE_RULES"
606
+ },
607
+ "rules": {
608
+ "visible": "rules.canManageFolderRules"
609
+ }
610
+ },
611
+ {
612
+ "id": "app.toolbar.deleteLibrary",
613
+ "order": 100,
614
+ "title": "APP.ACTIONS.DELETE",
615
+ "icon": "delete",
616
+ "actions": {
617
+ "click": "DELETE_LIBRARY"
618
+ },
619
+ "rules": {
620
+ "visible": "app.selection.library"
621
+ }
622
+ }
623
+ ]
624
+ }
625
+ ],
626
+ "contextMenu": [
627
+ {
628
+ "id": "app.context.menu.share",
629
+ "type": "custom",
630
+ "order": 100,
631
+ "data": {
632
+ "iconButton": false
633
+ },
634
+ "component": "app.shared-link.toggleSharedLink",
635
+ "rules": {
636
+ "visible": "canToggleSharedLink"
637
+ }
638
+ },
639
+ {
640
+ "id": "app.context.menu.download",
641
+ "order": 200,
642
+ "title": "APP.ACTIONS.DOWNLOAD",
643
+ "icon": "get_app",
644
+ "actions": {
645
+ "click": "DOWNLOAD_NODES"
646
+ },
647
+ "rules": {
648
+ "visible": "app.selection.canDownload"
649
+ }
650
+ },
651
+ {
652
+ "id": "app.context.menu.preview",
653
+ "type": "custom",
654
+ "order": 300,
655
+ "data": {
656
+ "title": "APP.ACTIONS.VIEW",
657
+ "menuButton": true
658
+ },
659
+ "component": "app.toolbar.viewNode",
660
+ "rules": {
661
+ "visible": "canViewFile"
662
+ }
663
+ },
664
+ {
665
+ "id": "app.create.separator.1",
666
+ "type": "separator",
667
+ "order": 400
668
+ },
669
+ {
670
+ "id": "app.context.toggleLock",
671
+ "order": 500,
672
+ "type": "custom",
673
+ "component": "app.toolbar.toggleEditOffline",
674
+ "rules": {
675
+ "visible": "canToggleEditOffline"
676
+ }
677
+ },
678
+ {
679
+ "id": "app.context.menu.editFolder",
680
+ "order": 600,
681
+ "title": "APP.ACTIONS.EDIT",
682
+ "icon": "create",
683
+ "actions": {
684
+ "click": "EDIT_FOLDER"
685
+ },
686
+ "rules": {
687
+ "visible": "canEditFolder"
688
+ }
689
+ },
690
+ {
691
+ "id": "app.context.menu.uploadNodeVersion",
692
+ "title": "APP.ACTIONS.UPLOAD_VERSION",
693
+ "order": 700,
694
+ "icon": "playlist_add",
695
+ "actions": {
696
+ "click": "UPLOAD_FILE_VERSION"
697
+ },
698
+ "rules": {
699
+ "visible": "app.selection.file.canUploadVersion"
700
+ }
701
+ },
702
+ {
703
+ "id": "app.context.menu.favorite.add",
704
+ "title": "APP.ACTIONS.FAVORITE",
705
+ "order": 800,
706
+ "icon": "star_border",
707
+ "actions": {
708
+ "click": "ADD_FAVORITE"
709
+ },
710
+ "rules": {
711
+ "visible": "app.toolbar.favorite.canAdd"
712
+ }
713
+ },
714
+ {
715
+ "id": "app.context.menu.favorite.remove",
716
+ "title": "APP.ACTIONS.REMOVE_FAVORITE",
717
+ "order": 801,
718
+ "icon": "star",
719
+ "actions": {
720
+ "click": "REMOVE_FAVORITE"
721
+ },
722
+ "rules": {
723
+ "visible": "app.toolbar.favorite.canRemove"
724
+ }
725
+ },
726
+ {
727
+ "id": "app.context.menu.favorite",
728
+ "comment": "workaround for Recent Files and Search API issue",
729
+ "type": "custom",
730
+ "order": 802,
731
+ "data": "['/favorites', '/favorite/libraries']",
732
+ "component": "app.toolbar.toggleFavorite",
733
+ "rules": {
734
+ "visible": "canToggleFavorite"
735
+ }
736
+ },
737
+ {
738
+ "id": "app.context.menu.libraries.toggleFavorite",
739
+ "type": "custom",
740
+ "order": 803,
741
+ "component": "app.toolbar.toggleFavoriteLibrary",
742
+ "rules": {
743
+ "visible": "app.selection.library"
744
+ }
745
+ },
746
+ {
747
+ "id": "app.create.separator.2",
748
+ "type": "separator",
749
+ "order": 900
750
+ },
751
+ {
752
+ "id": "app.context.menu.move",
753
+ "title": "APP.ACTIONS.MOVE",
754
+ "order": 1000,
755
+ "icon": "adf:move_file",
756
+ "actions": {
757
+ "click": "MOVE_NODES"
758
+ },
759
+ "rules": {
760
+ "visible": "app.selection.canDelete"
761
+ }
762
+ },
763
+ {
764
+ "id": "app.context.menu.copy",
765
+ "title": "APP.ACTIONS.COPY",
766
+ "order": 1100,
767
+ "icon": "content_copy",
768
+ "actions": {
769
+ "click": "COPY_NODES"
770
+ },
771
+ "rules": {
772
+ "visible": "canCopyNode"
773
+ }
774
+ },
775
+ {
776
+ "id": "app.context.menu.delete",
777
+ "title": "APP.ACTIONS.DELETE",
778
+ "order": 1200,
779
+ "icon": "delete",
780
+ "actions": {
781
+ "click": "DELETE_NODES"
782
+ },
783
+ "rules": {
784
+ "visible": "app.selection.canDelete"
785
+ }
786
+ },
787
+ {
788
+ "id": "app.create.separator.3",
789
+ "type": "separator",
790
+ "order": 1300
791
+ },
792
+ {
793
+ "id": "app.context.menu.versions",
794
+ "title": "APP.ACTIONS.VERSIONS",
795
+ "order": 1400,
796
+ "icon": "history",
797
+ "actions": {
798
+ "click": "MANAGE_VERSIONS"
799
+ },
800
+ "rules": {
801
+ "visible": "canManageFileVersions"
802
+ }
803
+ },
804
+ {
805
+ "id": "app.context.menu.aspects",
806
+ "order": 1410,
807
+ "title": "APP.ACTIONS.CHANGE_ASPECT",
808
+ "icon": "toc",
809
+ "actions": {
810
+ "click": "ASPECT_LIST"
811
+ },
812
+ "rules": {
813
+ "visible": "canEditAspects"
814
+ }
815
+ },
816
+ {
817
+ "id": "app.context.menu.permissions",
818
+ "title": "APP.ACTIONS.PERMISSIONS",
819
+ "icon": "supervisor_account",
820
+ "order": 1500,
821
+ "actions": {
822
+ "click": "MANAGE_PERMISSIONS"
823
+ },
824
+ "rules": {
825
+ "visible": "canManagePermissions"
826
+ }
827
+ },
828
+ {
829
+ "id": "app.context.menu.rules",
830
+ "title": "ACA_FOLDER_RULES.ACTIONS.MANAGE_RULES",
831
+ "icon": "gavel",
832
+ "order": 1600,
833
+ "actions": {
834
+ "click": "MANAGE_RULES"
835
+ },
836
+ "rules": {
837
+ "visible": "rules.canManageFolderRules"
838
+ }
839
+ },
840
+ {
841
+ "id": "app.context.menu.joinLibrary",
842
+ "type": "custom",
843
+ "order": 100,
844
+ "component": "app.menu.toggleJoinLibrary",
845
+ "rules": {
846
+ "visible": "canToggleJoinLibrary"
847
+ }
848
+ },
849
+ {
850
+ "id": "app.context.menu.leaveLibrary",
851
+ "order": 200,
852
+ "title": "APP.ACTIONS.LEAVE",
853
+ "icon": "exit_to_app",
854
+ "actions": {
855
+ "click": "LEAVE_LIBRARY"
856
+ },
857
+ "rules": {
858
+ "visible": "canLeaveLibrary"
859
+ }
860
+ },
861
+ {
862
+ "id": "app.context.menu.deleteLibrary",
863
+ "order": 300,
864
+ "title": "APP.ACTIONS.DELETE",
865
+ "icon": "delete",
866
+ "actions": {
867
+ "click": "DELETE_LIBRARY"
868
+ },
869
+ "rules": {
870
+ "visible": "app.selection.library"
871
+ }
872
+ },
873
+ {
874
+ "id": "app.context.menu.purgeDeletedNodes",
875
+ "order": 100,
876
+ "title": "APP.ACTIONS.DELETE_PERMANENT",
877
+ "icon": "delete_forever",
878
+ "actions": {
879
+ "click": "PURGE_DELETED_NODES"
880
+ },
881
+ "rules": {
882
+ "visible": "isTrashcanItemSelected"
883
+ }
884
+ },
885
+ {
886
+ "id": "app.context.menu.restoreDeletedNodes",
887
+ "order": 200,
888
+ "title": "APP.ACTIONS.RESTORE",
889
+ "icon": "restore",
890
+ "actions": {
891
+ "click": "RESTORE_DELETED_NODES"
892
+ },
893
+ "rules": {
894
+ "visible": "isTrashcanItemSelected"
895
+ }
896
+ }
897
+ ],
898
+ "viewer": {
899
+ "toolbarActions": [
900
+ {
901
+ "id": "app.viewer.fullscreen",
902
+ "order": 100,
903
+ "title": "APP.ACTIONS.FULLSCREEN",
904
+ "icon": "fullscreen",
905
+ "actions": {
906
+ "click": "FULLSCREEN_VIEWER"
907
+ },
908
+ "rules": {
909
+ "visible": "canViewFile"
910
+ }
911
+ },
912
+ {
913
+ "id": "app.viewer.separator.1",
914
+ "type": "separator",
915
+ "order": 180
916
+ },
917
+ {
918
+ "id": "app.viewer.share",
919
+ "type": "custom",
920
+ "order": 200,
921
+ "data": {
922
+ "iconButton": true
923
+ },
924
+ "component": "app.shared-link.toggleSharedLink",
925
+ "rules": {
926
+ "visible": "canToggleSharedLink"
927
+ }
928
+ },
929
+ {
930
+ "id": "app.viewer.download",
931
+ "order": 300,
932
+ "title": "APP.ACTIONS.DOWNLOAD",
933
+ "icon": "get_app",
934
+ "actions": {
935
+ "click": "DOWNLOAD_NODES"
936
+ },
937
+ "rules": {
938
+ "visible": "app.selection.canDownload"
939
+ }
940
+ },
941
+ {
942
+ "id": "app.viewer.print",
943
+ "order": 400,
944
+ "title": "APP.ACTIONS.PRINT",
945
+ "icon": "print",
946
+ "actions": {
947
+ "click": "PRINT_FILE"
948
+ },
949
+ "rules": {
950
+ "visible": "canViewFile"
951
+ }
952
+ },
953
+ {
954
+ "id": "app.viewer.separator.2",
955
+ "type": "separator",
956
+ "order": 450
957
+ },
958
+ {
959
+ "id": "app.viewer.infoDrawer",
960
+ "type": "custom",
961
+ "order": 500,
962
+ "component": "app.toolbar.toggleInfoDrawer",
963
+ "rules": {
964
+ "visible": "canShowInfoDrawer"
965
+ }
966
+ },
967
+ {
968
+ "id": "app.viewer.toolbar.more",
969
+ "type": "menu",
970
+ "order": 10000,
971
+ "icon": "more_vert",
972
+ "title": "APP.ACTIONS.MORE",
973
+ "children": [
974
+ {
975
+ "id": "app.viewer.toggleLock",
976
+ "order": 100,
977
+ "type": "custom",
978
+ "component": "app.toolbar.toggleEditOffline",
979
+ "rules": {
980
+ "visible": "canToggleEditOffline"
981
+ }
982
+ },
983
+ {
984
+ "id": "app.toolbar.uploadNodeVersion",
985
+ "order": 200,
986
+ "title": "APP.ACTIONS.UPLOAD_VERSION",
987
+ "icon": "playlist_add",
988
+ "actions": {
989
+ "click": "UPLOAD_FILE_VERSION"
990
+ },
991
+ "rules": {
992
+ "visible": "app.selection.file.canUploadVersion"
993
+ }
994
+ },
995
+ {
996
+ "id": "app.viewer.favorite.add",
997
+ "order": 300,
998
+ "title": "APP.ACTIONS.FAVORITE",
999
+ "icon": "star_border",
1000
+ "actions": {
1001
+ "click": "ADD_FAVORITE"
1002
+ },
1003
+ "rules": {
1004
+ "visible": "app.toolbar.favorite.canAdd"
1005
+ }
1006
+ },
1007
+ {
1008
+ "id": "app.viewer.favorite.remove",
1009
+ "order": 301,
1010
+ "title": "APP.ACTIONS.REMOVE_FAVORITE",
1011
+ "icon": "star",
1012
+ "actions": {
1013
+ "click": "REMOVE_FAVORITE"
1014
+ },
1015
+ "rules": {
1016
+ "visible": "app.toolbar.favorite.canRemove"
1017
+ }
1018
+ },
1019
+ {
1020
+ "id": "app.viewer.favorite",
1021
+ "comment": "workaround for Recent Files and Search API issue",
1022
+ "type": "custom",
1023
+ "order": 302,
1024
+ "component": "app.toolbar.toggleFavorite",
1025
+ "rules": {
1026
+ "visible": "canToggleFavorite"
1027
+ }
1028
+ },
1029
+ {
1030
+ "id": "app.viewer.more.separator.1",
1031
+ "type": "separator",
1032
+ "order": 400
1033
+ },
1034
+ {
1035
+ "id": "app.viewer.move",
1036
+ "order": 500,
1037
+ "title": "APP.ACTIONS.MOVE",
1038
+ "icon": "adf:move_file",
1039
+ "actions": {
1040
+ "click": "MOVE_NODES"
1041
+ },
1042
+ "rules": {
1043
+ "visible": "app.selection.canDelete"
1044
+ }
1045
+ },
1046
+ {
1047
+ "id": "app.viewer.copy",
1048
+ "order": 600,
1049
+ "title": "APP.ACTIONS.COPY",
1050
+ "icon": "content_copy",
1051
+ "actions": {
1052
+ "click": "COPY_NODES"
1053
+ },
1054
+ "rules": {
1055
+ "visible": "canCopyNode"
1056
+ }
1057
+ },
1058
+ {
1059
+ "id": "app.viewer.delete",
1060
+ "order": 700,
1061
+ "title": "APP.ACTIONS.DELETE",
1062
+ "icon": "delete",
1063
+ "actions": {
1064
+ "click": "DELETE_NODES"
1065
+ },
1066
+ "rules": {
1067
+ "visible": "app.selection.canDelete"
1068
+ }
1069
+ },
1070
+ {
1071
+ "id": "app.viewer.more.separator.3",
1072
+ "type": "separator",
1073
+ "order": 800
1074
+ },
1075
+ {
1076
+ "id": "app.viewer.versions",
1077
+ "order": 900,
1078
+ "title": "APP.ACTIONS.VERSIONS",
1079
+ "icon": "history",
1080
+ "actions": {
1081
+ "click": "MANAGE_VERSIONS"
1082
+ },
1083
+ "rules": {
1084
+ "visible": "canManageFileVersions"
1085
+ }
1086
+ },
1087
+ {
1088
+ "id": "app.viewer.aspects",
1089
+ "order": 910,
1090
+ "title": "APP.ACTIONS.CHANGE_ASPECT",
1091
+ "icon": "toc",
1092
+ "actions": {
1093
+ "click": "ASPECT_LIST"
1094
+ },
1095
+ "rules": {
1096
+ "visible": "canEditAspects"
1097
+ }
1098
+ },
1099
+ {
1100
+ "id": "app.viewer.permissions",
1101
+ "order": 1000,
1102
+ "title": "APP.ACTIONS.PERMISSIONS",
1103
+ "icon": "supervisor_account",
1104
+ "actions": {
1105
+ "click": "MANAGE_PERMISSIONS"
1106
+ },
1107
+ "rules": {
1108
+ "visible": "canManagePermissions"
1109
+ }
1110
+ }
1111
+ ]
1112
+ }
1113
+ ],
1114
+ "shared": {
1115
+ "toolbarActions": [
1116
+ {
1117
+ "id": "app.viewer.shared.fullscreen",
1118
+ "order": 100,
1119
+ "title": "APP.ACTIONS.FULLSCREEN",
1120
+ "icon": "fullscreen",
1121
+ "actions": {
1122
+ "click": "FULLSCREEN_VIEWER"
1123
+ }
1124
+ },
1125
+ {
1126
+ "id": "app.viewer.shared.download",
1127
+ "order": 200,
1128
+ "title": "APP.ACTIONS.DOWNLOAD",
1129
+ "icon": "get_app",
1130
+ "actions": {
1131
+ "click": "DOWNLOAD_NODES"
1132
+ }
1133
+ }
1134
+ ]
1135
+ },
1136
+ "content": [
1137
+ {
1138
+ "id": "app.viewer.pdf",
1139
+ "disabled": true,
1140
+ "fileExtension": "pdf",
1141
+ "component": "app.components.tabs.metadata"
1142
+ },
1143
+ {
1144
+ "id": "app.viewer.docx",
1145
+ "disabled": true,
1146
+ "fileExtension": "docx",
1147
+ "component": "app.components.tabs.comments"
1148
+ }
1149
+ ]
1150
+ },
1151
+ "sidebar": {
1152
+ "toolbar": [
1153
+ {
1154
+ "id": "app.sidebar.preview",
1155
+ "order": 100,
1156
+ "title": "Preview File",
1157
+ "icon": "visibility",
1158
+ "actions": {
1159
+ "click": "SHOW_INFO_DRAWER_PREVIEW"
1160
+ },
1161
+ "rules": {
1162
+ "visible": "canInfoPreview"
1163
+ }
1164
+ },
1165
+ {
1166
+ "id": "app.sidebar.infoDetails",
1167
+ "order": 150,
1168
+ "title": "Info Details",
1169
+ "icon": "info_outline",
1170
+ "color": "accent",
1171
+ "rules": {
1172
+ "visible": "showInfoSelectionButton"
1173
+ }
1174
+ },
1175
+ {
1176
+ "id": "app.sidebar.expand",
1177
+ "order": 200,
1178
+ "title": "APP.INFO_DRAWER.TABS.EXPAND",
1179
+ "icon": "chevron_left",
1180
+ "actions": {
1181
+ "click": "EXPAND_INFO_DRAWER"
1182
+ },
1183
+ "rules": {
1184
+ "visible": "app.navigation.isNotLibraries"
1185
+ }
1186
+ }
1187
+ ],
1188
+ "tabs": [
1189
+ {
1190
+ "id": "app.sidebar.properties",
1191
+ "order": 100,
1192
+ "title": "APP.INFO_DRAWER.TABS.PROPERTIES",
1193
+ "component": "app.components.tabs.metadata",
1194
+ "rules": {
1195
+ "visible": "app.navigation.isNotLibraries"
1196
+ }
1197
+ },
1198
+ {
1199
+ "id": "app.sidebar.comments",
1200
+ "order": 200,
1201
+ "title": "APP.INFO_DRAWER.TABS.COMMENTS",
1202
+ "component": "app.components.tabs.comments",
1203
+ "rules": {
1204
+ "visible": "app.navigation.isNotLibraries"
1205
+ }
1206
+ },
1207
+ {
1208
+ "id": "app.sidebar.versions",
1209
+ "order": 300,
1210
+ "disabled": true,
1211
+ "title": "APP.INFO_DRAWER.TABS.VERSIONS",
1212
+ "component": "app.components.tabs.versions",
1213
+ "rules": {
1214
+ "visible": "app.navigation.isNotLibraries"
1215
+ }
1216
+ },
1217
+ {
1218
+ "id": "app.sidebar.library.properties",
1219
+ "order": 500,
1220
+ "title": "APP.INFO_DRAWER.TABS.PROPERTIES",
1221
+ "component": "app.components.tabs.library.metadata",
1222
+ "rules": {
1223
+ "visible": "app.toolbar.favorite.canEditMetadata"
1224
+ }
1225
+ }
1226
+ ]
1227
+ },
1228
+ "search": [
1229
+ {
1230
+ "id": "app.search.default",
1231
+ "order": 100,
1232
+ "name": "APP.BROWSE.SEARCH.DEFAULT_SEARCH",
1233
+ "default": true,
1234
+ "filterWithContains": true,
1235
+ "aca:fields": ["cm:name", "cm:title", "cm:description", "TEXT", "TAG"],
1236
+ "include": ["path", "allowableOperations", "properties"],
1237
+ "sorting": {
1238
+ "options": [
1239
+ {
1240
+ "key": "score",
1241
+ "label": "SEARCH.SORT.RELEVANCE",
1242
+ "type": "SCORE",
1243
+ "field": "score",
1244
+ "ascending": false
1245
+ },
1246
+ {
1247
+ "key": "name",
1248
+ "label": "SEARCH.SORT.FILENAME",
1249
+ "type": "FIELD",
1250
+ "field": "cm:name",
1251
+ "ascending": true
1252
+ },
1253
+ {
1254
+ "key": "title",
1255
+ "label": "SEARCH.SORT.TITLE",
1256
+ "type": "FIELD",
1257
+ "field": "cm:title",
1258
+ "ascending": true
1259
+ },
1260
+ {
1261
+ "key": "modified",
1262
+ "label": "SEARCH.SORT.MODIFIED_DATE",
1263
+ "type": "FIELD",
1264
+ "field": "cm:modified",
1265
+ "ascending": true
1266
+ },
1267
+ {
1268
+ "key": "modifier",
1269
+ "label": "SEARCH.SORT.MODIFIER",
1270
+ "type": "FIELD",
1271
+ "field": "cm:modifier",
1272
+ "ascending": true
1273
+ },
1274
+ {
1275
+ "key": "created",
1276
+ "label": "SEARCH.SORT.CREATE_DATE",
1277
+ "type": "FIELD",
1278
+ "field": "cm:created",
1279
+ "ascending": true
1280
+ },
1281
+ {
1282
+ "key": "content.sizeInBytes",
1283
+ "label": "SEARCH.SORT.SIZE",
1284
+ "type": "FIELD",
1285
+ "field": "content.size",
1286
+ "ascending": true
1287
+ },
1288
+ {
1289
+ "key": "content.mimetype",
1290
+ "label": "SEARCH.SORT.TYPE",
1291
+ "type": "FIELD",
1292
+ "field": "content.mimetype",
1293
+ "ascending": true
1294
+ }
1295
+ ],
1296
+ "defaults": [
1297
+ {
1298
+ "key": "score",
1299
+ "type": "SCORE",
1300
+ "field": "score",
1301
+ "ascending": false
1302
+ }
1303
+ ]
1304
+ },
1305
+ "aca:triggeredOnChange": false,
1306
+ "resetButton": true,
1307
+ "filterQueries": [
1308
+ { "query": "+TYPE:'cm:folder' OR +TYPE:'cm:content'" },
1309
+ {
1310
+ "query": "-TYPE:'cm:thumbnail' AND -TYPE:'cm:failedThumbnail' AND -TYPE:'cm:rating'"
1311
+ },
1312
+ { "query": "-cm:creator:System AND -QNAME:comment" },
1313
+ {
1314
+ "query": "-TYPE:'st:site' AND -ASPECT:'st:siteContainer' AND -ASPECT:'sys:hidden'"
1315
+ },
1316
+ {
1317
+ "query": "-TYPE:'dl:dataList' AND -TYPE:'dl:todoList' AND -TYPE:'dl:issue'"
1318
+ },
1319
+ { "query": "-TYPE:'fm:topic' AND -TYPE:'fm:post'" },
1320
+ { "query": "-TYPE:'lnk:link'" },
1321
+ { "query": "-PNAME:'0/wiki'" }
1322
+ ],
1323
+ "facetFields": {
1324
+ "expanded": true,
1325
+ "fields": [
1326
+ {
1327
+ "mincount": 1,
1328
+ "field": "content.mimetype",
1329
+ "label": "SEARCH.FACET_FIELDS.FILE_TYPE",
1330
+ "settings": {
1331
+ "allowUpdateOnChange": false,
1332
+ "hideDefaultAction": true
1333
+ }
1334
+ },
1335
+ {
1336
+ "mincount": 1,
1337
+ "field": "creator",
1338
+ "label": "SEARCH.FACET_FIELDS.CREATOR",
1339
+ "settings": {
1340
+ "allowUpdateOnChange": false,
1341
+ "hideDefaultAction": true
1342
+ }
1343
+ },
1344
+ {
1345
+ "mincount": 1,
1346
+ "field": "modifier",
1347
+ "label": "SEARCH.FACET_FIELDS.MODIFIER",
1348
+ "settings": {
1349
+ "allowUpdateOnChange": false,
1350
+ "hideDefaultAction": true
1351
+ }
1352
+ },
1353
+ {
1354
+ "mincount": 1,
1355
+ "field": "SITE",
1356
+ "label": "SEARCH.FACET_FIELDS.LOCATION",
1357
+ "settings": {
1358
+ "allowUpdateOnChange": false,
1359
+ "hideDefaultAction": true
1360
+ }
1361
+ }
1362
+ ]
1363
+ },
1364
+ "facetQueries": {
1365
+ "label": "SEARCH.CATEGORIES.MODIFIED_DATE",
1366
+ "expanded": true,
1367
+ "queries": [
1368
+ {
1369
+ "label": "SEARCH.FACET_QUERIES.TODAY",
1370
+ "query": "cm:modified:[TODAY to TODAY]"
1371
+ },
1372
+ {
1373
+ "label": "SEARCH.FACET_QUERIES.THIS_WEEK",
1374
+ "query": "cm:modified:[NOW/DAY-7DAYS TO NOW/DAY+1DAY]"
1375
+ },
1376
+ {
1377
+ "label": "SEARCH.FACET_QUERIES.THIS_MONTH",
1378
+ "query": "cm:modified:[NOW/DAY-1MONTH TO NOW/DAY+1DAY]"
1379
+ },
1380
+ {
1381
+ "label": "SEARCH.FACET_QUERIES.LAST_6_MONTHS",
1382
+ "query": "cm:modified:[NOW/DAY-6MONTHS TO NOW/DAY+1DAY]"
1383
+ },
1384
+ {
1385
+ "label": "SEARCH.FACET_QUERIES.THIS_YEAR",
1386
+ "query": "cm:modified:[NOW/DAY-1YEAR TO NOW/DAY+1DAY]"
1387
+ }
1388
+ ],
1389
+ "settings": {
1390
+ "allowUpdateOnChange": false,
1391
+ "hideDefaultAction": true
1392
+ }
1393
+ },
1394
+ "categories": [
1395
+ {
1396
+ "id": "size",
1397
+ "name": "SEARCH.CATEGORIES.SIZE",
1398
+ "enabled": true,
1399
+ "component": {
1400
+ "selector": "check-list",
1401
+ "settings": {
1402
+ "allowUpdateOnChange": false,
1403
+ "hideDefaultAction": true,
1404
+ "options": [
1405
+ {
1406
+ "name": "SEARCH.CATEGORIES.SIZE_OPTIONS.SMALL",
1407
+ "value": "content.size:[0 TO 1048576>"
1408
+ },
1409
+ {
1410
+ "name": "SEARCH.CATEGORIES.SIZE_OPTIONS.MEDIUM",
1411
+ "value": "content.size:[1048576 TO 52428800]"
1412
+ },
1413
+ {
1414
+ "name": "SEARCH.CATEGORIES.SIZE_OPTIONS.LARGE",
1415
+ "value": "content.size:<52428800 TO 524288000]"
1416
+ },
1417
+ {
1418
+ "name": "SEARCH.CATEGORIES.SIZE_OPTIONS.HUGE",
1419
+ "value": "content.size:<524288000 TO MAX]"
1420
+ }
1421
+ ]
1422
+ }
1423
+ }
1424
+ },
1425
+ {
1426
+ "id": "createdDateRange",
1427
+ "name": "SEARCH.CATEGORIES.CREATED_DATE",
1428
+ "enabled": true,
1429
+ "component": {
1430
+ "selector": "date-range",
1431
+ "settings": {
1432
+ "allowUpdateOnChange": false,
1433
+ "hideDefaultAction": true,
1434
+ "field": "cm:created",
1435
+ "dateFormat": "DD-MMM-YY",
1436
+ "maxDate": "today"
1437
+ }
1438
+ }
1439
+ }
1440
+ ]
1441
+ },
1442
+ {
1443
+ "id": "app.search.dublin-core",
1444
+ "order": 200,
1445
+ "name": "APP.BROWSE.SEARCH.DUBLIN_CORE",
1446
+ "default": false,
1447
+ "filterWithContains": true,
1448
+ "aca:fields": ["cm:name", "cm:title", "cm:description", "cm:identifier", "cm:contributor", "cm:coverage", "cm:dcsource", "cm:publisher", "cm:rights", "cm:subject", "cm:type", "TEXT", "TAG"],
1449
+ "include": ["path", "allowableOperations", "properties"],
1450
+ "sorting": {
1451
+ "options": [
1452
+ {
1453
+ "key": "score",
1454
+ "label": "SEARCH.SORT.RELEVANCE",
1455
+ "type": "SCORE",
1456
+ "field": "score",
1457
+ "ascending": false
1458
+ },
1459
+ {
1460
+ "key": "name",
1461
+ "label": "SEARCH.SORT.FILENAME",
1462
+ "type": "FIELD",
1463
+ "field": "cm:name",
1464
+ "ascending": true
1465
+ },
1466
+ {
1467
+ "key": "title",
1468
+ "label": "SEARCH.SORT.TITLE",
1469
+ "type": "FIELD",
1470
+ "field": "cm:title",
1471
+ "ascending": true
1472
+ },
1473
+ {
1474
+ "key": "created",
1475
+ "label": "SEARCH.SORT.CREATE_DATE",
1476
+ "type": "FIELD",
1477
+ "field": "cm:created",
1478
+ "ascending": true
1479
+ }
1480
+ ],
1481
+ "defaults": [
1482
+ {
1483
+ "key": "score",
1484
+ "type": "SCORE",
1485
+ "field": "score",
1486
+ "ascending": false
1487
+ }
1488
+ ]
1489
+ },
1490
+ "aca:triggeredOnChange": false,
1491
+ "resetButton": true,
1492
+ "filterQueries": [
1493
+ { "query": "+TYPE:'cm:folder' OR +TYPE:'cm:content' AND +ASPECT:'cm:dublincore'" },
1494
+ {
1495
+ "query": "-TYPE:'cm:thumbnail' AND -TYPE:'cm:failedThumbnail' AND -TYPE:'cm:rating'"
1496
+ },
1497
+ { "query": "-cm:creator:System AND -QNAME:comment" },
1498
+ {
1499
+ "query": "-TYPE:'st:site' AND -ASPECT:'st:siteContainer' AND -ASPECT:'sys:hidden'"
1500
+ },
1501
+ {
1502
+ "query": "-TYPE:'dl:dataList' AND -TYPE:'dl:todoList' AND -TYPE:'dl:issue'"
1503
+ },
1504
+ { "query": "-TYPE:'fm:topic' AND -TYPE:'fm:post'" },
1505
+ { "query": "-TYPE:'lnk:link'" },
1506
+ { "query": "-PNAME:'0/wiki'" }
1507
+ ],
1508
+ "facetFields": {
1509
+ "expanded": true,
1510
+ "fields": [
1511
+ {
1512
+ "mincount": 1,
1513
+ "field": "creator",
1514
+ "label": "SEARCH.FACET_FIELDS.CREATOR",
1515
+ "settings": {
1516
+ "allowUpdateOnChange": false,
1517
+ "hideDefaultAction": true
1518
+ }
1519
+ },
1520
+ {
1521
+ "mincount": 1,
1522
+ "field": "cm:type",
1523
+ "label": "Type",
1524
+ "settings": {
1525
+ "allowUpdateOnChange": false,
1526
+ "hideDefaultAction": true
1527
+ }
1528
+ },
1529
+ {
1530
+ "mincount": 1,
1531
+ "field": "cm:publisher",
1532
+ "label": "Publisher",
1533
+ "settings": {
1534
+ "allowUpdateOnChange": false,
1535
+ "hideDefaultAction": true
1536
+ }
1537
+ },
1538
+ {
1539
+ "mincount": 1,
1540
+ "field": "cm:contributor",
1541
+ "label": "Contributor",
1542
+ "settings": {
1543
+ "allowUpdateOnChange": false,
1544
+ "hideDefaultAction": true
1545
+ }
1546
+ }
1547
+
1548
+ ]
1549
+ },
1550
+ "categories": [
1551
+ {
1552
+ "id": "createdDateRange",
1553
+ "name": "SEARCH.CATEGORIES.CREATED_DATE",
1554
+ "enabled": true,
1555
+ "component": {
1556
+ "selector": "date-range",
1557
+ "settings": {
1558
+ "allowUpdateOnChange": false,
1559
+ "hideDefaultAction": true,
1560
+ "field": "cm:created",
1561
+ "dateFormat": "DD-MMM-YY",
1562
+ "maxDate": "today"
1563
+ }
1564
+ }
1565
+ },
1566
+ {
1567
+ "id": "dublinSubject",
1568
+ "name": "Dublin Subject",
1569
+ "enabled": true,
1570
+ "expanded": true,
1571
+ "component": {
1572
+ "selector": "text",
1573
+ "settings": {
1574
+ "allowUpdateOnChange": false,
1575
+ "hideDefaultAction": true,
1576
+ "pattern": "cm:subject:'(.*?)'",
1577
+ "field": "cm:subject",
1578
+ "placeholder": "Enter the Subject"
1579
+ }
1580
+ }
1581
+ }
1582
+ ]
1583
+ },
1584
+ {
1585
+ "id": "app.search.effectivity",
1586
+ "order": 300,
1587
+ "name": "APP.BROWSE.SEARCH.EFFECTIVITY",
1588
+ "default": false,
1589
+ "filterWithContains": true,
1590
+ "aca:fields": ["cm:name", "cm:title", "cm:description", "cm:from", "cm:contributor", "cm:to", "TEXT", "TAG"],
1591
+ "include": ["path", "allowableOperations", "properties"],
1592
+ "sorting": {
1593
+ "options": [
1594
+ {
1595
+ "key": "score",
1596
+ "label": "SEARCH.SORT.RELEVANCE",
1597
+ "type": "SCORE",
1598
+ "field": "score",
1599
+ "ascending": false
1600
+ },
1601
+ {
1602
+ "key": "name",
1603
+ "label": "SEARCH.SORT.FILENAME",
1604
+ "type": "FIELD",
1605
+ "field": "cm:name",
1606
+ "ascending": true
1607
+ },
1608
+ {
1609
+ "key": "title",
1610
+ "label": "SEARCH.SORT.TITLE",
1611
+ "type": "FIELD",
1612
+ "field": "cm:title",
1613
+ "ascending": true
1614
+ },
1615
+ {
1616
+ "key": "created",
1617
+ "label": "SEARCH.SORT.CREATE_DATE",
1618
+ "type": "FIELD",
1619
+ "field": "cm:created",
1620
+ "ascending": true
1621
+ }
1622
+ ],
1623
+ "defaults": [
1624
+ {
1625
+ "key": "score",
1626
+ "type": "SCORE",
1627
+ "field": "score",
1628
+ "ascending": false
1629
+ }
1630
+ ]
1631
+ },
1632
+ "aca:triggeredOnChange": false,
1633
+ "resetButton": true,
1634
+ "filterQueries": [
1635
+ { "query": "+TYPE:'cm:folder' OR +TYPE:'cm:content' AND +ASPECT:'cm:effectivity'" },
1636
+ {
1637
+ "query": "-TYPE:'cm:thumbnail' AND -TYPE:'cm:failedThumbnail' AND -TYPE:'cm:rating'"
1638
+ },
1639
+ { "query": "-cm:creator:System AND -QNAME:comment" },
1640
+ {
1641
+ "query": "-TYPE:'st:site' AND -ASPECT:'st:siteContainer' AND -ASPECT:'sys:hidden'"
1642
+ },
1643
+ {
1644
+ "query": "-TYPE:'dl:dataList' AND -TYPE:'dl:todoList' AND -TYPE:'dl:issue'"
1645
+ },
1646
+ { "query": "-TYPE:'fm:topic' AND -TYPE:'fm:post'" },
1647
+ { "query": "-TYPE:'lnk:link'" },
1648
+ { "query": "-PNAME:'0/wiki'" }
1649
+ ],
1650
+ "facetFields": {
1651
+ "expanded": true,
1652
+ "fields": [
1653
+ {
1654
+ "mincount": 1,
1655
+ "field": "creator",
1656
+ "label": "SEARCH.FACET_FIELDS.CREATOR",
1657
+ "settings": {
1658
+ "allowUpdateOnChange": false,
1659
+ "hideDefaultAction": true
1660
+ }
1661
+ },
1662
+ {
1663
+ "mincount": 1,
1664
+ "field": "modifier",
1665
+ "label": "SEARCH.FACET_FIELDS.MODIFIER",
1666
+ "settings": {
1667
+ "allowUpdateOnChange": false,
1668
+ "hideDefaultAction": true
1669
+ }
1670
+ }
1671
+
1672
+ ]
1673
+ },
1674
+ "facetQueries": {
1675
+ "label": "SEARCH.CATEGORIES.MODIFIED_DATE",
1676
+ "expanded": true,
1677
+ "queries": [
1678
+ {
1679
+ "label": "SEARCH.FACET_QUERIES.TODAY",
1680
+ "query": "cm:modified:[TODAY to TODAY]"
1681
+ },
1682
+ {
1683
+ "label": "SEARCH.FACET_QUERIES.THIS_WEEK",
1684
+ "query": "cm:modified:[NOW/DAY-7DAYS TO NOW/DAY+1DAY]"
1685
+ },
1686
+ {
1687
+ "label": "SEARCH.FACET_QUERIES.THIS_MONTH",
1688
+ "query": "cm:modified:[NOW/DAY-1MONTH TO NOW/DAY+1DAY]"
1689
+ },
1690
+ {
1691
+ "label": "SEARCH.FACET_QUERIES.LAST_6_MONTHS",
1692
+ "query": "cm:modified:[NOW/DAY-6MONTHS TO NOW/DAY+1DAY]"
1693
+ },
1694
+ {
1695
+ "label": "SEARCH.FACET_QUERIES.THIS_YEAR",
1696
+ "query": "cm:modified:[NOW/DAY-1YEAR TO NOW/DAY+1DAY]"
1697
+ }
1698
+ ],
1699
+ "settings": {
1700
+ "allowUpdateOnChange": false,
1701
+ "hideDefaultAction": true
1702
+ }
1703
+ },
1704
+ "categories": [
1705
+ {
1706
+ "id": "createdDateRange",
1707
+ "name": "SEARCH.CATEGORIES.CREATED_DATE",
1708
+ "enabled": true,
1709
+ "component": {
1710
+ "selector": "date-range",
1711
+ "settings": {
1712
+ "allowUpdateOnChange": false,
1713
+ "hideDefaultAction": true,
1714
+ "field": "cm:created",
1715
+ "dateFormat": "DD-MMM-YY",
1716
+ "maxDate": "today"
1717
+ }
1718
+ }
1719
+ },
1720
+ {
1721
+ "id": "effectivnessFrom",
1722
+ "name": "SEARCH.CATEGORIES.EFFECTIVITY_FROM",
1723
+ "enabled": true,
1724
+ "component": {
1725
+ "selector": "date-range",
1726
+ "settings": {
1727
+ "allowUpdateOnChange": false,
1728
+ "hideDefaultAction": true,
1729
+ "field": "cm:from",
1730
+ "dateFormat": "DD-MMM-YY"
1731
+ }
1732
+ }
1733
+ },
1734
+ {
1735
+ "id": "createdDateRange",
1736
+ "name": "SEARCH.CATEGORIES.EFFECTIVITY_TO",
1737
+ "enabled": true,
1738
+ "component": {
1739
+ "selector": "date-range",
1740
+ "settings": {
1741
+ "allowUpdateOnChange": false,
1742
+ "hideDefaultAction": true,
1743
+ "field": "cm:to",
1744
+ "dateFormat": "DD-MMM-YY"
1745
+ }
1746
+ }
1747
+ }
1748
+ ]
1749
+ }
1750
+
1751
+ ],
1752
+ "content-metadata-presets": [
1753
+ {
1754
+ "id": "app.content.metadata.custom",
1755
+ "custom": [
1756
+ {
1757
+ "id": "app.content.metadata.customSetting",
1758
+ "includeAll": true,
1759
+ "exclude": [
1760
+ "rn:renditioned",
1761
+ "cm:versionable",
1762
+ "cm:auditable",
1763
+ "cm:thumbnailModification",
1764
+ "cm:content",
1765
+ "cm:author",
1766
+ "cm:titled",
1767
+ "cm:generalclassifiable",
1768
+ "cm:taggable",
1769
+ "dp:restrictable",
1770
+ "fm:commentsRollup",
1771
+ "qshare:shared",
1772
+ "exif:exif",
1773
+ "iptcxmp:iptcxmpAspect",
1774
+ "cm:effectivity",
1775
+ "cm:likesRatingSchemeRollups",
1776
+ "cm:lockable",
1777
+ "cm:ownable"
1778
+ ]
1779
+ },
1780
+ {
1781
+ "id": "app.content.metadata.customGroup",
1782
+ "title": "APP.CONTENT_METADATA.EXIF_GROUP_TITLE",
1783
+ "items": [
1784
+ {
1785
+ "id": "app.content.metadata.exifAspect",
1786
+ "aspect": "exif:exif",
1787
+ "properties": [
1788
+ "exif:pixelXDimension",
1789
+ "exif:pixelYDimension",
1790
+ "exif:dateTimeOriginal",
1791
+ "exif:exposureTime",
1792
+ "exif:fNumber",
1793
+ "exif:flash",
1794
+ "exif:focalLength",
1795
+ "exif:isoSpeedRatings",
1796
+ "exif:orientation",
1797
+ "exif:manufacturer",
1798
+ "exif:model",
1799
+ "exif:software"
1800
+ ]
1801
+ }
1802
+ ]
1803
+ },
1804
+ {
1805
+ "id": "app.content.metadata.iptcCoreContactInfoGroup",
1806
+ "title": "APP.CONTENT_METADATA.GROUP_IPTC_CORE_CONTACT_INFO",
1807
+ "items": [
1808
+ {
1809
+ "aspect": "iptcxmp:iptcxmpAspect",
1810
+ "properties": [
1811
+ "dc:creator",
1812
+ "photoshop:AuthorsPosition",
1813
+ "Iptc4xmpCore:CiAdrExtadr",
1814
+ "Iptc4xmpCore:CiAdrCity",
1815
+ "Iptc4xmpCore:CiAdrRegion",
1816
+ "Iptc4xmpCore:CiAdrPcode",
1817
+ "Iptc4xmpCore:CiAdrCtry",
1818
+ "Iptc4xmpCore:CiEmailWork",
1819
+ "Iptc4xmpCore:CiTelWork",
1820
+ "Iptc4xmpCore:CiUrlWork"
1821
+ ]
1822
+ }
1823
+ ]
1824
+ },
1825
+ {
1826
+ "id": "app.content.metadata.iptcCoreImageInfoGroup",
1827
+ "title": "APP.CONTENT_METADATA.GROUP_IPTC_CORE_IMAGE_INFO",
1828
+ "items": [
1829
+ {
1830
+ "aspect": "iptcxmp:iptcxmpAspect",
1831
+ "properties": [
1832
+ "photoshop:DateCreated",
1833
+ "Iptc4xmpCore:IntellectualGenre",
1834
+ "Iptc4xmpCore:Scene",
1835
+
1836
+ "Iptc4xmpCore:Location",
1837
+ "photoshop:City",
1838
+ "photoshop:State",
1839
+ "photoshop:Country"
1840
+ ]
1841
+ }
1842
+ ]
1843
+ },
1844
+ {
1845
+ "id": "app.content.metadata.iptcCoreContentInfoGroup",
1846
+ "title": "APP.CONTENT_METADATA.GROUP_IPTC_CORE_CONTENT_INFO",
1847
+ "items": [
1848
+ {
1849
+ "aspect": "iptcxmp:iptcxmpAspect",
1850
+ "properties": [
1851
+ "photoshop:Headline",
1852
+ "dc:subject",
1853
+ "dc:description",
1854
+ "Iptc4xmpCore:SubjectCode",
1855
+ "photoshop:CaptionWriter"
1856
+ ]
1857
+ }
1858
+ ]
1859
+ },
1860
+ {
1861
+ "id": "app.content.metadata.iptcCoreStatusInfoGroup",
1862
+ "title": "APP.CONTENT_METADATA.GROUP_IPTC_CORE_STATUS_INFO",
1863
+ "items": [
1864
+ {
1865
+ "aspect": "iptcxmp:iptcxmpAspect",
1866
+ "properties": [
1867
+ "dc:title",
1868
+ "photoshop:TransmissionReference",
1869
+ "photoshop:Instructions",
1870
+ "photoshop:Credit",
1871
+ "photoshop:Source",
1872
+ "dc:rights",
1873
+ "xmpRights:UsageTerms"
1874
+ ]
1875
+ }
1876
+ ]
1877
+ },
1878
+ {
1879
+ "id": "app.content.metadata.iptcExtDescriptionGroup",
1880
+ "title": "APP.CONTENT_METADATA.GROUP_IPTC_EXT_DESCRIPTION",
1881
+ "items": [
1882
+ {
1883
+ "aspect": "iptcxmp:iptcxmpAspect",
1884
+ "properties": [
1885
+ "Iptc4xmpExt:DigImageGUID",
1886
+ "Iptc4xmpExt:PersonInImage",
1887
+
1888
+ "Iptc4xmpExt:LocationCreatedSublocation",
1889
+ "Iptc4xmpExt:LocationCreatedCity",
1890
+ "Iptc4xmpExt:LocationCreatedProvinceState",
1891
+ "Iptc4xmpExt:LocationCreatedCountryName",
1892
+ "Iptc4xmpExt:LocationCreatedCountryCode",
1893
+ "Iptc4xmpExt:LocationCreatedWorldRegion",
1894
+
1895
+ "Iptc4xmpExt:LocationShownSublocation",
1896
+ "Iptc4xmpExt:LocationShownCity",
1897
+ "Iptc4xmpExt:LocationShownProvinceState",
1898
+ "Iptc4xmpExt:LocationShownCountryCode",
1899
+ "Iptc4xmpExt:LocationShownCountryName",
1900
+ "Iptc4xmpExt:LocationShownWorldRegion",
1901
+
1902
+ "Iptc4xmpExt:OrganisationInImageName",
1903
+ "Iptc4xmpExt:OrganisationInImageCode",
1904
+
1905
+ "Iptc4xmpExt:Event"
1906
+ ]
1907
+ }
1908
+ ]
1909
+ },
1910
+ {
1911
+ "id": "app.content.metadata.iptcExtAODetailGroup",
1912
+ "title": "APP.CONTENT_METADATA.GROUP_IPTC_EXT_AO_DETAIL",
1913
+ "items": [
1914
+ {
1915
+ "aspect": "iptcxmp:iptcxmpAspect",
1916
+ "properties": [
1917
+ "Iptc4xmpExt:AOTitle",
1918
+ "Iptc4xmpExt:AODateCreated",
1919
+ "Iptc4xmpExt:AOCreator",
1920
+ "Iptc4xmpExt:AOSource",
1921
+ "Iptc4xmpExt:AOSourceInvNo",
1922
+ "Iptc4xmpExt:AOCopyrightNotice"
1923
+ ]
1924
+ }
1925
+ ]
1926
+ },
1927
+ {
1928
+ "id": "app.content.metadata.iptcExtModelInfoGroup",
1929
+ "title": "APP.CONTENT_METADATA.GROUP_IPTC_EXT_MODEL_INFO",
1930
+ "items": [
1931
+ {
1932
+ "aspect": "iptcxmp:iptcxmpAspect",
1933
+ "properties": [
1934
+ "Iptc4xmpExt:AddlModelInfo",
1935
+ "Iptc4xmpExt:ModelAge",
1936
+ "plus:MinorModelAgeDisclosure",
1937
+ "plus:ModelReleaseStatus",
1938
+ "plus:ModelReleaseID"
1939
+ ]
1940
+ }
1941
+ ]
1942
+ },
1943
+ {
1944
+ "id": "app.content.metadata.iptcExtAdminInfoGroup",
1945
+ "title": "APP.CONTENT_METADATA.GROUP_IPTC_EXT_ADMIN_INFO",
1946
+ "items": [
1947
+ {
1948
+ "aspect": "iptcxmp:iptcxmpAspect",
1949
+ "properties": [
1950
+ "plus:ImageSupplierName",
1951
+ "plus:ImageSupplierID",
1952
+ "plus:ImageSupplierImageID",
1953
+ "Iptc4xmpExt:RegOrgId",
1954
+ "Iptc4xmpExt:RegItemId",
1955
+ "Iptc4xmpExt:MaxAvailWidth",
1956
+ "Iptc4xmpExt:MaxAvailHeight",
1957
+ "Iptc4xmpExt:DigitalSourcefileType",
1958
+ "Iptc4xmpExt:DigitalSourceType"
1959
+ ]
1960
+ }
1961
+ ]
1962
+ },
1963
+ {
1964
+ "id": "app.content.metadata.iptcExtRightsInfoGroup",
1965
+ "title": "APP.CONTENT_METADATA.GROUP_IPTC_EXT_RIGHTS_INFO",
1966
+ "items": [
1967
+ {
1968
+ "aspect": "iptcxmp:iptcxmpAspect",
1969
+ "properties": [
1970
+ "plus:ImageCreatorName",
1971
+ "plus:ImageCreatorID",
1972
+ "plus:CopyrightOwnerName",
1973
+ "plus:CopyrightOwnerID",
1974
+
1975
+ "plus:LicensorName",
1976
+ "plus:LicensorID",
1977
+ "plus:LicensorTelephone1",
1978
+ "plus:LicensorTelephone2",
1979
+ "plus:LicensorEmail",
1980
+ "plus:LicensorURL",
1981
+ "plus:LicensorStreetAddress",
1982
+ "plus:LicensorExtendedAddress",
1983
+ "plus:LicensorCity",
1984
+ "plus:LicensorRegion",
1985
+ "plus:LicensorPostalCode",
1986
+ "plus:LicensorCountry",
1987
+
1988
+ "plus:PropertyReleaseStatus",
1989
+ "plus:PropertyReleaseID"
1990
+ ]
1991
+ }
1992
+ ]
1993
+ },
1994
+ {
1995
+ "id": "app.content.metadata.iptcExtOtherGroup",
1996
+ "title": "APP.CONTENT_METADATA.GROUP_IPTC_EXT_OTHER",
1997
+ "items": [
1998
+ {
1999
+ "aspect": "iptcxmp:iptcxmpAspect",
2000
+ "properties": [
2001
+ "Iptc4xmpExt:CVterm",
2002
+ "Iptc4xmpExt:RegistryId",
2003
+ "plus:Version",
2004
+ "Iptc4xmpExt:IptcLastEdited"
2005
+ ]
2006
+ }
2007
+ ]
2008
+ },
2009
+ {
2010
+ "id": "app.content.metadata.effectivityGroup",
2011
+ "title": "APP.CONTENT_METADATA.EFFECTIVITY_GROUP_TITLE",
2012
+ "items": [
2013
+ {
2014
+ "id": "app.content.metadata.effectivityAspect",
2015
+ "aspect": "cm:effectivity",
2016
+ "properties": [
2017
+ "cm:from",
2018
+ "cm:to"
2019
+ ]
2020
+ }
2021
+ ]
2022
+ }
2023
+ ]
2024
+ }
2025
+ ],
2026
+ "documentList": {
2027
+ "files": [
2028
+ {
2029
+ "id": "app.files.thumbnail",
2030
+ "key": "$thumbnail",
2031
+ "type": "image",
2032
+ "sortable": false,
2033
+ "desktopOnly": false,
2034
+ "order": 10
2035
+ },
2036
+ {
2037
+ "id": "app.files.name",
2038
+ "key": "name",
2039
+ "title": "APP.DOCUMENT_LIST.COLUMNS.NAME",
2040
+ "type": "text",
2041
+ "class": "adf-ellipsis-cell adf-expand-cell-5",
2042
+ "sortable": true,
2043
+ "template": "app.columns.name",
2044
+ "desktopOnly": false,
2045
+ "order": 20
2046
+ },
2047
+ {
2048
+ "id": "app.files.size",
2049
+ "key": "content.sizeInBytes",
2050
+ "sortingKey": "sizeInBytes",
2051
+ "title": "APP.DOCUMENT_LIST.COLUMNS.SIZE",
2052
+ "type": "fileSize",
2053
+ "class": "adf-no-grow-cell adf-ellipsis-cell",
2054
+ "sortable": true,
2055
+ "desktopOnly": true,
2056
+ "order": 30
2057
+ },
2058
+ {
2059
+ "id": "app.files.modifiedOn",
2060
+ "key": "modifiedAt",
2061
+ "title": "APP.DOCUMENT_LIST.COLUMNS.MODIFIED_ON",
2062
+ "type": "date",
2063
+ "format": "timeAgo",
2064
+ "class": "adf-ellipsis-cell",
2065
+ "sortable": true,
2066
+ "desktopOnly": true,
2067
+ "order": 40
2068
+ },
2069
+ {
2070
+ "id": "app.files.modifiedBy",
2071
+ "key": "modifiedByUser.displayName",
2072
+ "sortingKey": "modifiedByUser",
2073
+ "title": "APP.DOCUMENT_LIST.COLUMNS.MODIFIED_BY",
2074
+ "type": "text",
2075
+ "class": "adf-ellipsis-cell adf-no-grow-cell",
2076
+ "sortable": true,
2077
+ "desktopOnly": true,
2078
+ "order": 50
2079
+ }
2080
+ ],
2081
+ "libraries": [
2082
+ {
2083
+ "id": "app.libraries.thumbnail",
2084
+ "key": "$thumbnail",
2085
+ "type": "image",
2086
+ "sortable": false,
2087
+ "desktopOnly": false,
2088
+ "order": 10
2089
+ },
2090
+ {
2091
+ "id": "app.libraries.name",
2092
+ "key": "title",
2093
+ "sortingKey": "name",
2094
+ "title": "APP.DOCUMENT_LIST.COLUMNS.NAME",
2095
+ "type": "text",
2096
+ "class": "adf-ellipsis-cell adf-expand-cell-3",
2097
+ "sortable": true,
2098
+ "template": "app.columns.libraryName",
2099
+ "desktopOnly": false,
2100
+ "order": 20
2101
+ },
2102
+ {
2103
+ "id": "app.libraries.description",
2104
+ "key": "description",
2105
+ "title": "APP.DOCUMENT_LIST.COLUMNS.DESCRIPTION",
2106
+ "type": "text",
2107
+ "class": "adf-ellipsis-cell adf-expand-cell-5",
2108
+ "sortable": true,
2109
+ "desktopOnly": true,
2110
+ "order": 30
2111
+ },
2112
+ {
2113
+ "id": "app.libraries.role",
2114
+ "key": "role",
2115
+ "title": "APP.DOCUMENT_LIST.COLUMNS.ROLE",
2116
+ "type": "text",
2117
+ "class": "adf-no-grow-cell",
2118
+ "sortable": true,
2119
+ "template": "app.columns.libraryRole",
2120
+ "desktopOnly": false,
2121
+ "order": 40
2122
+ },
2123
+ {
2124
+ "id": "app.libraries.visibility",
2125
+ "key": "visibility",
2126
+ "title": "APP.DOCUMENT_LIST.COLUMNS.VISIBILITY",
2127
+ "type": "text",
2128
+ "class": "adf-no-grow-cell",
2129
+ "sortable": true,
2130
+ "template": "app.columns.libraryStatus",
2131
+ "desktopOnly": true,
2132
+ "order": 50
2133
+ }
2134
+ ],
2135
+ "favoriteLibraries": [
2136
+ {
2137
+ "id": "app.favorite.libraries.thumbnail",
2138
+ "key": "$thumbnail",
2139
+ "type": "image",
2140
+ "sortable": false,
2141
+ "desktopOnly": false,
2142
+ "order": 10
2143
+ },
2144
+ {
2145
+ "id": "app.favorite.libraries.name",
2146
+ "key": "title",
2147
+ "sortingKey": "name",
2148
+ "title": "APP.DOCUMENT_LIST.COLUMNS.NAME",
2149
+ "type": "text",
2150
+ "class": "adf-ellipsis-cell adf-expand-cell-3",
2151
+ "sortable": true,
2152
+ "template": "app.columns.libraryName",
2153
+ "desktopOnly": false,
2154
+ "order": 20
2155
+ },
2156
+ {
2157
+ "id": "app.favorite.libraries.description",
2158
+ "key": "description",
2159
+ "title": "APP.DOCUMENT_LIST.COLUMNS.DESCRIPTION",
2160
+ "type": "text",
2161
+ "class": "adf-ellipsis-cell adf-expand-cell-5",
2162
+ "sortable": true,
2163
+ "desktopOnly": true,
2164
+ "order": 30
2165
+ },
2166
+ {
2167
+ "id": "app.favorite.libraries.role",
2168
+ "key": "role",
2169
+ "title": "APP.DOCUMENT_LIST.COLUMNS.ROLE",
2170
+ "type": "text",
2171
+ "class": "adf-no-grow-cell",
2172
+ "sortable": true,
2173
+ "template": "app.columns.libraryRole",
2174
+ "desktopOnly": false,
2175
+ "order": 40
2176
+ },
2177
+ {
2178
+ "id": "app.favorite.libraries.visibility",
2179
+ "key": "visibility",
2180
+ "title": "APP.DOCUMENT_LIST.COLUMNS.VISIBILITY",
2181
+ "type": "text",
2182
+ "class": "adf-no-grow-cell",
2183
+ "sortable": true,
2184
+ "template": "app.columns.libraryStatus",
2185
+ "desktopOnly": true,
2186
+ "order": 50
2187
+ }
2188
+ ],
2189
+ "shared": [
2190
+ {
2191
+ "id": "app.shared.thumbnail",
2192
+ "key": "$thumbnail",
2193
+ "type": "image",
2194
+ "sortable": false,
2195
+ "desktopOnly": false,
2196
+ "order": 10
2197
+ },
2198
+ {
2199
+ "id": "app.shared.name",
2200
+ "key": "name",
2201
+ "title": "APP.DOCUMENT_LIST.COLUMNS.NAME",
2202
+ "type": "text",
2203
+ "class": "adf-ellipsis-cell adf-expand-cell-5",
2204
+ "sortable": true,
2205
+ "template": "app.columns.name",
2206
+ "desktopOnly": false,
2207
+ "order": 20
2208
+ },
2209
+ {
2210
+ "id": "app.shared.location",
2211
+ "key": "path.name",
2212
+ "sortingKey": "path",
2213
+ "title": "APP.DOCUMENT_LIST.COLUMNS.LOCATION",
2214
+ "type": "text",
2215
+ "class": "adf-ellipsis-cell adf-no-grow-cell",
2216
+ "sortable": true,
2217
+ "template": "app.columns.location",
2218
+ "desktopOnly": true,
2219
+ "order": 30
2220
+ },
2221
+ {
2222
+ "id": "app.shared.size",
2223
+ "key": "content.sizeInBytes",
2224
+ "sortingKey": "sizeInBytes",
2225
+ "title": "APP.DOCUMENT_LIST.COLUMNS.SIZE",
2226
+ "type": "fileSize",
2227
+ "class": "adf-no-grow-cell adf-ellipsis-cell",
2228
+ "sortable": true,
2229
+ "desktopOnly": true,
2230
+ "order": 40
2231
+ },
2232
+ {
2233
+ "id": "app.shared.modifiedOn",
2234
+ "key": "modifiedAt",
2235
+ "sortingKey": "modifiedAt",
2236
+ "title": "APP.DOCUMENT_LIST.COLUMNS.MODIFIED_ON",
2237
+ "type": "date",
2238
+ "class": "adf-ellipsis-cell",
2239
+ "format": "timeAgo",
2240
+ "sortable": true,
2241
+ "desktopOnly": true,
2242
+ "order": 50
2243
+ },
2244
+ {
2245
+ "id": "app.shared.modifiedBy",
2246
+ "key": "modifiedByUser.displayName",
2247
+ "sortingKey": "modifiedByUser",
2248
+ "title": "APP.DOCUMENT_LIST.COLUMNS.MODIFIED_BY",
2249
+ "type": "text",
2250
+ "class": "adf-ellipsis-cell adf-no-grow-cell",
2251
+ "sortable": true,
2252
+ "desktopOnly": true,
2253
+ "order": 60
2254
+ },
2255
+ {
2256
+ "id": "app.shared.sharedBy",
2257
+ "key": "sharedByUser.displayName",
2258
+ "sortingKey": "sharedByUser",
2259
+ "title": "APP.DOCUMENT_LIST.COLUMNS.SHARED_BY",
2260
+ "type": "text",
2261
+ "class": "adf-ellipsis-cell adf-no-grow-cell",
2262
+ "sortable": true,
2263
+ "desktopOnly": true,
2264
+ "order": 70
2265
+ }
2266
+ ],
2267
+ "recent": [
2268
+ {
2269
+ "id": "app.recent.thumbnail",
2270
+ "key": "$thumbnail",
2271
+ "type": "image",
2272
+ "sortable": false,
2273
+ "desktopOnly": false,
2274
+ "order": 10
2275
+ },
2276
+ {
2277
+ "id": "app.recent.name",
2278
+ "key": "name",
2279
+ "title": "APP.DOCUMENT_LIST.COLUMNS.NAME",
2280
+ "type": "text",
2281
+ "class": "adf-ellipsis-cell adf-expand-cell-5",
2282
+ "sortable": true,
2283
+ "template": "app.columns.name",
2284
+ "desktopOnly": false,
2285
+ "order": 20
2286
+ },
2287
+ {
2288
+ "id": "app.recent.location",
2289
+ "key": "path.name",
2290
+ "title": "APP.DOCUMENT_LIST.COLUMNS.LOCATION",
2291
+ "type": "text",
2292
+ "class": "adf-ellipsis-cell adf-no-grow-cell",
2293
+ "sortable": true,
2294
+ "template": "app.columns.location",
2295
+ "desktopOnly": true,
2296
+ "order": 30
2297
+ },
2298
+ {
2299
+ "id": "app.recent.size",
2300
+ "key": "content.sizeInBytes",
2301
+ "sortingKey": "sizeInBytes",
2302
+ "title": "APP.DOCUMENT_LIST.COLUMNS.SIZE",
2303
+ "type": "fileSize",
2304
+ "class": "adf-no-grow-cell adf-ellipsis-cell",
2305
+ "sortable": true,
2306
+ "desktopOnly": true,
2307
+ "order": 40
2308
+ },
2309
+ {
2310
+ "id": "app.recent.modifiedOn",
2311
+ "key": "modifiedAt",
2312
+ "title": "APP.DOCUMENT_LIST.COLUMNS.MODIFIED_ON",
2313
+ "type": "date",
2314
+ "format": "timeAgo",
2315
+ "class": "adf-ellipsis-cell",
2316
+ "sortable": true,
2317
+ "desktopOnly": true,
2318
+ "order": 50
2319
+ }
2320
+ ],
2321
+ "favorites": [
2322
+ {
2323
+ "id": "app.favorites.thumbnail",
2324
+ "key": "$thumbnail",
2325
+ "type": "image",
2326
+ "sortable": false,
2327
+ "desktopOnly": false,
2328
+ "order": 10
2329
+ },
2330
+ {
2331
+ "id": "app.favorites.name",
2332
+ "key": "name",
2333
+ "title": "APP.DOCUMENT_LIST.COLUMNS.NAME",
2334
+ "type": "text",
2335
+ "class": "adf-ellipsis-cell adf-expand-cell-5",
2336
+ "sortable": true,
2337
+ "template": "app.columns.name",
2338
+ "desktopOnly": false,
2339
+ "order": 20
2340
+ },
2341
+ {
2342
+ "id": "app.favorites.location",
2343
+ "key": "path.name",
2344
+ "title": "APP.DOCUMENT_LIST.COLUMNS.LOCATION",
2345
+ "type": "text",
2346
+ "class": "adf-ellipsis-cell adf-no-grow-cell",
2347
+ "sortable": true,
2348
+ "template": "app.columns.location",
2349
+ "desktopOnly": true,
2350
+ "order": 30
2351
+ },
2352
+ {
2353
+ "id": "app.favorites.size",
2354
+ "key": "sizeInBytes",
2355
+ "title": "APP.DOCUMENT_LIST.COLUMNS.SIZE",
2356
+ "type": "fileSize",
2357
+ "class": "adf-no-grow-cell adf-ellipsis-cell",
2358
+ "sortable": true,
2359
+ "desktopOnly": true,
2360
+ "order": 40
2361
+ },
2362
+ {
2363
+ "id": "app.favorites.modifiedOn",
2364
+ "key": "modifiedAt",
2365
+ "title": "APP.DOCUMENT_LIST.COLUMNS.MODIFIED_ON",
2366
+ "type": "date",
2367
+ "format": "timeAgo",
2368
+ "class": "adf-ellipsis-cell",
2369
+ "sortable": true,
2370
+ "desktopOnly": true,
2371
+ "order": 50
2372
+ },
2373
+ {
2374
+ "id": "app.favorites.modifiedBy",
2375
+ "key": "modifiedByUser.displayName",
2376
+ "sortingKey": "modifiedByUser",
2377
+ "title": "APP.DOCUMENT_LIST.COLUMNS.MODIFIED_BY",
2378
+ "type": "text",
2379
+ "class": "adf-ellipsis-cell adf-no-grow-cell",
2380
+ "sortable": true,
2381
+ "desktopOnly": true,
2382
+ "order": 60
2383
+ }
2384
+ ],
2385
+ "trashcan": [
2386
+ {
2387
+ "id": "app.trashcan.thumbnail",
2388
+ "key": "$thumbnail",
2389
+ "type": "image",
2390
+ "sortable": false,
2391
+ "desktopOnly": false,
2392
+ "order": 10
2393
+ },
2394
+ {
2395
+ "id": "app.trashcan.name",
2396
+ "key": "name",
2397
+ "title": "APP.DOCUMENT_LIST.COLUMNS.NAME",
2398
+ "type": "text",
2399
+ "class": "adf-ellipsis-cell adf-expand-cell-5",
2400
+ "sortable": true,
2401
+ "template": "app.columns.trashcanName",
2402
+ "desktopOnly": false,
2403
+ "order": 20
2404
+ },
2405
+ {
2406
+ "id": "app.trashcan.location",
2407
+ "key": "path.name",
2408
+ "title": "APP.DOCUMENT_LIST.COLUMNS.LOCATION",
2409
+ "type": "text",
2410
+ "class": "adf-ellipsis-cell adf-no-grow-cell",
2411
+ "sortable": true,
2412
+ "template": "app.columns.location",
2413
+ "desktopOnly": true,
2414
+ "order": 30
2415
+ },
2416
+ {
2417
+ "id": "app.trashcan.size",
2418
+ "key": "content.sizeInBytes",
2419
+ "sortingKey": "sizeInBytes",
2420
+ "title": "APP.DOCUMENT_LIST.COLUMNS.SIZE",
2421
+ "type": "fileSize",
2422
+ "class": "adf-no-grow-cell adf-ellipsis-cell",
2423
+ "sortable": true,
2424
+ "desktopOnly": true,
2425
+ "order": 40
2426
+ },
2427
+ {
2428
+ "id": "app.trashcan.deletedOn",
2429
+ "key": "archivedAt",
2430
+ "title": "APP.DOCUMENT_LIST.COLUMNS.DELETED_ON",
2431
+ "type": "date",
2432
+ "format": "timeAgo",
2433
+ "class": "adf-ellipsis-cell",
2434
+ "sortable": true,
2435
+ "desktopOnly": true,
2436
+ "order": 50
2437
+ }
2438
+ ],
2439
+ "search-libraries": [
2440
+ {
2441
+ "id": "app.libraries.thumbnail",
2442
+ "key": "$thumbnail",
2443
+ "type": "image",
2444
+ "sortable": false,
2445
+ "desktopOnly": false,
2446
+ "order": 10
2447
+ },
2448
+ {
2449
+ "id": "app.libraries.name",
2450
+ "key": "title",
2451
+ "sortingKey": "name",
2452
+ "title": "APP.DOCUMENT_LIST.COLUMNS.NAME",
2453
+ "type": "text",
2454
+ "class": "adf-ellipsis-cell adf-expand-cell-3",
2455
+ "sortable": true,
2456
+ "template": "app.columns.libraryName",
2457
+ "desktopOnly": false,
2458
+ "order": 20
2459
+ },
2460
+ {
2461
+ "id": "app.favorite.libraries.description",
2462
+ "key": "description",
2463
+ "title": "APP.DOCUMENT_LIST.COLUMNS.DESCRIPTION",
2464
+ "type": "text",
2465
+ "class": "adf-ellipsis-cell adf-expand-cell-5",
2466
+ "sortable": true,
2467
+ "template": "app.columns.libraryDescription",
2468
+ "desktopOnly": true,
2469
+ "order": 30
2470
+ },
2471
+ {
2472
+ "id": "app.libraries.role",
2473
+ "key": "role",
2474
+ "title": "APP.DOCUMENT_LIST.COLUMNS.ROLE",
2475
+ "type": "text",
2476
+ "class": "adf-no-grow-cell",
2477
+ "sortable": true,
2478
+ "template": "app.columns.libraryRole",
2479
+ "desktopOnly": false,
2480
+ "order": 40
2481
+ },
2482
+ {
2483
+ "id": "app.libraries.visibility",
2484
+ "key": "visibility",
2485
+ "title": "APP.DOCUMENT_LIST.COLUMNS.VISIBILITY",
2486
+ "type": "text",
2487
+ "class": "adf-no-grow-cell",
2488
+ "sortable": true,
2489
+ "template": "app.columns.libraryStatus",
2490
+ "desktopOnly": true,
2491
+ "order": 50
2492
+ }
2493
+ ]
2494
+ }
2495
+ }
2496
+ }