@leav/ui 0.3.6-7be4667 → 0.3.6-7d696be

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 (282) hide show
  1. package/dist/__mocks__/common/form.d.ts +11 -5
  2. package/dist/__mocks__/common/form.js +18 -2
  3. package/dist/__mocks__/common/form.js.map +1 -1
  4. package/dist/__mocks__/common/record.d.ts +13 -2
  5. package/dist/__mocks__/common/record.js.map +1 -1
  6. package/dist/_gqlTypes/index.d.ts +102 -18
  7. package/dist/_gqlTypes/index.js +1102 -1039
  8. package/dist/_gqlTypes/index.js.map +1 -1
  9. package/dist/components/CreateDirectory/CreateDirectory.js +1 -1
  10. package/dist/components/CreateDirectory/CreateDirectory.js.map +1 -1
  11. package/dist/components/EditApplication/EditApplication.js +2 -2
  12. package/dist/components/EditApplication/EditApplication.js.map +1 -1
  13. package/dist/components/EditApplication/_types.d.ts +2 -2
  14. package/dist/components/Explorer/DataView.d.ts +10 -1
  15. package/dist/components/Explorer/DataView.js +32 -34
  16. package/dist/components/Explorer/DataView.js.map +1 -1
  17. package/dist/components/Explorer/Explorer.d.ts +9 -4
  18. package/dist/components/Explorer/Explorer.js +53 -11
  19. package/dist/components/Explorer/Explorer.js.map +1 -1
  20. package/dist/components/Explorer/ExplorerTitle.d.ts +7 -0
  21. package/dist/components/Explorer/ExplorerTitle.js +30 -0
  22. package/dist/components/Explorer/ExplorerTitle.js.map +1 -0
  23. package/dist/components/Explorer/IdCard.d.ts +7 -0
  24. package/dist/components/Explorer/IdCard.js +15 -0
  25. package/dist/components/Explorer/IdCard.js.map +1 -0
  26. package/dist/components/Explorer/TableCell.d.ts +8 -0
  27. package/dist/components/Explorer/TableCell.js +119 -0
  28. package/dist/components/Explorer/TableCell.js.map +1 -0
  29. package/dist/components/Explorer/TableTagGroup.d.ts +7 -0
  30. package/dist/components/Explorer/TableTagGroup.js +30 -0
  31. package/dist/components/Explorer/TableTagGroup.js.map +1 -0
  32. package/dist/components/Explorer/_queries/useExplorerData.d.ts +19 -4
  33. package/dist/components/Explorer/_queries/useExplorerData.js +49 -16
  34. package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -1
  35. package/dist/components/Explorer/_types.d.ts +17 -3
  36. package/dist/components/Explorer/index.d.ts +1 -3
  37. package/dist/components/Explorer/index.js +1 -3
  38. package/dist/components/Explorer/index.js.map +1 -1
  39. package/dist/components/Explorer/{edit-settings → manage-view-settings/_shared}/ColumnItem.d.ts +2 -1
  40. package/dist/components/Explorer/manage-view-settings/_shared/ColumnItem.js +85 -0
  41. package/dist/components/Explorer/manage-view-settings/_shared/ColumnItem.js.map +1 -0
  42. package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.d.ts +11 -0
  43. package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.js +61 -0
  44. package/dist/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.js.map +1 -0
  45. package/dist/components/Explorer/manage-view-settings/configure-display/ConfigureDisplay.d.ts +6 -0
  46. package/dist/components/Explorer/manage-view-settings/configure-display/ConfigureDisplay.js +28 -0
  47. package/dist/components/Explorer/manage-view-settings/configure-display/ConfigureDisplay.js.map +1 -0
  48. package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.d.ts +6 -0
  49. package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.js +56 -0
  50. package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.js.map +1 -0
  51. package/dist/components/Explorer/manage-view-settings/configure-display/view-type/SelectViewType.d.ts +8 -0
  52. package/dist/components/Explorer/manage-view-settings/configure-display/view-type/SelectViewType.js +12 -0
  53. package/dist/components/Explorer/manage-view-settings/configure-display/view-type/SelectViewType.js.map +1 -0
  54. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.d.ts +4 -0
  55. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js +89 -0
  56. package/dist/components/Explorer/manage-view-settings/filter-items/FilterItems.js.map +1 -0
  57. package/dist/components/Explorer/manage-view-settings/filter-items/FilterListItem.d.ts +10 -0
  58. package/dist/components/Explorer/manage-view-settings/filter-items/FilterListItem.js +33 -0
  59. package/dist/components/Explorer/manage-view-settings/filter-items/FilterListItem.js.map +1 -0
  60. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/SimpleFilterDropDown.d.ts +8 -0
  61. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/SimpleFilterDropDown.js +100 -0
  62. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/SimpleFilterDropDown.js.map +1 -0
  63. package/dist/components/Explorer/manage-view-settings/index.d.ts +8 -0
  64. package/dist/components/Explorer/manage-view-settings/index.js +11 -0
  65. package/dist/components/Explorer/manage-view-settings/index.js.map +1 -0
  66. package/dist/components/Explorer/{edit-settings → manage-view-settings/open-view-settings}/EditSettingsContext.d.ts +1 -0
  67. package/dist/components/Explorer/{edit-settings → manage-view-settings/open-view-settings}/EditSettingsContext.js +1 -0
  68. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.js.map +1 -0
  69. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.d.ts +7 -0
  70. package/dist/components/Explorer/{edit-settings → manage-view-settings/open-view-settings}/EditSettingsContextProvider.js +2 -1
  71. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.js.map +1 -0
  72. package/dist/components/Explorer/{edit-settings → manage-view-settings/open-view-settings}/SidePanel.js +2 -2
  73. package/dist/components/Explorer/manage-view-settings/open-view-settings/SidePanel.js.map +1 -0
  74. package/dist/components/Explorer/manage-view-settings/open-view-settings/useEditSettings.js.map +1 -0
  75. package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.d.ts +3 -0
  76. package/dist/components/Explorer/{edit-settings/useOpenSettings.js → manage-view-settings/open-view-settings/useOpenViewSettings.js} +7 -5
  77. package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js.map +1 -0
  78. package/dist/components/Explorer/manage-view-settings/router-menu/SettingItem.js.map +1 -0
  79. package/dist/components/Explorer/{edit-settings → manage-view-settings/router-menu}/SettingsPanel.d.ts +1 -1
  80. package/dist/components/Explorer/{edit-settings → manage-view-settings/router-menu}/SettingsPanel.js +10 -10
  81. package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js.map +1 -0
  82. package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.d.ts +4 -0
  83. package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js +109 -0
  84. package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js.map +1 -0
  85. package/dist/components/Explorer/manage-view-settings/sort-items/SortListItem.d.ts +10 -0
  86. package/dist/components/Explorer/manage-view-settings/sort-items/SortListItem.js +32 -0
  87. package/dist/components/Explorer/manage-view-settings/sort-items/SortListItem.js.map +1 -0
  88. package/dist/components/Explorer/manage-view-settings/store-view-settings/ViewSettingsContext.d.ts +6 -0
  89. package/dist/components/Explorer/manage-view-settings/store-view-settings/ViewSettingsContext.js +11 -0
  90. package/dist/components/Explorer/manage-view-settings/store-view-settings/ViewSettingsContext.js.map +1 -0
  91. package/dist/components/Explorer/manage-view-settings/store-view-settings/useViewSettingsContext.d.ts +4 -0
  92. package/dist/components/{RecordEdition/EditRecordContent/reducers/standardFieldReducer/useStandardFieldReducer.js → Explorer/manage-view-settings/store-view-settings/useViewSettingsContext.js} +3 -3
  93. package/dist/components/Explorer/manage-view-settings/store-view-settings/useViewSettingsContext.js.map +1 -0
  94. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.d.ts +4 -0
  95. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js +13 -0
  96. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js.map +1 -0
  97. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.d.ts +135 -0
  98. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js +164 -0
  99. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js.map +1 -0
  100. package/dist/components/Explorer/{useCreateMainAction.d.ts → useCreateAction.d.ts} +3 -3
  101. package/dist/components/Explorer/{useCreateMainAction.js → useCreateAction.js} +11 -7
  102. package/dist/components/Explorer/useCreateAction.js.map +1 -0
  103. package/dist/components/Explorer/useEditAction.js +2 -1
  104. package/dist/components/Explorer/useEditAction.js.map +1 -1
  105. package/dist/components/Explorer/usePagination.d.ts +7 -0
  106. package/dist/components/Explorer/usePagination.js +25 -0
  107. package/dist/components/Explorer/usePagination.js.map +1 -0
  108. package/dist/components/Explorer/usePrimaryActions.d.ts +12 -0
  109. package/dist/components/Explorer/usePrimaryActions.js +21 -0
  110. package/dist/components/Explorer/usePrimaryActions.js.map +1 -0
  111. package/dist/components/Explorer/useSearchInput.d.ts +10 -0
  112. package/dist/components/Explorer/useSearchInput.js +31 -0
  113. package/dist/components/Explorer/useSearchInput.js.map +1 -0
  114. package/dist/components/Explorer/useTableScrollableHeight.d.ts +5 -0
  115. package/dist/components/Explorer/useTableScrollableHeight.js +15 -0
  116. package/dist/components/Explorer/useTableScrollableHeight.js.map +1 -0
  117. package/dist/components/ExportModal/ExportModal.js +2 -2
  118. package/dist/components/ExportModal/ExportModal.js.map +1 -1
  119. package/dist/components/ImportModal/ImportModalConfigStep/ImportModalConfigStep.js +5 -5
  120. package/dist/components/ImportModal/ImportModalConfigStep/ImportModalConfigStep.js.map +1 -1
  121. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js +2 -2
  122. package/dist/components/LibraryItemsList/FiltersPanel/Filter/Filter.js.map +1 -1
  123. package/dist/components/RecordEdition/EditRecord/EditRecord.js +2 -2
  124. package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
  125. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +1 -1
  126. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
  127. package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +7 -20
  128. package/dist/components/RecordEdition/EditRecordContent/_types.js.map +1 -1
  129. package/dist/components/RecordEdition/EditRecordContent/antdUtils.d.ts +2 -1
  130. package/dist/components/RecordEdition/EditRecordContent/antdUtils.js +40 -33
  131. package/dist/components/RecordEdition/EditRecordContent/antdUtils.js.map +1 -1
  132. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.d.ts +1 -1
  133. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js +2 -2
  134. package/dist/components/RecordEdition/EditRecordContent/uiElements/Container/Container.js.map +1 -1
  135. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/MonoValueSelect.js +1 -1
  136. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MonoValueSelect/MonoValueSelect.js.map +1 -1
  137. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/MultiValueSelect.js +1 -1
  138. package/dist/components/RecordEdition/EditRecordContent/uiElements/LinkField/MultiValueSelect/MultiValueSelect.js.map +1 -1
  139. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/DeleteAllValuesButton.d.ts +4 -0
  140. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/DeleteAllValuesButton.js +25 -0
  141. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/DeleteAllValuesButton.js.map +1 -0
  142. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.d.ts +3 -2
  143. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +165 -192
  144. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
  145. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.d.ts +2 -8
  146. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js +10 -29
  147. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js.map +1 -1
  148. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.d.ts +2 -13
  149. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js +33 -43
  150. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js.map +1 -1
  151. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.d.ts +3 -14
  152. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.js +19 -47
  153. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSDatePickerWrapper.js.map +1 -1
  154. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.d.ts +3 -14
  155. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.js +9 -77
  156. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputEncryptedWrapper.js.map +1 -1
  157. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.d.ts +3 -14
  158. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.js +24 -46
  159. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputNumberWrapper.js.map +1 -1
  160. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.d.ts +3 -14
  161. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js +29 -50
  162. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js.map +1 -1
  163. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.d.ts +3 -14
  164. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js +43 -62
  165. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js.map +1 -1
  166. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.d.ts +3 -14
  167. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js +28 -50
  168. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js.map +1 -1
  169. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.d.ts +14 -9
  170. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js +64 -401
  171. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValue.js.map +1 -1
  172. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/MonoValueSelect.d.ts +3 -2
  173. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/MonoValueSelect.js +23 -49
  174. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/MonoValueSelect.js.map +1 -1
  175. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/ValuesList/_types.d.ts +2 -9
  176. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/_types.d.ts +13 -0
  177. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/_types.js +2 -0
  178. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/_types.js.map +1 -0
  179. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/calculatedInheritedFlags.d.ts +42 -0
  180. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/calculatedInheritedFlags.js +55 -0
  181. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/calculatedInheritedFlags.js.map +1 -0
  182. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.d.ts +12 -0
  183. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.js +31 -0
  184. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.js.map +1 -0
  185. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/ValuesAdd.js +2 -2
  186. package/dist/components/RecordEdition/EditRecordContent/uiElements/TreeField/ValuesAdd/ValuesAdd.js.map +1 -1
  187. package/dist/components/SelectTreeNode/SelectTreeNode.d.ts +4 -7
  188. package/dist/components/SelectTreeNode/SelectTreeNode.js +17 -135
  189. package/dist/components/SelectTreeNode/SelectTreeNode.js.map +1 -1
  190. package/dist/components/SelectTreeNode/SelectTreeNodeContent.d.ts +16 -0
  191. package/dist/components/SelectTreeNode/SelectTreeNodeContent.js +131 -0
  192. package/dist/components/SelectTreeNode/SelectTreeNodeContent.js.map +1 -0
  193. package/dist/components/SelectTreeNode/index.d.ts +1 -1
  194. package/dist/components/SelectTreeNode/index.js +1 -1
  195. package/dist/components/SelectTreeNode/index.js.map +1 -1
  196. package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.d.ts +4 -7
  197. package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.js +10 -10
  198. package/dist/components/SelectTreeNodeModal/SelectTreeNodeModal.js.map +1 -1
  199. package/dist/components/SelectTreeNodeModal/index.d.ts +1 -2
  200. package/dist/components/SelectTreeNodeModal/index.js +1 -2
  201. package/dist/components/SelectTreeNodeModal/index.js.map +1 -1
  202. package/dist/components/UploadFiles/UploadFiles.js +1 -1
  203. package/dist/components/UploadFiles/UploadFiles.js.map +1 -1
  204. package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js +2 -2
  205. package/dist/components/ValuesVersionConfigurator/VersionTree/VersionTree.js.map +1 -1
  206. package/dist/hooks/useDebouncedValue/index.d.ts +1 -0
  207. package/dist/{components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler → hooks/useDebouncedValue}/index.js +1 -1
  208. package/dist/hooks/useDebouncedValue/index.js.map +1 -0
  209. package/dist/hooks/useGetRecordForm/useGetRecordForm.d.ts +1 -0
  210. package/dist/hooks/useGetRecordForm/useGetRecordForm.js.map +1 -1
  211. package/dist/locales/en/shared.json +45 -11
  212. package/dist/locales/fr/shared.json +45 -11
  213. package/package.json +5 -2
  214. package/dist/components/Explorer/edit-settings/ColumnItem.js +0 -62
  215. package/dist/components/Explorer/edit-settings/ColumnItem.js.map +0 -1
  216. package/dist/components/Explorer/edit-settings/DisplayMode.d.ts +0 -6
  217. package/dist/components/Explorer/edit-settings/DisplayMode.js +0 -28
  218. package/dist/components/Explorer/edit-settings/DisplayMode.js.map +0 -1
  219. package/dist/components/Explorer/edit-settings/DisplayModeTable.d.ts +0 -6
  220. package/dist/components/Explorer/edit-settings/DisplayModeTable.js +0 -77
  221. package/dist/components/Explorer/edit-settings/DisplayModeTable.js.map +0 -1
  222. package/dist/components/Explorer/edit-settings/EditSettingsContext.js.map +0 -1
  223. package/dist/components/Explorer/edit-settings/EditSettingsContextProvider.d.ts +0 -2
  224. package/dist/components/Explorer/edit-settings/EditSettingsContextProvider.js.map +0 -1
  225. package/dist/components/Explorer/edit-settings/SettingItem.js.map +0 -1
  226. package/dist/components/Explorer/edit-settings/SettingsPanel.js.map +0 -1
  227. package/dist/components/Explorer/edit-settings/SidePanel.js.map +0 -1
  228. package/dist/components/Explorer/edit-settings/useEditSettings.js.map +0 -1
  229. package/dist/components/Explorer/edit-settings/useGetLibraryColumns.d.ts +0 -10
  230. package/dist/components/Explorer/edit-settings/useGetLibraryColumns.js +0 -24
  231. package/dist/components/Explorer/edit-settings/useGetLibraryColumns.js.map +0 -1
  232. package/dist/components/Explorer/edit-settings/useOpenSettings.d.ts +0 -1
  233. package/dist/components/Explorer/edit-settings/useOpenSettings.js.map +0 -1
  234. package/dist/components/Explorer/useCreateMainAction.js.map +0 -1
  235. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/index.d.ts +0 -2
  236. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/index.js +0 -6
  237. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/index.js.map +0 -1
  238. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducer.d.ts +0 -138
  239. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducer.js +0 -361
  240. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducer.js.map +0 -1
  241. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducerContext.d.ts +0 -7
  242. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducerContext.js +0 -9
  243. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/standardFieldReducerContext.js.map +0 -1
  244. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/useStandardFieldReducer.d.ts +0 -1
  245. package/dist/components/RecordEdition/EditRecordContent/reducers/standardFieldReducer/useStandardFieldReducer.js.map +0 -1
  246. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/CheckboxInput.d.ts +0 -3
  247. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/CheckboxInput.js +0 -14
  248. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/CheckboxInput.js.map +0 -1
  249. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/ColorInput.d.ts +0 -3
  250. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/ColorInput.js +0 -22
  251. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/ColorInput.js.map +0 -1
  252. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/DateInput.d.ts +0 -3
  253. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/DateInput.js +0 -22
  254. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/DateInput.js.map +0 -1
  255. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/EncryptedInput.d.ts +0 -3
  256. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/EncryptedInput.js +0 -19
  257. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/EncryptedInput.js.map +0 -1
  258. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/NumberInput.d.ts +0 -3
  259. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/NumberInput.js +0 -32
  260. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/NumberInput.js.map +0 -1
  261. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/RichTextEditorInput.d.ts +0 -3
  262. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/RichTextEditorInput.js +0 -51
  263. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/RichTextEditorInput.js.map +0 -1
  264. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/TextInput.d.ts +0 -3
  265. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/TextInput.js +0 -26
  266. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/Inputs/TextInput.js.map +0 -1
  267. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueDisplayHandler.d.ts +0 -13
  268. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueDisplayHandler.js +0 -90
  269. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueDisplayHandler.js.map +0 -1
  270. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/ColorPickerBlock.d.ts +0 -7
  271. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/ColorPickerBlock.js +0 -45
  272. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/ColorPickerBlock.js.map +0 -1
  273. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/StandardFieldValueRead.d.ts +0 -9
  274. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/StandardFieldValueRead.js +0 -141
  275. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/StandardFieldValueRead/StandardFieldValueRead.js.map +0 -1
  276. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/index.d.ts +0 -1
  277. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/StandardFieldValueDisplayHandler/index.js.map +0 -1
  278. /package/dist/components/Explorer/{edit-settings → manage-view-settings/open-view-settings}/SidePanel.d.ts +0 -0
  279. /package/dist/components/Explorer/{edit-settings → manage-view-settings/open-view-settings}/useEditSettings.d.ts +0 -0
  280. /package/dist/components/Explorer/{edit-settings → manage-view-settings/open-view-settings}/useEditSettings.js +0 -0
  281. /package/dist/components/Explorer/{edit-settings → manage-view-settings/router-menu}/SettingItem.d.ts +0 -0
  282. /package/dist/components/Explorer/{edit-settings → manage-view-settings/router-menu}/SettingItem.js +0 -0
