@alfresco/aca-content 4.0.0-4895233349

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