@@ -0,0 +1,119 @@
1
+ import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { AttributeFormat, AttributeType } from '../../_gqlTypes';
3
+ import { useSharedTranslation } from '../../hooks/useSharedTranslation';
4
+ import { FaListAlt } from 'react-icons/fa';
5
+ import DOMPurify from 'dompurify';
6
+ import { KitAvatar, KitTag, KitTypography } from 'aristid-ds';
7
+ import styled from 'styled-components';
8
+ import { IdCard } from './IdCard';
9
+ import { multiColorTagAvatarClassName, TableTagGroup } from './TableTagGroup';
10
+ const isStandardValue = (v, attribute) => [AttributeType.simple, AttributeType.advanced].includes(attribute.type);
11
+ const isStandardValues = (values, attribute) => values.every(value => isStandardValue(value, attribute));
12
+ const isLinkValue = (v, attribute) => [AttributeType.simple_link, AttributeType.advanced_link].includes(attribute.type);
13
+ const isLinkValues = (values, attribute) => values.every(value => isLinkValue(value, attribute));
14
+ const isTreeValue = (v, attribute) => [AttributeType.tree].includes(attribute.type);
15
+ const StyledCenteringWrapper = styled.div `
16
+ display: flex;
17
+ align-items: center;
18
+ gap: calc(var(--general-spacing-xs) * 1px);
19
+ `;
20
+ const StyledColorChip = styled.div `
21
+ height: calc(var(--general-spacing-s) * 1px);
22
+ width: calc(var(--general-spacing-s) * 1px);
23
+ border-radius: calc(var(--general-border-radius-xs) * 1px);
24
+ background-color: ${props => props.$colorTextContent};
25
+ `;
26
+ const StyledFaListAlt = styled(FaListAlt) `
27
+ flex-shrink: 0;
28
+ `;
29
+ export const TableCell = ({ values, attributeProperties }) => {
30
+ const { t } = useSharedTranslation();
31
+ if (attributeProperties.multiple_values) {
32
+ if (isStandardValues(values, attributeProperties)) {
33
+ const tags = values.map(value => {
34
+ switch (attributeProperties.format) {
35
+ case AttributeFormat.boolean:
36
+ return {
37
+ idCardProps: {
38
+ description: value.valuePayload ? String(t('global.yes')) : String(t('global.no'))
39
+ },
40
+ type: value.valuePayload ? 'primary' : 'neutral'
41
+ };
42
+ case AttributeFormat.color:
43
+ const colorHexa = `#${value.valuePayload}`;
44
+ return {
45
+ idCardProps: {
46
+ description: colorHexa,
47
+ avatarProps: {
48
+ color: colorHexa,
49
+ shape: 'square',
50
+ className: multiColorTagAvatarClassName
51
+ }
52
+ }
53
+ };
54
+ default:
55
+ const valueContent = attributeProperties.format === AttributeFormat.encrypted
56
+ ? '●●●●●●●●●●●●'
57
+ : value.valuePayload;
58
+ return {
59
+ idCardProps: { description: valueContent },
60
+ type: 'primary'
61
+ };
62
+ }
63
+ });
64
+ return _jsx(TableTagGroup, { tags: tags });
65
+ }
66
+ else if (isLinkValues(values, attributeProperties)) {
67
+ return (_jsx(KitAvatar.Group, { maxCount: 5, children: values.map((value, index) => {
68
+ if (!isLinkValue(value, attributeProperties)) {
69
+ return null;
70
+ }
71
+ return (_jsx(KitAvatar, { label: String(value?.linkPayload?.whoAmI.label), src: value?.linkPayload?.whoAmI.preview?.small, color: "primary", secondaryColorInvert: true }, index));
72
+ }) }));
73
+ }
74
+ else {
75
+ // TODO: handle multiple tree values
76
+ return null;
77
+ }
78
+ }
79
+ else {
80
+ const value = values[0]; // Not multiple_values attribute should not have more than one value
81
+ if (!value) {
82
+ return null;
83
+ }
84
+ let content = null;
85
+ if (isStandardValue(value, attributeProperties)) {
86
+ if (value.valuePayload === null) {
87
+ return null;
88
+ }
89
+ switch (attributeProperties.format) {
90
+ case AttributeFormat.boolean:
91
+ const valueToDisplay = value.valuePayload ? t('global.yes') : t('global.no');
92
+ content = (_jsx(KitTag, { type: !!value.valuePayload ? 'primary' : 'neutral', idCardProps: { description: valueToDisplay } }, attributeProperties.id));
93
+ break;
94
+ case AttributeFormat.rich_text:
95
+ const tmp = document.createElement('div');
96
+ tmp.innerHTML = DOMPurify.sanitize(value.valuePayload);
97
+ const textContent = tmp.textContent;
98
+ content = (_jsxs(_Fragment, { children: [_jsx(StyledFaListAlt, {}), _jsx(KitTypography.Text, { ellipsis: { tooltip: textContent }, children: textContent }, attributeProperties.id)] }));
99
+ break;
100
+ case AttributeFormat.color:
101
+ const colorTextContent = `#${value.valuePayload}`;
102
+ content = (_jsxs(_Fragment, { children: [_jsx(StyledColorChip, { "$colorTextContent": colorTextContent }), _jsx(KitTypography.Text, { ellipsis: { tooltip: colorTextContent }, children: colorTextContent }, attributeProperties.id)] }));
103
+ break;
104
+ default:
105
+ const valueContent = attributeProperties.format === AttributeFormat.encrypted ? '●●●●●●●●●●●●' : value.valuePayload;
106
+ content = (_jsx(KitTypography.Text, { ellipsis: { tooltip: valueContent }, children: valueContent }, attributeProperties.id));
107
+ break;
108
+ }
109
+ }
110
+ if (isTreeValue(value, attributeProperties)) {
111
+ content = value.treePayload?.record.id ?? '';
112
+ }
113
+ if (isLinkValue(value, attributeProperties)) {
114
+ content = value.linkPayload?.whoAmI ? (_jsx(IdCard, { item: value.linkPayload?.whoAmI }, attributeProperties.id)) : null;
115
+ }
116
+ return _jsx(StyledCenteringWrapper, { children: content });
117
+ }
118
+ };
119
+ //# sourceMappingURL=TableCell.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TableCell.js","sourceRoot":"","sources":["../../../src/components/Explorer/TableCell.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,7 @@
1
+ import { IKitTag } from 'aristid-ds/dist/Kit/DataDisplay/Tag/types';
2
+ import { FunctionComponent } from 'react';
3
+ export declare const multiColorTagAvatarClassName = "multi-color-tag-avatar";
4
+ export declare const TableTagGroup: FunctionComponent<{
5
+ tags: IKitTag[];
6
+ maxTags?: number;
7
+ }>;
@@ -0,0 +1,30 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Copyright LEAV Solutions 2017 until 2023/11/05, Copyright Aristid from 2023/11/06
3
+ // This file is released under LGPL V3
4
+ // License text available at https://www.gnu.org/licenses/lgpl-3.0.txt
5
+ import { KitTag, KitTooltip } from 'aristid-ds';
6
+ import styled from 'styled-components';
7
+ export const multiColorTagAvatarClassName = 'multi-color-tag-avatar';
8
+ const StyledTagsGroupDiv = styled.div `
9
+ display: flex;
10
+ column-gap: calc(var(--general-spacing-xxs) * 1px);
11
+ row-gap: calc(var(--general-spacing-xxs) * 0.5px);
12
+ flex-wrap: wrap;
13
+
14
+ & > span {
15
+ margin-right: var(--general-spacing-none);
16
+ }
17
+
18
+ // TODO: wait DS to allow better customization on avatar
19
+ &&& .${multiColorTagAvatarClassName} {
20
+ height: calc(var(--general-spacing-s) * 1px);
21
+ width: calc(var(--general-spacing-s) * 1px);
22
+ border-radius: calc(var(--general-border-radius-xs) * 1px);
23
+ }
24
+ `;
25
+ export const TableTagGroup = ({ tags, maxTags = 3 }) => {
26
+ const hiddenTags = tags.slice(maxTags);
27
+ const visibleTags = tags.slice(0, maxTags);
28
+ return (_jsxs(StyledTagsGroupDiv, { children: [visibleTags.map((tag, index) => (_jsx(KitTag, { ...tag }, index))), hiddenTags.length > 0 && (_jsx(KitTooltip, { overlay: hiddenTags.map((hiddenTag, index) => (_jsx("div", { children: hiddenTag.idCardProps?.description }, index))), children: _jsx(KitTag, { type: "primary", idCardProps: { description: `+${hiddenTags.length}` } }) }))] }));
29
+ };
30
+ //# sourceMappingURL=TableTagGroup.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TableTagGroup.js","sourceRoot":"","sources":["../../../src/components/Explorer/TableTagGroup.tsx"],"names":[],"mappings":";AAAA,oFAAoF;AACpF,sCAAsC;AACtC,sEAAsE;AACtE,OAAO,EAAC,MAAM,EAAE,UAAU,EAAC,MAAM,YAAY,CAAC;AAG9C,OAAO,MAAM,MAAM,mBAAmB,CAAC;AAEvC,MAAM,CAAC,MAAM,4BAA4B,GAAG,wBAAwB,CAAC;AAErE,MAAM,kBAAkB,GAAG,MAAM,CAAC,GAAG,CAAA;;;;;;;;;;;WAW1B,4BAA4B;;;;;CAKtC,CAAC;AAEF,MAAM,CAAC,MAAM,aAAa,GAGrB,CAAC,EAAC,IAAI,EAAE,OAAO,GAAG,CAAC,EAAC,EAAE,EAAE;IACzB,MAAM,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IACvC,MAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC;IAE3C,OAAO,CACH,MAAC,kBAAkB,eACd,WAAW,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,KAAK,EAAE,EAAE,CAAC,CAC7B,KAAC,MAAM,OAAiB,GAAG,IAAd,KAAK,CAAa,CAClC,CAAC,EACD,UAAU,CAAC,MAAM,GAAG,CAAC,IAAI,CACtB,KAAC,UAAU,IACP,OAAO,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC,SAAS,EAAE,KAAK,EAAE,EAAE,CAAC,CAC1C,wBAAkB,SAAS,CAAC,WAAW,EAAE,WAAW,IAA1C,KAAK,CAA4C,CAC9D,CAAC,YAEF,KAAC,MAAM,IAAC,IAAI,EAAC,SAAS,EAAC,WAAW,EAAE,EAAC,WAAW,EAAE,IAAI,UAAU,CAAC,MAAM,EAAE,EAAC,GAAI,GACrE,CAChB,IACgB,CACxB,CAAC;AACN,CAAC,CAAC"}
@@ -1,11 +1,26 @@
1
- import { IItemData } from '../_types';
2
- import { ExplorerQuery } from '../../../_gqlTypes';
3
- export declare const useExplorerData: (libraryId: string, attributeIds: string[]) => {
4
- data: IItemData[];
1
+ import { IExplorerData } from '../_types';
2
+ import { ExplorerQuery, SortOrder } from '../../../_gqlTypes';
3
+ export declare const useExplorerData: ({ libraryId, attributeIds, fulltextSearch, sorts, pagination }: {
4
+ libraryId: string;
5
+ attributeIds: string[];
6
+ fulltextSearch: string;
7
+ sorts: Array<{
8
+ attributeId: string;
9
+ order: SortOrder;
10
+ }>;
11
+ pagination: null | {
12
+ limit: number;
13
+ offset: number;
14
+ };
15
+ }) => {
16
+ data: IExplorerData;
5
17
  loading: boolean;
6
18
  refetch: (variables?: Partial<import("../../../_gqlTypes").Exact<{
7
19
  libraryId: import("../../../_gqlTypes").Scalars["ID"];
8
20
  attributeIds: Array<import("../../../_gqlTypes").Scalars["ID"]> | import("../../../_gqlTypes").Scalars["ID"];
21
+ pagination?: import("../../../_gqlTypes").InputMaybe<import("../../../_gqlTypes").RecordsPagination>;
9
22
  filters?: import("../../../_gqlTypes").InputMaybe<Array<import("../../../_gqlTypes").InputMaybe<import("../../../_gqlTypes").RecordFilterInput>> | import("../../../_gqlTypes").InputMaybe<import("../../../_gqlTypes").RecordFilterInput>>;
23
+ multipleSort?: import("../../../_gqlTypes").InputMaybe<Array<import("../../../_gqlTypes").RecordSortInput> | import("../../../_gqlTypes").RecordSortInput>;
24
+ searchQuery?: import("../../../_gqlTypes").InputMaybe<import("../../../_gqlTypes").Scalars["String"]>;
10
25
  }>>) => Promise<import("@apollo/client").ApolloQueryResult<ExplorerQuery>>;
11
26
  };
@@ -1,21 +1,54 @@
1
+ // Copyright LEAV Solutions 2017 until 2023/11/05, Copyright Aristid from 2023/11/06
2
+ // This file is released under LGPL V3
3
+ // License text available at https://www.gnu.org/licenses/lgpl-3.0.txt
4
+ import { localizedTranslation } from '@leav/utils';
1
5
  import { useExplorerQuery } from '../../../_gqlTypes';
2
- const _mapping = (data, libraryId) => data.records.list.map(({ whoAmI, properties }) => ({
3
- libraryId,
4
- key: whoAmI.id, // For <KitTable /> only
5
- itemId: whoAmI.id, // For <KitTable /> only
6
- whoAmI: {
7
- label: null,
8
- subLabel: null,
9
- color: null,
10
- preview: null,
11
- ...whoAmI
12
- },
13
- propertiesById: properties.reduce((acc, { attributeId, values }) => ({ ...acc, [attributeId]: values }), {})
14
- }));
15
- export const useExplorerData = (libraryId, attributeIds) => {
16
- const { data, loading, refetch } = useExplorerQuery({ variables: { libraryId, attributeIds } });
6
+ import { useLang } from '../../../hooks';
7
+ const _mapping = (data, libraryId, availableLangs) => {
8
+ const attributes = data.records.list.length
9
+ ? data.records.list[0].properties.reduce((acc, property) => {
10
+ acc[property.attributeId] = {
11
+ ...property.attributeProperties,
12
+ label: localizedTranslation(property.attributeProperties.label, availableLangs)
13
+ };
14
+ return acc;
15
+ }, {})
16
+ : {};
17
+ const records = data.records.list.map(({ whoAmI, properties }) => ({
18
+ libraryId,
19
+ key: whoAmI.id, // For <KitTable /> only
20
+ itemId: whoAmI.id, // For <KitTable /> only
21
+ whoAmI: {
22
+ label: null,
23
+ subLabel: null,
24
+ color: null,
25
+ preview: null,
26
+ ...whoAmI
27
+ },
28
+ propertiesById: properties.reduce((acc, { attributeId, values }) => ({ ...acc, [attributeId]: values }), {})
29
+ }));
17
30
  return {
18
- data: data !== undefined ? _mapping(data, libraryId) : null,
31
+ totalCount: data.records.totalCount ?? 0,
32
+ attributes,
33
+ records
34
+ };
35
+ };
36
+ export const useExplorerData = ({ libraryId, attributeIds, fulltextSearch, sorts, pagination }) => {
37
+ const { lang: availableLangs } = useLang();
38
+ const { data, loading, refetch } = useExplorerQuery({
39
+ variables: {
40
+ libraryId,
41
+ attributeIds,
42
+ pagination,
43
+ searchQuery: fulltextSearch,
44
+ multipleSort: sorts.map(({ order, attributeId }) => ({
45
+ field: attributeId,
46
+ order
47
+ }))
48
+ }
49
+ });
50
+ return {
51
+ data: data !== undefined ? _mapping(data, libraryId, availableLangs) : null,
19
52
  loading,
20
53
  refetch
21
54
  };
@@ -1 +1 @@
1
- {"version":3,"file":"useExplorerData.js","sourceRoot":"","sources":["../../../../src/components/Explorer/_queries/useExplorerData.ts"],"names":[],"mappings":"AAIA,OAAO,EAAgB,gBAAgB,EAAC,MAAM,eAAe,CAAC;AAE9D,MAAM,QAAQ,GAAG,CAAC,IAAmB,EAAE,SAAiB,EAAe,EAAE,CACrE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAC,MAAM,EAAE,UAAU,EAAC,EAAE,EAAE,CAAC,CAAC;IAC7C,SAAS;IACT,GAAG,EAAE,MAAM,CAAC,EAAE,EAAE,wBAAwB;IACxC,MAAM,EAAE,MAAM,CAAC,EAAE,EAAE,wBAAwB;IAC3C,MAAM,EAAE;QACJ,KAAK,EAAE,IAAI;QACX,QAAQ,EAAE,IAAI;QACd,KAAK,EAAE,IAAI;QACX,OAAO,EAAE,IAAI;QACb,GAAG,MAAM;KACZ;IACD,cAAc,EAAE,UAAU,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,EAAC,WAAW,EAAE,MAAM,EAAC,EAAE,EAAE,CAAC,CAAC,EAAC,GAAG,GAAG,EAAE,CAAC,WAAW,CAAC,EAAE,MAAM,EAAC,CAAC,EAAE,EAAE,CAAC;CAC3G,CAAC,CAAC,CAAC;AAER,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,SAAiB,EAAE,YAAsB,EAAE,EAAE;IACzE,MAAM,EAAC,IAAI,EAAE,OAAO,EAAE,OAAO,EAAC,GAAG,gBAAgB,CAAC,EAAC,SAAS,EAAE,EAAC,SAAS,EAAE,YAAY,EAAC,EAAC,CAAC,CAAC;IAE1F,OAAO;QACH,IAAI,EAAE,IAAI,KAAK,SAAS,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI;QAC3D,OAAO;QACP,OAAO;KACV,CAAC;AACN,CAAC,CAAC"}
1
+ {"version":3,"file":"useExplorerData.js","sourceRoot":"","sources":["../../../../src/components/Explorer/_queries/useExplorerData.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,sCAAsC;AACtC,sEAAsE;AACtE,OAAO,EAAC,oBAAoB,EAAC,MAAM,aAAa,CAAC;AAEjD,OAAO,EAA2B,gBAAgB,EAAC,MAAM,eAAe,CAAC;AACzE,OAAO,EAAC,OAAO,EAAC,MAAM,WAAW,CAAC;AAElC,MAAM,QAAQ,GAAG,CAAC,IAAmB,EAAE,SAAiB,EAAE,cAAwB,EAAiB,EAAE;IACjG,MAAM,UAAU,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM;QACvC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,QAAQ,EAAE,EAAE;YACrD,GAAG,CAAC,QAAQ,CAAC,WAAW,CAAC,GAAG;gBACxB,GAAG,QAAQ,CAAC,mBAAmB;gBAC/B,KAAK,EAAE,oBAAoB,CAAC,QAAQ,CAAC,mBAAmB,CAAC,KAAK,EAAE,cAAc,CAAC;aAClF,CAAC;YAEF,OAAO,GAAG,CAAC;QACf,CAAC,EAAE,EAAE,CAAC;QACR,CAAC,CAAC,EAAE,CAAC;IAET,MAAM,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAC,MAAM,EAAE,UAAU,EAAC,EAAE,EAAE,CAAC,CAAC;QAC7D,SAAS;QACT,GAAG,EAAE,MAAM,CAAC,EAAE,EAAE,wBAAwB;QACxC,MAAM,EAAE,MAAM,CAAC,EAAE,EAAE,wBAAwB;QAC3C,MAAM,EAAE;YACJ,KAAK,EAAE,IAAI;YACX,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,IAAI;YACX,OAAO,EAAE,IAAI;YACb,GAAG,MAAM;SACZ;QACD,cAAc,EAAE,UAAU,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,EAAC,WAAW,EAAE,MAAM,EAAC,EAAE,EAAE,CAAC,CAAC,EAAC,GAAG,GAAG,EAAE,CAAC,WAAW,CAAC,EAAE,MAAM,EAAC,CAAC,EAAE,EAAE,CAAC;KAC3G,CAAC,CAAC,CAAC;IAEJ,OAAO;QACH,UAAU,EAAE,IAAI,CAAC,OAAO,CAAC,UAAU,IAAI,CAAC;QACxC,UAAU;QACV,OAAO;KACV,CAAC;AACN,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,EAC5B,SAAS,EACT,YAAY,EACZ,cAAc,EACd,KAAK,EACL,UAAU,EAUb,EAAE,EAAE;IACD,MAAM,EAAC,IAAI,EAAE,cAAc,EAAC,GAAG,OAAO,EAAE,CAAC;IACzC,MAAM,EAAC,IAAI,EAAE,OAAO,EAAE,OAAO,EAAC,GAAG,gBAAgB,CAAC;QAC9C,SAAS,EAAE;YACP,SAAS;YACT,YAAY;YACZ,UAAU;YACV,WAAW,EAAE,cAAc;YAC3B,YAAY,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC,EAAC,KAAK,EAAE,WAAW,EAAC,EAAE,EAAE,CAAC,CAAC;gBAC/C,KAAK,EAAE,WAAW;gBAClB,KAAK;aACR,CAAC,CAAC;SACN;KACJ,CAAC,CAAC;IAEH,OAAO;QACH,IAAI,EAAE,IAAI,KAAK,SAAS,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,EAAE,SAAS,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC,IAAI;QAC3E,OAAO;QACP,OAAO;KACV,CAAC;AACN,CAAC,CAAC"}
@@ -1,11 +1,20 @@
1
- import { PropertyValueFragment, RecordIdentityFragment } from '../../_gqlTypes';
1
+ import { Override } from '@leav/utils';
2
+ import { AttributePropertiesFragment, PropertyValueFragment, RecordIdentityFragment } from '../../_gqlTypes';
2
3
  import { ReactElement } from 'react';
3
- export type ItemWhoAmI = Required<RecordIdentityFragment['whoAmI']>;
4
+ export interface IExplorerData {
5
+ totalCount: number;
6
+ attributes: {
7
+ [attributeId: string]: Override<AttributePropertiesFragment, {
8
+ label: string;
9
+ }>;
10
+ };
11
+ records: IItemData[];
12
+ }
4
13
  export interface IItemData {
5
14
  libraryId: string;
6
15
  key: string;
7
16
  itemId: string;
8
- whoAmI: ItemWhoAmI;
17
+ whoAmI: Required<RecordIdentityFragment['whoAmI']>;
9
18
  propertiesById: {
10
19
  [attributeId: string]: PropertyValueFragment[];
11
20
  };
@@ -16,6 +25,11 @@ export interface IItemAction {
16
25
  label: string;
17
26
  isDanger?: boolean;
18
27
  }
28
+ export interface IPrimaryAction {
29
+ callback: () => void;
30
+ icon: ReactElement;
31
+ label: string;
32
+ }
19
33
  export type ActionHook<T = {}> = {
20
34
  isEnabled: boolean;
21
35
  } & T;
@@ -1,7 +1,5 @@
1
1
  import { Explorer as InternalExplorer } from './Explorer';
2
- import { useEditSettings } from './edit-settings/useEditSettings';
3
- import { EditSettingsContextProvider } from './edit-settings/EditSettingsContextProvider';
4
- import { SidePanel } from './edit-settings/SidePanel';
2
+ import { useEditSettings, SidePanel, EditSettingsContextProvider } from './manage-view-settings';
5
3
  type CompoundedComponent = typeof InternalExplorer & {
6
4
  useEditSettings: typeof useEditSettings;
7
5
  EditSettingsContextProvider: typeof EditSettingsContextProvider;
@@ -2,9 +2,7 @@
2
2
  // This file is released under LGPL V3
3
3
  // License text available at https://www.gnu.org/licenses/lgpl-3.0.txt
4
4
  import { Explorer as InternalExplorer } from './Explorer';
5
- import { useEditSettings } from './edit-settings/useEditSettings';
6
- import { EditSettingsContextProvider } from './edit-settings/EditSettingsContextProvider';
7
- import { SidePanel } from './edit-settings/SidePanel';
5
+ import { useEditSettings, SidePanel, EditSettingsContextProvider } from './manage-view-settings';
8
6
  export const Explorer = InternalExplorer;
9
7
  Explorer.EditSettingsContextProvider = EditSettingsContextProvider;
10
8
  Explorer.useEditSettings = useEditSettings;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/Explorer/index.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,sCAAsC;AACtC,sEAAsE;AACtE,OAAO,EAAC,QAAQ,IAAI,gBAAgB,EAAC,MAAM,YAAY,CAAC;AACxD,OAAO,EAAC,eAAe,EAAC,MAAM,iCAAiC,CAAC;AAChE,OAAO,EAAC,2BAA2B,EAAC,MAAM,6CAA6C,CAAC;AACxF,OAAO,EAAC,SAAS,EAAC,MAAM,2BAA2B,CAAC;AAQpD,MAAM,CAAC,MAAM,QAAQ,GAAG,gBAAkD,CAAC;AAC3E,QAAQ,CAAC,2BAA2B,GAAG,2BAA2B,CAAC;AACnE,QAAQ,CAAC,eAAe,GAAG,eAAe,CAAC;AAC3C,QAAQ,CAAC,iBAAiB,GAAG,SAAS,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/Explorer/index.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,sCAAsC;AACtC,sEAAsE;AACtE,OAAO,EAAC,QAAQ,IAAI,gBAAgB,EAAC,MAAM,YAAY,CAAC;AACxD,OAAO,EAAC,eAAe,EAAE,SAAS,EAAE,2BAA2B,EAAC,MAAM,wBAAwB,CAAC;AAQ/F,MAAM,CAAC,MAAM,QAAQ,GAAG,gBAAkD,CAAC;AAC3E,QAAQ,CAAC,2BAA2B,GAAG,2BAA2B,CAAC;AACnE,QAAQ,CAAC,eAAe,GAAG,eAAe,CAAC;AAC3C,QAAQ,CAAC,iBAAiB,GAAG,SAAS,CAAC"}
@@ -1,11 +1,12 @@
1
1
  import { FunctionComponent, ReactNode } from 'react';
2
2
  interface IColumnItemProps {
3
+ itemId: string;
3
4
  dragHandler?: ReactNode;
4
5
  visible: boolean;
5
6
  title: string;
6
7
  onVisibilityClick?: () => void;
7
- disabled?: boolean;
8
8
  value?: string;
9
+ locked?: boolean;
9
10
  }
10
11
  export declare const ColumnItem: FunctionComponent<IColumnItemProps>;
11
12
  export {};
@@ -0,0 +1,85 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Copyright LEAV Solutions 2017 until 2023/11/05, Copyright Aristid from 2023/11/06
3
+ // This file is released under LGPL V3
4
+ // License text available at https://www.gnu.org/licenses/lgpl-3.0.txt
5
+ import { KitTypography } from 'aristid-ds';
6
+ import { FaEye, FaEyeSlash, FaLock } from 'react-icons/fa';
7
+ import styled from 'styled-components';
8
+ import { useSortable } from '@dnd-kit/sortable';
9
+ import { CSS } from '@dnd-kit/utilities';
10
+ import { useSharedTranslation } from '../../../../hooks/useSharedTranslation';
11
+ const StyledValue = styled(KitTypography.Text) `
12
+ color: var(--general-utilities-disabled);
13
+ `;
14
+ const StyledConfigurationItem = styled.li `
15
+ color: var(--general-utilities-text-primary);
16
+ display: flex;
17
+ width: 100%;
18
+ height: 40px;
19
+ padding: 0 calc(var(--general-spacing-xs) * 1px);
20
+ align-items: center;
21
+ gap: calc(var(--general-spacing-xs) * 1px);
22
+ border-radius: calc(var(--general-spacing-xs) * 1px);
23
+ text-align: left;
24
+
25
+ &:first-child {
26
+ margin-top: calc(var(--general-spacing-xs) * 1px);
27
+ }
28
+
29
+ &:hover {
30
+ background: var(--general-utilities-main-light);
31
+
32
+ ${StyledValue} {
33
+ color: var(--general-utilities-text-primary);
34
+ }
35
+ }
36
+
37
+ .title {
38
+ flex: 1 1 auto;
39
+ }
40
+
41
+ > svg {
42
+ flex: 0 0 calc(var(--general-spacing-s) * 1px);
43
+ }
44
+
45
+ > button {
46
+ border: none;
47
+ background: transparent;
48
+ padding: 0;
49
+ &:not([disabled]) {
50
+ cursor: pointer;
51
+ }
52
+ }
53
+ `;
54
+ const StyledFaEye = styled(FaEye) `
55
+ display: flex;
56
+ color: currentColor;
57
+ `;
58
+ const StyledEyeSlash = styled(FaEyeSlash) `
59
+ display: flex;
60
+ color: var(--general-utilities-disabled);
61
+ `;
62
+ const StyledLocked = styled(FaLock) `
63
+ display: flex;
64
+ color: var(--general-utilities-disabled);
65
+ `;
66
+ const StyledDragHandle = styled.span `
67
+ display: flex;
68
+ cursor: ${props => (props.$isDragging ? 'grabbing' : 'grab')};
69
+ `;
70
+ const StyledEmptyIcon = styled.div `
71
+ width: calc(var(--general-spacing-s) * 1px);
72
+ `;
73
+ export const ColumnItem = ({ itemId, dragHandler, title, visible, onVisibilityClick, locked = false }) => {
74
+ const { t } = useSharedTranslation();
75
+ const { attributes, listeners, setNodeRef, transform, transition, isDragging } = useSortable({ id: itemId });
76
+ const style = {
77
+ transform: CSS.Transform.toString(transform),
78
+ transition
79
+ };
80
+ const _handleClick = () => onVisibilityClick?.();
81
+ const visibilityButtonLabel = visible ? t('explorer.hide') : t('explorer.show');
82
+ const visibilityIcon = locked ? _jsx(StyledLocked, {}) : visible ? _jsx(StyledFaEye, {}) : _jsx(StyledEyeSlash, {});
83
+ return (_jsxs(StyledConfigurationItem, { ref: setNodeRef, style: style, children: [dragHandler ? (_jsx(StyledDragHandle, { ...attributes, ...listeners, "$isDragging": isDragging, children: dragHandler })) : (_jsx(StyledEmptyIcon, {})), _jsx(KitTypography.Text, { size: "fontSize5", ellipsis: true, className: "title", children: title }), _jsx("button", { disabled: locked, onClick: _handleClick, title: visibilityButtonLabel, "aria-label": visibilityButtonLabel, children: visibilityIcon })] }));
84
+ };
85
+ //# sourceMappingURL=ColumnItem.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ColumnItem.js","sourceRoot":"","sources":["../../../../../src/components/Explorer/manage-view-settings/_shared/ColumnItem.tsx"],"names":[],"mappings":";AAAA,oFAAoF;AACpF,sCAAsC;AACtC,sEAAsE;AACtE,OAAO,EAAC,aAAa,EAAC,MAAM,YAAY,CAAC;AAEzC,OAAO,EAAC,KAAK,EAAE,UAAU,EAAE,MAAM,EAAC,MAAM,gBAAgB,CAAC;AACzD,OAAO,MAAM,MAAM,mBAAmB,CAAC;AACvC,OAAO,EAAC,WAAW,EAAC,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAC,GAAG,EAAC,MAAM,oBAAoB,CAAC;AACvC,OAAO,EAAC,oBAAoB,EAAC,MAAM,gCAAgC,CAAC;AAEpE,MAAM,WAAW,GAAG,MAAM,CAAC,aAAa,CAAC,IAAI,CAAC,CAAA;;CAE7C,CAAC;AAEF,MAAM,uBAAuB,GAAG,MAAM,CAAC,EAAE,CAAA;;;;;;;;;;;;;;;;;;UAkB/B,WAAW;;;;;;;;;;;;;;;;;;;;;CAqBpB,CAAC;AAEF,MAAM,WAAW,GAAG,MAAM,CAAC,KAAK,CAAC,CAAA;;;CAGhC,CAAC;AAEF,MAAM,cAAc,GAAG,MAAM,CAAC,UAAU,CAAC,CAAA;;;CAGxC,CAAC;AAEF,MAAM,YAAY,GAAG,MAAM,CAAC,MAAM,CAAC,CAAA;;;CAGlC,CAAC;AAEF,MAAM,gBAAgB,GAAG,MAAM,CAAC,IAAI,CAAwB;;cAE9C,KAAK,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,MAAM,CAAC;CAC/D,CAAC;AAEF,MAAM,eAAe,GAAG,MAAM,CAAC,GAAG,CAAA;;CAEjC,CAAC;AAYF,MAAM,CAAC,MAAM,UAAU,GAAwC,CAAC,EAC5D,MAAM,EACN,WAAW,EACX,KAAK,EACL,OAAO,EACP,iBAAiB,EACjB,MAAM,GAAG,KAAK,EACjB,EAAE,EAAE;IACD,MAAM,EAAC,CAAC,EAAC,GAAG,oBAAoB,EAAE,CAAC;IACnC,MAAM,EAAC,UAAU,EAAE,SAAS,EAAE,UAAU,EAAE,SAAS,EAAE,UAAU,EAAE,UAAU,EAAC,GAAG,WAAW,CAAC,EAAC,EAAE,EAAE,MAAM,EAAC,CAAC,CAAC;IACzG,MAAM,KAAK,GAAG;QACV,SAAS,EAAE,GAAG,CAAC,SAAS,CAAC,QAAQ,CAAC,SAAS,CAAC;QAC5C,UAAU;KACb,CAAC;IAEF,MAAM,YAAY,GAAG,GAAG,EAAE,CAAC,iBAAiB,EAAE,EAAE,CAAC;IAEjD,MAAM,qBAAqB,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,eAAe,CAAC,CAAC;IAEhF,MAAM,cAAc,GAAG,MAAM,CAAC,CAAC,CAAC,KAAC,YAAY,KAAG,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,KAAC,WAAW,KAAG,CAAC,CAAC,CAAC,KAAC,cAAc,KAAG,CAAC;IAElG,OAAO,CACH,MAAC,uBAAuB,IAAC,GAAG,EAAE,UAAU,EAAE,KAAK,EAAE,KAAK,aACjD,WAAW,CAAC,CAAC,CAAC,CACX,KAAC,gBAAgB,OAAK,UAAU,KAAM,SAAS,iBAAe,UAAU,YACnE,WAAW,GACG,CACtB,CAAC,CAAC,CAAC,CACA,KAAC,eAAe,KAAG,CACtB,EACD,KAAC,aAAa,CAAC,IAAI,IAAC,IAAI,EAAC,WAAW,EAAC,QAAQ,QAAC,SAAS,EAAC,OAAO,YAC1D,KAAK,GACW,EACrB,iBACI,QAAQ,EAAE,MAAM,EAChB,OAAO,EAAE,YAAY,EACrB,KAAK,EAAE,qBAAqB,gBAChB,qBAAqB,YAEhC,cAAc,GACV,IACa,CAC7B,CAAC;AACN,CAAC,CAAC"}
@@ -0,0 +1,11 @@
1
+ import { ChangeEvent } from 'react';
2
+ import { AttributeDetailsFragment } from '../../../../_gqlTypes';
3
+ interface IColumnsById {
4
+ [attributeId: string]: AttributeDetailsFragment;
5
+ }
6
+ export declare const useAttributeDetailsData: (libraryId: string) => {
7
+ attributeDetailsById: IColumnsById;
8
+ searchFilteredColumnsIds: string[];
9
+ onSearchChanged: (event: ChangeEvent<HTMLInputElement>) => void;
10
+ };
11
+ export {};
@@ -0,0 +1,61 @@
1
+ // Copyright LEAV Solutions 2017 until 2023/11/05, Copyright Aristid from 2023/11/06
2
+ // This file is released under LGPL V3
3
+ // License text available at https://www.gnu.org/licenses/lgpl-3.0.txt
4
+ import { useMemo, useState } from 'react';
5
+ import { useDebouncedValue } from '../../../../hooks/useDebouncedValue';
6
+ import { useGetAttributesByLibQuery } from '../../../../_gqlTypes';
7
+ import { localizedTranslation } from '@leav/utils';
8
+ import { useLang } from '../../../../hooks';
9
+ const _mapping = (data, availableLanguages) => data?.attributes?.list.reduce((acc, attribute) => {
10
+ acc[attribute.id] = {
11
+ ...attribute,
12
+ label: localizedTranslation(attribute.label, availableLanguages)
13
+ };
14
+ return acc;
15
+ }, {}) ?? {};
16
+ export const useAttributeDetailsData = (libraryId) => {
17
+ const [searchInput, setSearchInput] = useState('');
18
+ const debouncedSearchInput = useDebouncedValue(searchInput, 300);
19
+ const { lang: availableLanguages } = useLang();
20
+ const { data } = useGetAttributesByLibQuery({
21
+ variables: {
22
+ library: libraryId
23
+ }
24
+ });
25
+ const attributeDetailsById = _mapping(data, availableLanguages);
26
+ const searchFilteredColumns = useMemo(() => {
27
+ const columnIds = Object.keys(attributeDetailsById);
28
+ if (columnIds.length === 0) {
29
+ return {};
30
+ }
31
+ if (debouncedSearchInput === '') {
32
+ return attributeDetailsById;
33
+ }
34
+ return columnIds.reduce((acc, columnId) => {
35
+ if (attributeDetailsById[columnId].label.includes(debouncedSearchInput) ||
36
+ columnId.includes(debouncedSearchInput)) {
37
+ acc[columnId] = attributeDetailsById[columnId];
38
+ }
39
+ return acc;
40
+ }, {});
41
+ }, [debouncedSearchInput, attributeDetailsById]);
42
+ const searchFilteredColumnsIds = Object.keys(searchFilteredColumns);
43
+ const onSearchChanged = (event) => {
44
+ const shouldIgnoreInputChange = event.target.value.length < 3 && debouncedSearchInput.length < 3;
45
+ if (shouldIgnoreInputChange) {
46
+ return;
47
+ }
48
+ setSearchInput(() => {
49
+ if (event.target.value.length > 2) {
50
+ return event.target.value;
51
+ }
52
+ return '';
53
+ });
54
+ };
55
+ return {
56
+ attributeDetailsById,
57
+ searchFilteredColumnsIds,
58
+ onSearchChanged
59
+ };
60
+ };
61
+ //# sourceMappingURL=useAttributeDetailsData.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useAttributeDetailsData.js","sourceRoot":"","sources":["../../../../../src/components/Explorer/manage-view-settings/_shared/useAttributeDetailsData.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,6 @@
1
+ import { FunctionComponent } from 'react';
2
+ interface IConfigureDisplayProps {
3
+ libraryId: string;
4
+ }
5
+ export declare const ConfigureDisplay: FunctionComponent<IConfigureDisplayProps>;
6
+ export {};
@@ -0,0 +1,28 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import styled from 'styled-components';
3
+ import { ViewSettingsActionTypes } from './../store-view-settings/viewSettingsReducer';
4
+ import { useViewSettingsContext } from './../store-view-settings/useViewSettingsContext';
5
+ import { SelectVisibleAttributes } from './attributes/SelectVisibleAttributes';
6
+ import { SelectViewType } from './view-type/SelectViewType';
7
+ const StyledWrapperDiv = styled.div `
8
+ display: flex;
9
+ flex-direction: column;
10
+ gap: calc(var(--general-spacing-l) * 1px);
11
+
12
+ .ant-radio-wrapper {
13
+ padding: calc(var(--general-spacing-xs) * 1px);
14
+ }
15
+ `;
16
+ export const ConfigureDisplay = ({ libraryId }) => {
17
+ const { view, dispatch } = useViewSettingsContext();
18
+ const _handleViewTypeChange = event => {
19
+ dispatch({
20
+ type: ViewSettingsActionTypes.CHANGE_VIEW_TYPE,
21
+ payload: {
22
+ viewType: event.target.value
23
+ }
24
+ });
25
+ };
26
+ return (_jsxs(StyledWrapperDiv, { children: [_jsx(SelectViewType, { value: view.viewType, onChange: _handleViewTypeChange }), view.viewType === 'table' && _jsx(SelectVisibleAttributes, { libraryId: libraryId })] }));
27
+ };
28
+ //# sourceMappingURL=ConfigureDisplay.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ConfigureDisplay.js","sourceRoot":"","sources":["../../../../../src/components/Explorer/manage-view-settings/configure-display/ConfigureDisplay.tsx"],"names":[],"mappings":";AAIA,OAAO,MAAM,MAAM,mBAAmB,CAAC;AAEvC,OAAO,EAAC,uBAAuB,EAAC,MAAM,8CAA8C,CAAC;AACrF,OAAO,EAAC,sBAAsB,EAAC,MAAM,iDAAiD,CAAC;AACvF,OAAO,EAAC,uBAAuB,EAAC,MAAM,sCAAsC,CAAC;AAC7E,OAAO,EAAC,cAAc,EAAC,MAAM,4BAA4B,CAAC;AAE1D,MAAM,gBAAgB,GAAG,MAAM,CAAC,GAAG,CAAA;;;;;;;;CAQlC,CAAC;AAMF,MAAM,CAAC,MAAM,gBAAgB,GAA8C,CAAC,EAAC,SAAS,EAAC,EAAE,EAAE;IACvF,MAAM,EAAC,IAAI,EAAE,QAAQ,EAAC,GAAG,sBAAsB,EAAE,CAAC;IAElD,MAAM,qBAAqB,GAAgC,KAAK,CAAC,EAAE;QAC/D,QAAQ,CAAC;YACL,IAAI,EAAE,uBAAuB,CAAC,gBAAgB;YAC9C,OAAO,EAAE;gBACL,QAAQ,EAAE,KAAK,CAAC,MAAM,CAAC,KAAK;aAC/B;SACJ,CAAC,CAAC;IACP,CAAC,CAAC;IAEF,OAAO,CACH,MAAC,gBAAgB,eACb,KAAC,cAAc,IAAC,KAAK,EAAE,IAAI,CAAC,QAAQ,EAAE,QAAQ,EAAE,qBAAqB,GAAI,EACxE,IAAI,CAAC,QAAQ,KAAK,OAAO,IAAI,KAAC,uBAAuB,IAAC,SAAS,EAAE,SAAS,GAAI,IAChE,CACtB,CAAC;AACN,CAAC,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { FunctionComponent } from 'react';
2
+ interface ISelectVisibleAttributesProps {
3
+ libraryId: string;
4
+ }
5
+ export declare const SelectVisibleAttributes: FunctionComponent<ISelectVisibleAttributesProps>;
6
+ export {};