@leav/ui 0.3.6-08b68d2 → 0.3.6-09fc47b

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 (198) hide show
  1. package/dist/_gqlTypes/index.d.ts +87 -4
  2. package/dist/_gqlTypes/index.js +74 -3
  3. package/dist/_gqlTypes/index.js.map +1 -1
  4. package/dist/_queries/records/recordFormAttributeFragment.js +1 -0
  5. package/dist/_queries/records/recordFormAttributeFragment.js.map +1 -1
  6. package/dist/_utils/index.js +1 -1
  7. package/dist/_utils/index.js.map +1 -1
  8. package/dist/components/CreateDirectory/CreateDirectory.js +0 -2
  9. package/dist/components/CreateDirectory/CreateDirectory.js.map +1 -1
  10. package/dist/components/EditApplication/EditApplicationInfo/EditApplicationInfoForm/EditApplicationInfoForm.js.map +1 -1
  11. package/dist/components/EditTreeModal/EditTree/EditTreeInfo/EditTreeInfoForm/EditTreeInfoForm.d.ts +1 -1
  12. package/dist/components/EditTreeModal/EditTree/EditTreeInfo/EditTreeInfoForm/EditTreeInfoForm.js.map +1 -1
  13. package/dist/components/Explorer/DataView.d.ts +6 -3
  14. package/dist/components/Explorer/DataView.js +21 -11
  15. package/dist/components/Explorer/DataView.js.map +1 -1
  16. package/dist/components/Explorer/Explorer.d.ts +17 -2
  17. package/dist/components/Explorer/Explorer.js +63 -30
  18. package/dist/components/Explorer/Explorer.js.map +1 -1
  19. package/dist/components/Explorer/ExplorerToolbar.d.ts +2 -1
  20. package/dist/components/Explorer/ExplorerToolbar.js +19 -11
  21. package/dist/components/Explorer/ExplorerToolbar.js.map +1 -1
  22. package/dist/components/Explorer/TableCell.js +4 -4
  23. package/dist/components/Explorer/TableCell.js.map +1 -1
  24. package/dist/components/Explorer/_queries/useExplorerData.d.ts +1 -0
  25. package/dist/components/Explorer/_queries/useExplorerData.js +9 -1
  26. package/dist/components/Explorer/_queries/useExplorerData.js.map +1 -1
  27. package/dist/components/Explorer/_types.d.ts +22 -7
  28. package/dist/components/Explorer/_types.js.map +1 -1
  29. package/dist/components/Explorer/{useEditAction.d.ts → actions-item/useEditItemAction.d.ts} +4 -4
  30. package/dist/components/Explorer/{useEditAction.js → actions-item/useEditItemAction.js} +8 -8
  31. package/dist/components/Explorer/actions-item/useEditItemAction.js.map +1 -0
  32. package/dist/components/Explorer/{useRemoveAction.d.ts → actions-item/useRemoveItemAction.d.ts} +4 -4
  33. package/dist/components/Explorer/{useRemoveAction.js → actions-item/useRemoveItemAction.js} +9 -9
  34. package/dist/components/Explorer/actions-item/useRemoveItemAction.js.map +1 -0
  35. package/dist/components/Explorer/{useDeactivateMassAction.d.ts → actions-mass/useDeactivateMassAction.d.ts} +4 -4
  36. package/dist/components/Explorer/{useDeactivateMassAction.js → actions-mass/useDeactivateMassAction.js} +4 -4
  37. package/dist/components/Explorer/actions-mass/useDeactivateMassAction.js.map +1 -0
  38. package/dist/components/Explorer/actions-mass/useDeleteLinkValues.d.ts +18 -0
  39. package/dist/components/Explorer/actions-mass/useDeleteLinkValues.js +84 -0
  40. package/dist/components/Explorer/actions-mass/useDeleteLinkValues.js.map +1 -0
  41. package/dist/components/Explorer/{useMassActions.d.ts → actions-mass/useMassActions.d.ts} +3 -3
  42. package/dist/components/Explorer/{useMassActions.js → actions-mass/useMassActions.js} +7 -7
  43. package/dist/components/Explorer/actions-mass/useMassActions.js.map +1 -0
  44. package/dist/components/Explorer/{useCreateAction.d.ts → actions-primary/useCreatePrimaryAction.d.ts} +8 -6
  45. package/dist/components/Explorer/{useCreateAction.js → actions-primary/useCreatePrimaryAction.js} +13 -11
  46. package/dist/components/Explorer/actions-primary/useCreatePrimaryAction.js.map +1 -0
  47. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.d.ts +17 -0
  48. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js +38 -0
  49. package/dist/components/Explorer/actions-primary/useLinkPrimaryAction.js.map +1 -0
  50. package/dist/components/Explorer/actions-primary/usePrimaryActions.d.ts +17 -0
  51. package/dist/components/Explorer/actions-primary/usePrimaryActions.js +27 -0
  52. package/dist/components/Explorer/actions-primary/usePrimaryActions.js.map +1 -0
  53. package/dist/components/Explorer/link-item/LinkModal.d.ts +7 -0
  54. package/dist/components/Explorer/link-item/LinkModal.js +81 -0
  55. package/dist/components/Explorer/link-item/LinkModal.js.map +1 -0
  56. package/dist/components/Explorer/link-item/useLinkMassAction.d.ts +24 -0
  57. package/dist/components/Explorer/link-item/useLinkMassAction.js +57 -0
  58. package/dist/components/Explorer/link-item/useLinkMassAction.js.map +1 -0
  59. package/dist/components/Explorer/list-saved-views/SavedViews.d.ts +2 -0
  60. package/dist/components/Explorer/list-saved-views/SavedViews.js +74 -0
  61. package/dist/components/Explorer/list-saved-views/SavedViews.js.map +1 -0
  62. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js +8 -1
  63. package/dist/components/Explorer/manage-view-settings/_shared/CommonFilterItem.js.map +1 -1
  64. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.d.ts +17 -0
  65. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js +93 -0
  66. package/dist/components/Explorer/manage-view-settings/_shared/useTransformFilters.js.map +1 -0
  67. package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.js +1 -2
  68. package/dist/components/Explorer/manage-view-settings/configure-display/attributes/SelectVisibleAttributes.js.map +1 -1
  69. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.js +2 -2
  70. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/BooleanAttributeDropdown.js.map +1 -1
  71. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.js +2 -2
  72. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ColorAttributeDropDown.js.map +1 -1
  73. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.js +2 -2
  74. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateAttributeDropDown.js.map +1 -1
  75. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.js +2 -2
  76. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/DateRangeAttributeDropDown.js.map +1 -1
  77. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.js +2 -2
  78. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/EncryptedAttributeDropDown.js.map +1 -1
  79. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.js +2 -2
  80. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/ExtendedAttributeDropDown.js.map +1 -1
  81. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js +6 -1
  82. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropDown.js.map +1 -1
  83. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.d.ts +2 -1
  84. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js +4 -3
  85. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/FilterDropdownContent.js.map +1 -1
  86. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/LinkAttributeDropdown.js +4 -4
  87. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/LinkAttributeDropdown.js.map +1 -1
  88. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.js +2 -2
  89. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/NumericAttributeDropDown.js.map +1 -1
  90. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.js +2 -2
  91. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/TextAttributeDropDown.js.map +1 -1
  92. package/dist/components/Explorer/manage-view-settings/filter-items/filter-type/_types.d.ts +3 -0
  93. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.d.ts +3 -3
  94. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.js +2 -2
  95. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContext.js.map +1 -1
  96. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.d.ts +1 -0
  97. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.js +2 -2
  98. package/dist/components/Explorer/manage-view-settings/open-view-settings/EditSettingsContextProvider.js.map +1 -1
  99. package/dist/components/Explorer/manage-view-settings/open-view-settings/SidePanel.js +3 -3
  100. package/dist/components/Explorer/manage-view-settings/open-view-settings/SidePanel.js.map +1 -1
  101. package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.d.ts +9 -2
  102. package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js +34 -7
  103. package/dist/components/Explorer/manage-view-settings/open-view-settings/useOpenViewSettings.js.map +1 -1
  104. package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js +9 -50
  105. package/dist/components/Explorer/manage-view-settings/router-menu/SettingsPanel.js.map +1 -1
  106. package/dist/components/Explorer/manage-view-settings/save-view/SaveViewModal.d.ts +8 -0
  107. package/dist/components/Explorer/manage-view-settings/save-view/SaveViewModal.js +44 -0
  108. package/dist/components/Explorer/manage-view-settings/save-view/SaveViewModal.js.map +1 -0
  109. package/dist/components/Explorer/manage-view-settings/save-view/ViewActionsButtons.d.ts +1 -0
  110. package/dist/components/Explorer/manage-view-settings/save-view/ViewActionsButtons.js +22 -0
  111. package/dist/components/Explorer/manage-view-settings/save-view/ViewActionsButtons.js.map +1 -0
  112. package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.d.ts +3 -0
  113. package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js +24 -0
  114. package/dist/components/Explorer/manage-view-settings/save-view/prepareViewForRequest.js.map +1 -0
  115. package/dist/components/Explorer/manage-view-settings/save-view/useCreateNewView.d.ts +3 -0
  116. package/dist/components/Explorer/manage-view-settings/save-view/useCreateNewView.js +52 -0
  117. package/dist/components/Explorer/manage-view-settings/save-view/useCreateNewView.js.map +1 -0
  118. package/dist/components/Explorer/manage-view-settings/save-view/useResetView.d.ts +3 -0
  119. package/dist/components/Explorer/manage-view-settings/save-view/useResetView.js +20 -0
  120. package/dist/components/Explorer/manage-view-settings/save-view/useResetView.js.map +1 -0
  121. package/dist/components/Explorer/manage-view-settings/save-view/useShareView.d.ts +3 -0
  122. package/dist/components/Explorer/manage-view-settings/save-view/useShareView.js +64 -0
  123. package/dist/components/Explorer/manage-view-settings/save-view/useShareView.js.map +1 -0
  124. package/dist/components/Explorer/manage-view-settings/save-view/useUpdateView.d.ts +3 -0
  125. package/dist/components/Explorer/manage-view-settings/save-view/useUpdateView.js +62 -0
  126. package/dist/components/Explorer/manage-view-settings/save-view/useUpdateView.js.map +1 -0
  127. package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js +7 -9
  128. package/dist/components/Explorer/manage-view-settings/sort-items/SortItems.js.map +1 -1
  129. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js +10 -0
  130. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsInitialState.js.map +1 -1
  131. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.d.ts +20 -4
  132. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js +63 -14
  133. package/dist/components/Explorer/manage-view-settings/store-view-settings/viewSettingsReducer.js.map +1 -1
  134. package/dist/components/Explorer/useColumnWidth.d.ts +2 -0
  135. package/dist/components/Explorer/useColumnWidth.js +3 -2
  136. package/dist/components/Explorer/useColumnWidth.js.map +1 -1
  137. package/dist/components/Explorer/useLoadView.d.ts +3 -0
  138. package/dist/components/Explorer/useLoadView.js +81 -0
  139. package/dist/components/Explorer/useLoadView.js.map +1 -0
  140. package/dist/components/Explorer/useSearchInput.js +2 -1
  141. package/dist/components/Explorer/useSearchInput.js.map +1 -1
  142. package/dist/components/Explorer/useViewSettingsReducer.js +33 -112
  143. package/dist/components/Explorer/useViewSettingsReducer.js.map +1 -1
  144. package/dist/components/ImportModal/ImportModalSelectFileStep/ImportModalSelectFileStep.js +1 -2
  145. package/dist/components/ImportModal/ImportModalSelectFileStep/ImportModalSelectFileStep.js.map +1 -1
  146. package/dist/components/LibraryItemsList/DisplayOptions/DisplayOptions.js.map +1 -1
  147. package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/StandardCell/StandardCell.js +2 -2
  148. package/dist/components/LibraryItemsList/LibraryItemsListTable/Cell/StandardCell/StandardCell.js.map +1 -1
  149. package/dist/components/LibraryItemsList/MenuView/MenuView.js +1 -1
  150. package/dist/components/LibraryItemsList/MenuView/MenuView.js.map +1 -1
  151. package/dist/components/RecordEdition/EditRecord/EditRecord.js +26 -22
  152. package/dist/components/RecordEdition/EditRecord/EditRecord.js.map +1 -1
  153. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.d.ts +2 -1
  154. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js +2 -2
  155. package/dist/components/RecordEdition/EditRecordContent/EditRecordContent.js.map +1 -1
  156. package/dist/components/RecordEdition/EditRecordContent/_types.d.ts +7 -1
  157. package/dist/components/RecordEdition/EditRecordContent/_types.js.map +1 -1
  158. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.d.ts +5 -0
  159. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js +28 -0
  160. package/dist/components/RecordEdition/EditRecordContent/hooks/useCreateRecordMutation.js.map +1 -0
  161. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js +7 -2
  162. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardField.js.map +1 -1
  163. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSBooleanWrapper.js.map +1 -1
  164. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js +4 -6
  165. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSColorPickerWrapper.js.map +1 -1
  166. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js +1 -1
  167. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSInputWrapper.js.map +1 -1
  168. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js +1 -2
  169. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRangePickerWrapper.js.map +1 -1
  170. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js +1 -1
  171. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/StandardFieldValue/DSRichTextWrapper.js.map +1 -1
  172. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.js +2 -1
  173. package/dist/components/RecordEdition/EditRecordContent/uiElements/StandardField/useGetPresentationValues.js.map +1 -1
  174. package/dist/components/RecordEdition/EditRecordSidebar/AttributeSummary/useAttributeInformations.js +1 -1
  175. package/dist/components/RecordEdition/EditRecordSidebar/AttributeSummary/useAttributeInformations.js.map +1 -1
  176. package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js +8 -1
  177. package/dist/components/RecordEdition/EditRecordSidebar/EditRecordSidebar.js.map +1 -1
  178. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.d.ts +1 -1
  179. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.js +7 -9
  180. package/dist/components/RecordEdition/EditRecordSidebar/RecordSummary/RecordSummary.js.map +1 -1
  181. package/dist/components/RecordEdition/EditRecordSidebar/ValuesSummary/ValuesSummary.js +29 -14
  182. package/dist/components/RecordEdition/EditRecordSidebar/ValuesSummary/ValuesSummary.js.map +1 -1
  183. package/dist/hooks/useExecuteSaveViewMutation/useExecuteSaveViewMutation.js +2 -1
  184. package/dist/hooks/useExecuteSaveViewMutation/useExecuteSaveViewMutation.js.map +1 -1
  185. package/dist/hooks/useGetRecordValuesQuery/useGetRecordValuesQuery.d.ts +1 -1
  186. package/dist/hooks/useGetRecordValuesQuery/useGetRecordValuesQuery.js +2 -2
  187. package/dist/hooks/useGetRecordValuesQuery/useGetRecordValuesQuery.js.map +1 -1
  188. package/dist/locales/en/shared.json +23 -4
  189. package/dist/locales/fr/shared.json +25 -6
  190. package/package.json +5 -5
  191. package/dist/components/Explorer/useCreateAction.js.map +0 -1
  192. package/dist/components/Explorer/useDeactivateMassAction.js.map +0 -1
  193. package/dist/components/Explorer/useEditAction.js.map +0 -1
  194. package/dist/components/Explorer/useMassActions.js.map +0 -1
  195. package/dist/components/Explorer/usePrimaryActions.d.ts +0 -12
  196. package/dist/components/Explorer/usePrimaryActions.js +0 -28
  197. package/dist/components/Explorer/usePrimaryActions.js.map +0 -1
  198. package/dist/components/Explorer/useRemoveAction.js.map +0 -1
@@ -1,8 +1,9 @@
1
1
  import { Override } from '@leav/utils';
2
- import { AttributeFormat, AttributePropertiesFragment, AttributeType, PropertyValueFragment, RecordFilterCondition, RecordFilterInput, RecordIdentityFragment } from '../../_gqlTypes';
2
+ import { AttributeFormat, AttributePropertiesFragment, AttributeType, PropertyValueFragment, RecordFilterCondition, RecordFilterInput, RecordIdentityFragment, ViewDetailsFilterFragment } from '../../_gqlTypes';
3
3
  import { ReactElement } from 'react';
4
4
  import { IViewSettingsState } from './manage-view-settings';
5
5
  import { ThroughConditionFilter } from '../../types/search';
6
+ import { IView } from '../../types';
6
7
  export interface IExplorerData {
7
8
  totalCount: number;
8
9
  attributes: {
@@ -29,6 +30,7 @@ export interface IItemAction {
29
30
  callback: (item: IItemData) => void;
30
31
  icon: ReactElement;
31
32
  label: string;
33
+ iconOnly?: boolean;
32
34
  isDanger?: boolean;
33
35
  disabled?: boolean;
34
36
  }
@@ -43,7 +45,7 @@ export interface IMassActions {
43
45
  icon: ReactElement;
44
46
  label: string;
45
47
  }
46
- export type ActionHook<T = {}> = {
48
+ export type FeatureHook<T = {}> = {
47
49
  isEnabled: boolean;
48
50
  } & T;
49
51
  interface IExplorerFilterBaseAttribute {
@@ -85,11 +87,7 @@ export interface IFilterDropDownProps {
85
87
  filter: ExplorerFilter;
86
88
  }
87
89
  export type DefaultViewSettings = Override<Partial<IViewSettingsState>, {
88
- filters?: Array<{
89
- field: string;
90
- condition: RecordFilterCondition;
91
- value: string | null;
92
- }>;
90
+ filters?: ExplorerFilter[];
93
91
  }>;
94
92
  export interface IEntrypointTree {
95
93
  type: 'tree';
@@ -106,5 +104,22 @@ export interface IEntrypointLink {
106
104
  parentRecordId: string;
107
105
  linkAttributeId: string;
108
106
  }
107
+ export type ValidFieldFilter = Override<ViewDetailsFilterFragment, {
108
+ field: NonNullable<ViewDetailsFilterFragment['field']>;
109
+ condition: NonNullable<ViewDetailsFilterFragment['condition']>;
110
+ }>;
111
+ export type ValidFieldFilterThrough = Override<ValidFieldFilter, {
112
+ condition: ThroughConditionFilter.THROUGH;
113
+ }> & {
114
+ subField: NonNullable<ViewDetailsFilterFragment['field']>;
115
+ subCondition?: ViewDetailsFilterFragment['condition'];
116
+ };
117
+ export type validFilter = ValidFieldFilter | ValidFieldFilterThrough;
109
118
  export type Entrypoint = IEntrypointTree | IEntrypointLibrary | IEntrypointLink;
119
+ export interface IUserView extends Pick<IView, 'shared' | 'display' | 'sort' | 'attributes'> {
120
+ label: Record<string, string>;
121
+ id: IView['id'] | null;
122
+ filters: validFilter[];
123
+ ownerId: string | null;
124
+ }
110
125
  export {};
@@ -1 +1 @@
1
- {"version":3,"file":"_types.js","sourceRoot":"","sources":["../../../src/components/Explorer/_types.ts"],"names":[],"mappings":"AAIA,OAAO,EAGH,aAAa,EAKhB,MAAM,eAAe,CAAC;AAGvB,OAAO,EAAC,sBAAsB,EAAC,MAAM,kBAAkB,CAAC;AAuFxD,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,MAAsB,EAAqC,EAAE,CAClG,CAAC,aAAa,CAAC,MAAM,EAAE,aAAa,CAAC,QAAQ,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;AAEnF,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,MAAsB,EAAiC,EAAE,CAC1F,CAAC,aAAa,CAAC,WAAW,EAAE,aAAa,CAAC,aAAa,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC;IACxF,MAAM,CAAC,SAAS,KAAK,sBAAsB,CAAC,OAAO,CAAC;AAExD,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,MAAsB,EAAoC,EAAE,CAChG,CAAC,aAAa,CAAC,WAAW,EAAE,aAAa,CAAC,aAAa,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC;IACxF,MAAM,CAAC,SAAS,KAAK,sBAAsB,CAAC,OAAO,CAAC"}
1
+ {"version":3,"file":"_types.js","sourceRoot":"","sources":["../../../src/components/Explorer/_types.ts"],"names":[],"mappings":"AAIA,OAAO,EAGH,aAAa,EAMhB,MAAM,eAAe,CAAC;AAGvB,OAAO,EAAC,sBAAsB,EAAC,MAAM,kBAAkB,CAAC;AAyFxD,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,MAAsB,EAAqC,EAAE,CAClG,CAAC,aAAa,CAAC,MAAM,EAAE,aAAa,CAAC,QAAQ,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC;AAEnF,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,MAAsB,EAAiC,EAAE,CAC1F,CAAC,aAAa,CAAC,WAAW,EAAE,aAAa,CAAC,aAAa,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC;IACxF,MAAM,CAAC,SAAS,KAAK,sBAAsB,CAAC,OAAO,CAAC;AAExD,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,MAAsB,EAAoC,EAAE,CAChG,CAAC,aAAa,CAAC,WAAW,EAAE,aAAa,CAAC,aAAa,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,SAAS,CAAC,IAAI,CAAC;IACxF,MAAM,CAAC,SAAS,KAAK,sBAAsB,CAAC,OAAO,CAAC"}
@@ -1,4 +1,4 @@
1
- import { ActionHook, IItemAction } from './_types';
1
+ import { FeatureHook, IItemAction } from '../_types';
2
2
  /**
3
3
  * Hook used to get the action for `<DataView />` component.
4
4
  *
@@ -9,7 +9,7 @@ import { ActionHook, IItemAction } from './_types';
9
9
  *
10
10
  * @param isEnabled - whether the action is present
11
11
  */
12
- export declare const useEditAction: ({ isEnabled }: ActionHook) => {
13
- editAction: IItemAction;
14
- editModal: JSX.Element;
12
+ export declare const useEditItemAction: ({ isEnabled }: FeatureHook) => {
13
+ editItemAction: IItemAction;
14
+ editItemModal: JSX.Element;
15
15
  };
@@ -4,9 +4,9 @@ import { jsx as _jsx } from "react/jsx-runtime";
4
4
  // License text available at https://www.gnu.org/licenses/lgpl-3.0.txt
5
5
  import { useMemo, useState } from 'react';
6
6
  import { FaPen } from 'react-icons/fa';
7
- import { useSharedTranslation } from '../../hooks/useSharedTranslation';
8
- import { EditRecordModal } from '../../components/RecordEdition/EditRecordModal';
9
- import { RecordFilterCondition, useExplorerLibraryDataLazyQuery } from '../../_gqlTypes';
7
+ import { useSharedTranslation } from '../../../hooks/useSharedTranslation';
8
+ import { EditRecordModal } from '../../../components/RecordEdition/EditRecordModal';
9
+ import { RecordFilterCondition, useExplorerLibraryDataLazyQuery } from '../../../_gqlTypes';
10
10
  /**
11
11
  * Hook used to get the action for `<DataView />` component.
12
12
  *
@@ -17,11 +17,11 @@ import { RecordFilterCondition, useExplorerLibraryDataLazyQuery } from '../../_g
17
17
  *
18
18
  * @param isEnabled - whether the action is present
19
19
  */
20
- export const useEditAction = ({ isEnabled }) => {
20
+ export const useEditItemAction = ({ isEnabled }) => {
21
21
  const { t } = useSharedTranslation();
22
22
  const [refreshItem] = useExplorerLibraryDataLazyQuery({ fetchPolicy: 'network-only' });
23
23
  const [editingItem, setEditingItem] = useState(null);
24
- const _editAction = {
24
+ const _editItemAction = {
25
25
  label: t('explorer.edit-item'),
26
26
  icon: _jsx(FaPen, {}),
27
27
  callback: item => {
@@ -46,9 +46,9 @@ export const useEditAction = ({ isEnabled }) => {
46
46
  setEditingItem(null);
47
47
  };
48
48
  const editAction = useMemo(() => ({
49
- editAction: isEnabled ? _editAction : null,
50
- editModal: isEnabled && editingItem !== null ? (_jsx(EditRecordModal, { open: true, record: editingItem.whoAmI, library: editingItem.libraryId, onClose: () => _handleEditModalClose(editingItem) })) : null
49
+ editItemAction: isEnabled ? _editItemAction : null,
50
+ editItemModal: isEnabled && editingItem !== null ? (_jsx(EditRecordModal, { open: true, record: editingItem.whoAmI, library: editingItem.libraryId, onClose: () => _handleEditModalClose(editingItem) })) : null
51
51
  }), [isEnabled, editingItem]);
52
52
  return editAction;
53
53
  };
54
- //# sourceMappingURL=useEditAction.js.map
54
+ //# sourceMappingURL=useEditItemAction.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useEditItemAction.js","sourceRoot":"","sources":["../../../../src/components/Explorer/actions-item/useEditItemAction.tsx"],"names":[],"mappings":";AAAA,oFAAoF;AACpF,sCAAsC;AACtC,sEAAsE;AACtE,OAAO,EAAC,OAAO,EAAE,QAAQ,EAAC,MAAM,OAAO,CAAC;AACxC,OAAO,EAAC,KAAK,EAAC,MAAM,gBAAgB,CAAC;AACrC,OAAO,EAAC,oBAAoB,EAAC,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAC,eAAe,EAAC,MAAM,8CAA8C,CAAC;AAC7E,OAAO,EAAC,qBAAqB,EAAE,+BAA+B,EAAC,MAAM,eAAe,CAAC;AAGrF;;;;;;;;;GASG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,EAAC,SAAS,EAAc,EAAE,EAAE;IAC1D,MAAM,EAAC,CAAC,EAAC,GAAG,oBAAoB,EAAE,CAAC;IAEnC,MAAM,CAAC,WAAW,CAAC,GAAG,+BAA+B,CAAC,EAAC,WAAW,EAAE,cAAc,EAAC,CAAC,CAAC;IAErF,MAAM,CAAC,WAAW,EAAE,cAAc,CAAC,GAAG,QAAQ,CAAmB,IAAI,CAAC,CAAC;IAEvE,MAAM,eAAe,GAAgB;QACjC,KAAK,EAAE,CAAC,CAAC,oBAAoB,CAAC;QAC9B,IAAI,EAAE,KAAC,KAAK,KAAG;QACf,QAAQ,EAAE,IAAI,CAAC,EAAE;YACb,cAAc,CAAC,IAAI,CAAC,CAAC;QACzB,CAAC;KACJ,CAAC;IAEF,MAAM,qBAAqB,GAAG,CAAC,IAAe,EAAE,EAAE;QAC9C,WAAW,CAAC;YACR,SAAS,EAAE;gBACP,SAAS,EAAE,IAAI,CAAC,SAAS;gBACzB,YAAY,EAAE,CAAC,IAAI,CAAC,EAAE,4DAA4D;gBAClF,UAAU,EAAE,EAAC,KAAK,EAAE,CAAC,EAAC;gBACtB,OAAO,EAAE;oBACL;wBACI,SAAS,EAAE,qBAAqB,CAAC,KAAK;wBACtC,KAAK,EAAE,IAAI;wBACX,KAAK,EAAE,IAAI,CAAC,MAAM;qBACrB;iBACJ;aACJ;SACJ,CAAC,CAAC;QACH,cAAc,CAAC,IAAI,CAAC,CAAC;IACzB,CAAC,CAAC;IAEF,MAAM,UAAU,GAAG,OAAO,CACtB,GAAG,EAAE,CAAC,CAAC;QACH,cAAc,EAAE,SAAS,CAAC,CAAC,CAAC,eAAe,CAAC,CAAC,CAAC,IAAI;QAClD,aAAa,EACT,SAAS,IAAI,WAAW,KAAK,IAAI,CAAC,CAAC,CAAC,CAChC,KAAC,eAAe,IACZ,IAAI,QACJ,MAAM,EAAE,WAAW,CAAC,MAAM,EAC1B,OAAO,EAAE,WAAW,CAAC,SAAS,EAC9B,OAAO,EAAE,GAAG,EAAE,CAAC,qBAAqB,CAAC,WAAW,CAAC,GACnD,CACL,CAAC,CAAC,CAAC,IAAI;KACf,CAAC,EACF,CAAC,SAAS,EAAE,WAAW,CAAC,CAC3B,CAAC;IAEF,OAAO,UAAU,CAAC;AACtB,CAAC,CAAC"}
@@ -1,6 +1,6 @@
1
1
  import { Dispatch } from 'react';
2
- import { ActionHook, Entrypoint, IItemAction } from './_types';
3
- import { IViewSettingsAction, IViewSettingsState } from '../../components/Explorer/manage-view-settings';
2
+ import { FeatureHook, Entrypoint, IItemAction } from '../_types';
3
+ import { IViewSettingsAction, IViewSettingsState } from '../manage-view-settings';
4
4
  /**
5
5
  * Hook used to get the action for `<DataView />` component.
6
6
  *
@@ -12,12 +12,12 @@ import { IViewSettingsAction, IViewSettingsState } from '../../components/Explor
12
12
  * @param dispatch - method to change the current view
13
13
  * @param entrypoint - represent the current entrypoint
14
14
  */
15
- export declare const useRemoveAction: ({ isEnabled, store: { view, dispatch }, entrypoint }: ActionHook<{
15
+ export declare const useRemoveItemAction: ({ isEnabled, store: { view, dispatch }, entrypoint }: FeatureHook<{
16
16
  store: {
17
17
  view: IViewSettingsState;
18
18
  dispatch: Dispatch<IViewSettingsAction>;
19
19
  };
20
20
  entrypoint: Entrypoint;
21
21
  }>) => {
22
- removeAction: IItemAction;
22
+ removeItemAction: IItemAction;
23
23
  };
@@ -5,11 +5,11 @@ import { jsx as _jsx } from "react/jsx-runtime";
5
5
  import { useMemo } from 'react';
6
6
  import { FaTrash } from 'react-icons/fa';
7
7
  import { KitModal } from 'aristid-ds';
8
- import { useDeactivateRecordsMutation, useDeleteValueMutation } from '../../_gqlTypes';
9
- import { useSharedTranslation } from '../../hooks/useSharedTranslation';
10
- import { useValuesCacheUpdate } from '../../hooks/useValuesCacheUpdate';
11
- import { ViewSettingsActionTypes } from '../../components/Explorer/manage-view-settings';
12
- import { MASS_SELECTION_ALL } from '../../components/Explorer/_constants';
8
+ import { useDeactivateRecordsMutation, useDeleteValueMutation } from '../../../_gqlTypes';
9
+ import { useSharedTranslation } from '../../../hooks/useSharedTranslation';
10
+ import { useValuesCacheUpdate } from '../../../hooks/useValuesCacheUpdate';
11
+ import { ViewSettingsActionTypes } from '../manage-view-settings';
12
+ import { MASS_SELECTION_ALL } from '../_constants';
13
13
  /**
14
14
  * Hook used to get the action for `<DataView />` component.
15
15
  *
@@ -21,7 +21,7 @@ import { MASS_SELECTION_ALL } from '../../components/Explorer/_constants';
21
21
  * @param dispatch - method to change the current view
22
22
  * @param entrypoint - represent the current entrypoint
23
23
  */
24
- export const useRemoveAction = ({ isEnabled, store: { view, dispatch }, entrypoint }) => {
24
+ export const useRemoveItemAction = ({ isEnabled, store: { view, dispatch }, entrypoint }) => {
25
25
  const { t } = useSharedTranslation();
26
26
  const updateValuesCache = useValuesCacheUpdate();
27
27
  const [deactivateRecordsMutation] = useDeactivateRecordsMutation({
@@ -54,7 +54,7 @@ export const useRemoveAction = ({ isEnabled, store: { view, dispatch }, entrypoi
54
54
  updateValuesCache(parentRecord, deletedRecord.data?.deleteValue ?? []);
55
55
  }
56
56
  });
57
- const _removeAction = useMemo(() => ({
57
+ const _removeItemAction = useMemo(() => ({
58
58
  label: entrypoint.type === 'library' ? t('explorer.deactivate-item') : t('explorer.delete-item'),
59
59
  icon: _jsx(FaTrash, {}),
60
60
  isDanger: true,
@@ -103,7 +103,7 @@ export const useRemoveAction = ({ isEnabled, store: { view, dispatch }, entrypoi
103
103
  }
104
104
  }), [t, deactivateRecordsMutation, deleteRecordLinkMutation, entrypoint.type, view.massSelection, dispatch]);
105
105
  return {
106
- removeAction: isEnabled ? _removeAction : null
106
+ removeItemAction: isEnabled ? _removeItemAction : null
107
107
  };
108
108
  };
109
- //# sourceMappingURL=useRemoveAction.js.map
109
+ //# sourceMappingURL=useRemoveItemAction.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useRemoveItemAction.js","sourceRoot":"","sources":["../../../../src/components/Explorer/actions-item/useRemoveItemAction.tsx"],"names":[],"mappings":"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"}
@@ -1,7 +1,7 @@
1
1
  import { Dispatch } from 'react';
2
- import { ActionHook, IMassActions } from './_types';
3
- import { IViewSettingsAction, IViewSettingsState } from './manage-view-settings';
4
- import type { useExplorerData } from './_queries/useExplorerData';
2
+ import { FeatureHook, IMassActions } from '../_types';
3
+ import { IViewSettingsAction, IViewSettingsState } from '../manage-view-settings';
4
+ import type { useExplorerData } from '../_queries/useExplorerData';
5
5
  /**
6
6
  * Hook used to get the action for mass actions only available on selection.
7
7
  *
@@ -15,7 +15,7 @@ import type { useExplorerData } from './_queries/useExplorerData';
15
15
  * @param allVisibleKeys - list of all visible keys used to know if we need to change page
16
16
  * @param refetch - method to get fresh data when we delete last page
17
17
  */
18
- export declare const useDeactivateMassAction: ({ isEnabled, store: { view, dispatch }, allVisibleKeys, refetch }: ActionHook<{
18
+ export declare const useDeactivateMassAction: ({ isEnabled, store: { view, dispatch }, allVisibleKeys, refetch }: FeatureHook<{
19
19
  store: {
20
20
  view: IViewSettingsState;
21
21
  dispatch: Dispatch<IViewSettingsAction>;
@@ -5,10 +5,10 @@ import { jsx as _jsx } from "react/jsx-runtime";
5
5
  import { useMemo } from 'react';
6
6
  import { FaTrash } from 'react-icons/fa';
7
7
  import { KitModal } from 'aristid-ds';
8
- import { useDeactivateRecordsMutation } from '../../_gqlTypes';
9
- import { useSharedTranslation } from '../../hooks/useSharedTranslation';
10
- import { ViewSettingsActionTypes } from './manage-view-settings';
11
- import { MASS_SELECTION_ALL } from './_constants';
8
+ import { useDeactivateRecordsMutation } from '../../../_gqlTypes';
9
+ import { useSharedTranslation } from '../../../hooks/useSharedTranslation';
10
+ import { ViewSettingsActionTypes } from '../manage-view-settings';
11
+ import { MASS_SELECTION_ALL } from '../_constants';
12
12
  /**
13
13
  * Hook used to get the action for mass actions only available on selection.
14
14
  *
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useDeactivateMassAction.js","sourceRoot":"","sources":["../../../../src/components/Explorer/actions-mass/useDeactivateMassAction.tsx"],"names":[],"mappings":";AAAA,oFAAoF;AACpF,sCAAsC;AACtC,sEAAsE;AACtE,OAAO,EAAW,OAAO,EAAC,MAAM,OAAO,CAAC;AACxC,OAAO,EAAC,OAAO,EAAC,MAAM,gBAAgB,CAAC;AACvC,OAAO,EAAC,QAAQ,EAAC,MAAM,YAAY,CAAC;AACpC,OAAO,EAAC,4BAA4B,EAAC,MAAM,eAAe,CAAC;AAC3D,OAAO,EAAC,oBAAoB,EAAC,MAAM,gCAAgC,CAAC;AAEpE,OAAO,EAA0C,uBAAuB,EAAC,MAAM,yBAAyB,CAAC;AACzG,OAAO,EAAC,kBAAkB,EAAC,MAAM,eAAe,CAAC;AAGjD;;;;;;;;;;;;GAYG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,EACpC,SAAS,EACT,KAAK,EAAE,EAAC,IAAI,EAAE,QAAQ,EAAC,EACvB,cAAc,EACd,OAAO,EAQT,EAAE,EAAE;IACF,MAAM,EAAC,CAAC,EAAC,GAAG,oBAAoB,EAAE,CAAC;IAEnC,MAAM,CAAC,yBAAyB,CAAC,GAAG,4BAA4B,EAAE,CAAC;IAEnE,MAAM,qBAAqB,GAAiB,OAAO,CAC/C,GAAG,EAAE,CAAC,CAAC;QACH,KAAK,EAAE,CAAC,CAAC,gCAAgC,CAAC;QAC1C,IAAI,EAAE,KAAC,OAAO,KAAG;QACjB,QAAQ,EAAE,mBAAmB,CAAC,EAAE;YAC5B,QAAQ,CAAC,OAAO,CAAC;gBACb,IAAI,EAAE,SAAS;gBACf,aAAa,EAAE,IAAI;gBACnB,OAAO,EAAE,CAAC,CAAC,8BAA8B,EAAE;oBACvC,KAAK,EAAE,IAAI,CAAC,aAAa,KAAK,kBAAkB,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,MAAM;iBAC1F,CAAC;gBACF,MAAM,EAAE,CAAC,CAAC,eAAe,CAAC,IAAI,SAAS;gBACvC,UAAU,EAAE,CAAC,CAAC,eAAe,CAAC,IAAI,SAAS;gBAC3C,IAAI,EAAE,KAAK,IAAI,EAAE;oBACb,MAAM,yBAAyB,CAAC;wBAC5B,SAAS,EAAE;4BACP,SAAS,EAAE,IAAI,CAAC,SAAS;4BACzB,OAAO,EAAE,mBAAmB;yBAC/B;qBACJ,CAAC,CAAC;oBACH,IACI,IAAI,CAAC,aAAa,KAAK,kBAAkB;wBACzC,cAAc,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,EAC/D,CAAC;wBACC,MAAM,OAAO,CAAC;4BACV,UAAU,EAAE;gCACR,KAAK,EAAE,IAAI,CAAC,QAAQ;gCACpB,MAAM,EAAE,CAAC;6BACZ;yBACJ,CAAC,CAAC;oBACP,CAAC;yBAAM,CAAC;wBACJ,MAAM,OAAO,EAAE,CAAC;oBACpB,CAAC;oBACD,QAAQ,CAAC;wBACL,IAAI,EAAE,uBAAuB,CAAC,iBAAiB;wBAC/C,OAAO,EAAE,EAAE;qBACd,CAAC,CAAC;gBACP,CAAC;aACJ,CAAC,CAAC;QACP,CAAC;KACJ,CAAC,EACF,CAAC,CAAC,EAAE,yBAAyB,EAAE,IAAI,CAAC,aAAa,EAAE,QAAQ,EAAE,IAAI,CAAC,SAAS,EAAE,cAAc,EAAE,OAAO,CAAC,CACxG,CAAC;IAEF,OAAO;QACH,oBAAoB,EAAE,SAAS,CAAC,CAAC,CAAC,qBAAqB,CAAC,CAAC,CAAC,IAAI;KACjE,CAAC;AACN,CAAC,CAAC"}
@@ -0,0 +1,18 @@
1
+ import { FeatureHook, IMassActions } from '../_types';
2
+ import { IViewSettingsAction, IViewSettingsState } from '../manage-view-settings';
3
+ import { Dispatch } from 'react';
4
+ import { useExplorerData } from '../_queries/useExplorerData';
5
+ export declare const useDeleteLinkValues: ({ isEnabled, store: { view, dispatch }, pagination, allVisibleKeys, refetch }: FeatureHook<{
6
+ pagination: null | {
7
+ limit: number;
8
+ offset: number;
9
+ };
10
+ store: {
11
+ view: IViewSettingsState;
12
+ dispatch: Dispatch<IViewSettingsAction>;
13
+ };
14
+ allVisibleKeys: string[];
15
+ refetch: ReturnType<typeof useExplorerData>["refetch"];
16
+ }>) => {
17
+ unlinkMassAction: IMassActions;
18
+ };
@@ -0,0 +1,84 @@
1
+ import { jsx as _jsx } 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 useSaveValueBatchMutation from '../../../components/RecordEdition/EditRecordContent/hooks/useExecuteSaveValueBatchMutation';
6
+ import { ViewSettingsActionTypes } from '../manage-view-settings';
7
+ import { useMemo } from 'react';
8
+ import { useExplorerData } from '../_queries/useExplorerData';
9
+ import { FaTrash } from 'react-icons/fa';
10
+ import { useSharedTranslation } from '../../../hooks/useSharedTranslation';
11
+ import { KitModal } from 'aristid-ds';
12
+ import { MASS_SELECTION_ALL } from '../_constants';
13
+ export const useDeleteLinkValues = ({ isEnabled, store: { view, dispatch }, pagination, allVisibleKeys, refetch }) => {
14
+ const { t } = useSharedTranslation();
15
+ const { saveValues } = useSaveValueBatchMutation();
16
+ const isLink = view.entrypoint.type === 'link';
17
+ const { data: linkData } = useExplorerData({
18
+ entrypoint: view.entrypoint,
19
+ libraryId: view.libraryId,
20
+ attributeIds: view.attributesIds,
21
+ fulltextSearch: view.fulltextSearch,
22
+ pagination,
23
+ sorts: view.sort,
24
+ filters: view.filters,
25
+ skip: !isLink
26
+ });
27
+ const _unlinkMassAction = useMemo(() => ({
28
+ label: t('explorer.massAction.deactivate'),
29
+ icon: _jsx(FaTrash, {}),
30
+ callback: () => {
31
+ KitModal.confirm({
32
+ type: 'confirm',
33
+ dangerConfirm: true,
34
+ content: t('record_edition.delete_links_confirm', {
35
+ count: view.massSelection === MASS_SELECTION_ALL ? Infinity : view.massSelection.length
36
+ }),
37
+ okText: t('global.submit') ?? undefined,
38
+ cancelText: t('global.cancel') ?? undefined,
39
+ onOk: async () => {
40
+ const entrypoint = view.entrypoint;
41
+ let values;
42
+ if (view.massSelection === MASS_SELECTION_ALL ||
43
+ allVisibleKeys.every(key => view.massSelection.includes(key))) {
44
+ values =
45
+ (linkData?.records ?? []).map(({ id_value }) => ({
46
+ attribute: entrypoint.linkAttributeId,
47
+ idValue: id_value ?? null,
48
+ value: null
49
+ })) ?? [];
50
+ }
51
+ else {
52
+ values = (linkData?.records ?? []).reduce((acc, { id_value, itemId }) => {
53
+ if (view.massSelection.includes(itemId)) {
54
+ acc.push({
55
+ attribute: entrypoint.linkAttributeId,
56
+ idValue: id_value ?? null,
57
+ value: null
58
+ });
59
+ }
60
+ return acc;
61
+ }, []);
62
+ }
63
+ if (values.length > 0) {
64
+ await saveValues({
65
+ id: entrypoint.parentRecordId,
66
+ library: {
67
+ id: entrypoint.parentLibraryId
68
+ }
69
+ }, values, undefined, true);
70
+ await refetch();
71
+ }
72
+ dispatch({
73
+ type: ViewSettingsActionTypes.SET_SELECTED_KEYS,
74
+ payload: []
75
+ });
76
+ }
77
+ });
78
+ }
79
+ }), [t, saveValues, view.massSelection, dispatch, view.libraryId, allVisibleKeys]);
80
+ return {
81
+ unlinkMassAction: isEnabled ? _unlinkMassAction : null
82
+ };
83
+ };
84
+ //# sourceMappingURL=useDeleteLinkValues.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useDeleteLinkValues.js","sourceRoot":"","sources":["../../../../src/components/Explorer/actions-mass/useDeleteLinkValues.tsx"],"names":[],"mappings":"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"}
@@ -1,7 +1,7 @@
1
1
  import { Dispatch } from 'react';
2
- import { IMassActions } from './_types';
3
- import { IViewSettingsAction, IViewSettingsState } from './manage-view-settings';
4
- import { MassSelection } from './manage-view-settings/store-view-settings/viewSettingsReducer';
2
+ import { IMassActions } from '../_types';
3
+ import { IViewSettingsAction, IViewSettingsState } from '../manage-view-settings';
4
+ import { MassSelection } from '../manage-view-settings/store-view-settings/viewSettingsReducer';
5
5
  export declare const SNACKBAR_MASS_ID = "SNACKBAR_MASS_ID";
6
6
  /**
7
7
  * Hook used to manage mass selection as the snackbar and all kind of selection (manual, all in page, all in filters)
@@ -5,12 +5,12 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
5
5
  import { closeKitSnackBar, KitCheckbox, KitDropDown, KitSpace, openKitSnackBar } from 'aristid-ds';
6
6
  import { useCallback, useEffect } from 'react';
7
7
  import { FaChevronDown } from 'react-icons/fa';
8
- import { RecordFilterCondition, RecordFilterOperator } from '../../_gqlTypes';
9
- import { useSharedTranslation } from '../../hooks/useSharedTranslation';
10
- import { interleaveElement } from '../../_utils/interleaveElement';
11
- import { MASS_SELECTION_ALL } from './_constants';
12
- import { ViewSettingsActionTypes } from './manage-view-settings';
13
- import { prepareFiltersForRequest } from './_queries/prepareFiltersForRequest';
8
+ import { RecordFilterCondition, RecordFilterOperator } from '../../../_gqlTypes';
9
+ import { useSharedTranslation } from '../../../hooks/useSharedTranslation';
10
+ import { interleaveElement } from '../../../_utils/interleaveElement';
11
+ import { MASS_SELECTION_ALL } from '../_constants';
12
+ import { ViewSettingsActionTypes } from '../manage-view-settings';
13
+ import { prepareFiltersForRequest } from '../_queries/prepareFiltersForRequest';
14
14
  export const SNACKBAR_MASS_ID = 'SNACKBAR_MASS_ID';
15
15
  /**
16
16
  * Hook used to manage mass selection as the snackbar and all kind of selection (manual, all in page, all in filters)
@@ -45,7 +45,7 @@ export const useMassActions = ({ isEnabled, store: { dispatch, view }, totalCoun
45
45
  {
46
46
  field: 'id',
47
47
  condition: RecordFilterCondition.EQUAL,
48
- value: key
48
+ value: String(key)
49
49
  }
50
50
  ])));
51
51
  dispatch({
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useMassActions.js","sourceRoot":"","sources":["../../../../src/components/Explorer/actions-mass/useMassActions.tsx"],"names":[],"mappings":";AAAA,oFAAoF;AACpF,sCAAsC;AACtC,sEAAsE;AACtE,OAAO,EAAC,gBAAgB,EAAE,WAAW,EAAE,WAAW,EAAE,QAAQ,EAAE,eAAe,EAAC,MAAM,YAAY,CAAC;AACjG,OAAO,EAAW,WAAW,EAAE,SAAS,EAAC,MAAM,OAAO,CAAC;AACvD,OAAO,EAAC,aAAa,EAAC,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAC,qBAAqB,EAAE,oBAAoB,EAAC,MAAM,eAAe,CAAC;AAC1E,OAAO,EAAC,oBAAoB,EAAC,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAC,iBAAiB,EAAC,MAAM,8BAA8B,CAAC;AAE/D,OAAO,EAAC,kBAAkB,EAAC,MAAM,eAAe,CAAC;AACjD,OAAO,EAA0C,uBAAuB,EAAC,MAAM,yBAAyB,CAAC;AACzG,OAAO,EAAC,wBAAwB,EAAC,MAAM,sCAAsC,CAAC;AAG9E,MAAM,CAAC,MAAM,gBAAgB,GAAG,kBAAkB,CAAC;AAEnD;;;;;;;;;GASG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,EAC3B,SAAS,EACT,KAAK,EAAE,EAAC,QAAQ,EAAE,IAAI,EAAC,EACvB,UAAU,EACV,cAAc,EACd,WAAW,EAUd,EAAE,EAAE;IACD,MAAM,EAAC,CAAC,EAAC,GAAG,oBAAoB,EAAE,CAAC;IAEnC,SAAS,CAAC,GAAG,EAAE;QACX,IAAI,IAAI,CAAC,aAAa,KAAK,kBAAkB,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YAC/E,eAAe,CAAC;gBACZ,QAAQ,EAAE,CAAC;gBACX,QAAQ,EAAE,IAAI;gBACd,UAAU,EAAE,gBAAgB;gBAC5B,OAAO,EAAE,GAAG,EAAE,CAAC,gBAAgB,CAAC,EAAE,CAAC;gBACnC,OAAO,EAAE,CAAC,CAAC,mCAAmC,EAAE;oBAC5C,KAAK,EAAE,IAAI,CAAC,aAAa,KAAK,kBAAkB,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,MAAM;iBAC5F,CAAC;gBACF,OAAO,EAAE,WAAW,CAAC,GAAG,CAAC,CAAC,EAAC,KAAK,EAAE,IAAI,EAAE,QAAQ,EAAC,EAAE,KAAK,EAAE,EAAE,CAAC,CAAC;oBAC1D,GAAG,EAAE,KAAK;oBACV,KAAK;oBACL,IAAI;oBACJ,OAAO,EAAE,KAAK,IAAI,EAAE;wBAChB,MAAM,QAAQ,CACV,IAAI,CAAC,aAAa,KAAK,kBAAkB;4BACrC,CAAC,CAAC,wBAAwB,CAAC,IAAI,CAAC,OAAO,CAAC;4BACxC,CAAC,CAAC,iBAAiB,CACb,EAAC,QAAQ,EAAE,oBAAoB,CAAC,EAAE,EAAC,EACnC,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC;gCAC1B;oCACI,KAAK,EAAE,IAAI;oCACX,SAAS,EAAE,qBAAqB,CAAC,KAAK;oCACtC,KAAK,EAAE,MAAM,CAAC,GAAG,CAAC;iCACrB;6BACJ,CAAC,CACL,CACV,CAAC;wBACF,QAAQ,CAAC;4BACL,IAAI,EAAE,uBAAuB,CAAC,iBAAiB;4BAC/C,OAAO,EAAE,EAAE;yBACd,CAAC,CAAC;oBACP,CAAC;iBACJ,CAAC,CAAC;aACN,CAAC,CAAC;QACP,CAAC;aAAM,CAAC;YACJ,gBAAgB,CAAC,gBAAgB,CAAC,CAAC;QACvC,CAAC;IACL,CAAC,EAAE,CAAC,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,OAAO,EAAE,UAAU,CAAC,CAAC,CAAC;IAEnD,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,GAAG,UAAU,CAAC;IAC7C,MAAM,4BAA4B,GAC9B,IAAI,CAAC,aAAa,KAAK,kBAAkB,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,KAAK,UAAU,CAAC;IAC1F,MAAM,oBAAoB,GACtB,IAAI,CAAC,aAAa,KAAK,kBAAkB;QACzC,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,CAAC;QAC7B,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,CAAC;IAE3C,MAAM,gBAAgB,GAAG,SAAS,CAAC,CAAC,CAAC,CACjC,KAAC,WAAW,IACR,aAAa,EAAE,oBAAoB,EACnC,OAAO,EAAE,4BAA4B,EACrC,QAAQ,EAAE,CAAC,CAAC,EAAE;YACV,IAAI,4BAA4B,EAAE,CAAC;gBAC/B,gBAAgB,CAAC,EAAE,CAAC,CAAC;YACzB,CAAC;iBAAM,CAAC;gBACJ,gBAAgB,CAAC,cAAc,CAAC,CAAC;YACrC,CAAC;QACL,CAAC,YAEA,CAAC,CAAC,gCAAgC,EAAE,EAAC,KAAK,EAAE,UAAU,EAAC,CAAC,GAC/C,CACjB,CAAC,CAAC,CAAC,CACA,KAAC,WAAW,IACR,OAAO,EAAE,CAAC,OAAO,CAAC,EAClB,IAAI,EAAE;YACF,KAAK,EAAE;gBACH,4BAA4B;oBACxB,CAAC,CAAC,IAAI;oBACN,CAAC,CAAC;wBACI,GAAG,EAAE,uBAAuB;wBAC5B,KAAK,EAAE,CAAC,CAAC,kDAAkD,EAAE,EAAC,KAAK,EAAE,IAAI,CAAC,QAAQ,EAAC,CAAC;wBACpF,OAAO,EAAE,GAAG,EAAE;4BACV,gBAAgB,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC,CAAC,GAAG,IAAI,CAAC,aAAa,EAAE,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC;wBAC/E,CAAC;qBACJ;gBACP;oBACI,GAAG,EAAE,sBAAsB;oBAC3B,KAAK,EAAE,4BAA4B;wBAC/B,CAAC,CAAC,CAAC,CAAC,mDAAmD,EAAE,EAAC,KAAK,EAAE,UAAU,EAAC,CAAC;wBAC7E,CAAC,CAAC,CAAC,CAAC,iDAAiD,EAAE,EAAC,KAAK,EAAE,UAAU,EAAC,CAAC;oBAC/E,OAAO,EAAE,KAAK,IAAI,EAAE;wBAChB,IAAI,4BAA4B,EAAE,CAAC;4BAC/B,gBAAgB,CAAC,EAAE,CAAC,CAAC;wBACzB,CAAC;6BAAM,CAAC;4BACJ,gBAAgB,CAAC,kBAAkB,CAAC,CAAC;wBACzC,CAAC;oBACL,CAAC;iBACJ;aACJ;SACJ,YAED,KAAC,WAAW,IAAC,aAAa,EAAE,oBAAoB,EAAE,OAAO,EAAE,4BAA4B,YACnF,MAAC,QAAQ,IAAC,IAAI,EAAC,GAAG,aACb,CAAC,CAAC,gCAAgC,EAAE,EAAC,KAAK,EAAE,UAAU,EAAC,CAAC,EACzD,KAAC,aAAa,KAAG,IACV,GACD,GACJ,CACjB,CAAC;IAEF,MAAM,gBAAgB,GAAG,WAAW,CAChC,CAAC,IAAmB,EAAE,EAAE,CACpB,QAAQ,CAAC;QACL,IAAI,EAAE,uBAAuB,CAAC,iBAAiB;QAC/C,OAAO,EAAE,IAAI;KAChB,CAAC,EACN,CAAC,QAAQ,CAAC,CACb,CAAC;IAEF,OAAO;QACH,eAAe,EAAE,SAAS,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,IAAI;QACpD,eAAe,EAAE,SAAS,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,IAAI;KACvD,CAAC;AACN,CAAC,CAAC"}
@@ -1,4 +1,4 @@
1
- import { ActionHook, Entrypoint, IPrimaryAction } from './_types';
1
+ import { FeatureHook, Entrypoint, IPrimaryAction } from '../_types';
2
2
  /**
3
3
  * Hook used to get the action for `<DataView />` component.
4
4
  *
@@ -7,15 +7,17 @@ import { ActionHook, Entrypoint, IPrimaryAction } from './_types';
7
7
  * It returns also two parts : one for the call action button - one for displayed the modal required by the action.
8
8
  *
9
9
  * @param isEnabled - whether the action is present
10
- * @param library - the library's id to add new item
10
+ * @param libraryId - the library's id to add new item
11
+ * @param entrypoint - represent the current entrypoint
12
+ * @param totalCount - used for display purpose only
11
13
  * @param refetch - method to call to refresh the list. New item will be visible if it matches filters and sorts
12
14
  */
13
- export declare const useCreateAction: ({ isEnabled, library, entrypoint, itemsCount, refetch }: ActionHook<{
14
- library: string;
15
+ export declare const useCreatePrimaryAction: ({ isEnabled, libraryId, entrypoint, totalCount, refetch }: FeatureHook<{
16
+ libraryId: string;
15
17
  entrypoint: Entrypoint;
16
- itemsCount: number;
18
+ totalCount: number;
17
19
  refetch: () => void;
18
20
  }>) => {
19
- createAction: IPrimaryAction;
21
+ createPrimaryAction: IPrimaryAction;
20
22
  createModal: JSX.Element;
21
23
  };
@@ -4,10 +4,10 @@ import { jsx as _jsx } from "react/jsx-runtime";
4
4
  // License text available at https://www.gnu.org/licenses/lgpl-3.0.txt
5
5
  import { useState } from 'react';
6
6
  import { FaPlus } from 'react-icons/fa';
7
- import { EditRecordModal } from '../../components';
8
- import { useSharedTranslation } from '../../hooks/useSharedTranslation';
9
- import useSaveValueBatchMutation from '../../components/RecordEdition/EditRecordContent/hooks/useExecuteSaveValueBatchMutation';
10
- import { useExplorerLinkAttributeQuery } from '../../_gqlTypes';
7
+ import { EditRecordModal } from '../../../components';
8
+ import { useSharedTranslation } from '../../../hooks/useSharedTranslation';
9
+ import useSaveValueBatchMutation from '../../../components/RecordEdition/EditRecordContent/hooks/useExecuteSaveValueBatchMutation';
10
+ import { useExplorerLinkAttributeQuery } from '../../../_gqlTypes';
11
11
  /**
12
12
  * Hook used to get the action for `<DataView />` component.
13
13
  *
@@ -16,10 +16,12 @@ import { useExplorerLinkAttributeQuery } from '../../_gqlTypes';
16
16
  * It returns also two parts : one for the call action button - one for displayed the modal required by the action.
17
17
  *
18
18
  * @param isEnabled - whether the action is present
19
- * @param library - the library's id to add new item
19
+ * @param libraryId - the library's id to add new item
20
+ * @param entrypoint - represent the current entrypoint
21
+ * @param totalCount - used for display purpose only
20
22
  * @param refetch - method to call to refresh the list. New item will be visible if it matches filters and sorts
21
23
  */
22
- export const useCreateAction = ({ isEnabled, library, entrypoint, itemsCount, refetch }) => {
24
+ export const useCreatePrimaryAction = ({ isEnabled, libraryId, entrypoint, totalCount, refetch }) => {
23
25
  const { t } = useSharedTranslation();
24
26
  const [isRecordCreationVisible, setRecordCreationVisible] = useState(false);
25
27
  const [multipleValues, setIsMultivalues] = useState(false);
@@ -37,8 +39,8 @@ export const useCreateAction = ({ isEnabled, library, entrypoint, itemsCount, re
37
39
  setIsMultivalues(attributeData.multiple_values);
38
40
  }
39
41
  });
40
- const canCreateRecord = entrypoint.type === 'library' ? true : multipleValues || itemsCount === 0;
41
- const createAction = {
42
+ const canCreateRecord = entrypoint.type === 'library' ? true : multipleValues || totalCount === 0;
43
+ const _createPrimaryAction = {
42
44
  callback: () => {
43
45
  setRecordCreationVisible(true);
44
46
  },
@@ -47,8 +49,8 @@ export const useCreateAction = ({ isEnabled, library, entrypoint, itemsCount, re
47
49
  label: t('explorer.create-one')
48
50
  };
49
51
  return {
50
- createAction: isEnabled ? createAction : null,
51
- createModal: isRecordCreationVisible ? (_jsx(EditRecordModal, { open: true, record: null, library: library, onClose: () => {
52
+ createPrimaryAction: isEnabled ? _createPrimaryAction : null,
53
+ createModal: isRecordCreationVisible ? (_jsx(EditRecordModal, { open: true, record: null, library: libraryId, onClose: () => {
52
54
  setRecordCreationVisible(false);
53
55
  }, onCreate: newRecord => {
54
56
  refetch();
@@ -70,4 +72,4 @@ export const useCreateAction = ({ isEnabled, library, entrypoint, itemsCount, re
70
72
  }, submitButtons: ['create'] })) : null
71
73
  };
72
74
  };
73
- //# sourceMappingURL=useCreateAction.js.map
75
+ //# sourceMappingURL=useCreatePrimaryAction.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useCreatePrimaryAction.js","sourceRoot":"","sources":["../../../../src/components/Explorer/actions-primary/useCreatePrimaryAction.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,17 @@
1
+ import { FeatureHook, IPrimaryAction } from '../_types';
2
+ /**
3
+ * Hook used to get the action for `<DataView />` component.
4
+ *
5
+ * When items are linked, the view is refreshed
6
+ *
7
+ * It returns also two parts : one for the call action button - one for displaying the modal required by the action.
8
+ *
9
+ * @param isEnabled - whether the action is present
10
+ * @param maxItemsLeft - the number of items that can be added
11
+ */
12
+ export declare const useLinkPrimaryAction: ({ isEnabled, maxItemsLeft }: FeatureHook<{
13
+ maxItemsLeft: number | null;
14
+ }>) => {
15
+ linkPrimaryAction: IPrimaryAction;
16
+ linkModal: JSX.Element;
17
+ };
@@ -0,0 +1,38 @@
1
+ import { jsx as _jsx } 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 { useState } from 'react';
6
+ import { FaPlus } from 'react-icons/fa';
7
+ import { useSharedTranslation } from '../../../hooks/useSharedTranslation';
8
+ import { LinkModal } from '../link-item/LinkModal';
9
+ /**
10
+ * Hook used to get the action for `<DataView />` component.
11
+ *
12
+ * When items are linked, the view is refreshed
13
+ *
14
+ * It returns also two parts : one for the call action button - one for displaying the modal required by the action.
15
+ *
16
+ * @param isEnabled - whether the action is present
17
+ * @param maxItemsLeft - the number of items that can be added
18
+ */
19
+ export const useLinkPrimaryAction = ({ isEnabled, maxItemsLeft }) => {
20
+ const { t } = useSharedTranslation();
21
+ const [isLinkModalVisible, setIsLinkModalVisible] = useState(false);
22
+ const disableAddItemAction = maxItemsLeft === 0;
23
+ const _linkPrimaryAction = {
24
+ callback: () => {
25
+ setIsLinkModalVisible(true);
26
+ },
27
+ icon: _jsx(FaPlus, {}),
28
+ disabled: disableAddItemAction,
29
+ label: t('explorer.add-existing-item')
30
+ };
31
+ return {
32
+ linkPrimaryAction: isEnabled ? _linkPrimaryAction : null,
33
+ linkModal: isLinkModalVisible ? (_jsx(LinkModal, { open: true, onClose: () => {
34
+ setIsLinkModalVisible(false);
35
+ } })) : null
36
+ };
37
+ };
38
+ //# sourceMappingURL=useLinkPrimaryAction.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useLinkPrimaryAction.js","sourceRoot":"","sources":["../../../../src/components/Explorer/actions-primary/useLinkPrimaryAction.tsx"],"names":[],"mappings":";AAAA,oFAAoF;AACpF,sCAAsC;AACtC,sEAAsE;AACtE,OAAO,EAAC,QAAQ,EAAC,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAC,MAAM,EAAC,MAAM,gBAAgB,CAAC;AACtC,OAAO,EAAC,oBAAoB,EAAC,MAAM,gCAAgC,CAAC;AAEpE,OAAO,EAAC,SAAS,EAAC,MAAM,wBAAwB,CAAC;AAEjD;;;;;;;;;GASG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,EACjC,SAAS,EACT,YAAY,EAGd,EAAE,EAAE;IACF,MAAM,EAAC,CAAC,EAAC,GAAG,oBAAoB,EAAE,CAAC;IAEnC,MAAM,CAAC,kBAAkB,EAAE,qBAAqB,CAAC,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC;IAEpE,MAAM,oBAAoB,GAAG,YAAY,KAAK,CAAC,CAAC;IAEhD,MAAM,kBAAkB,GAAmB;QACvC,QAAQ,EAAE,GAAG,EAAE;YACX,qBAAqB,CAAC,IAAI,CAAC,CAAC;QAChC,CAAC;QACD,IAAI,EAAE,KAAC,MAAM,KAAG;QAChB,QAAQ,EAAE,oBAAoB;QAC9B,KAAK,EAAE,CAAC,CAAC,4BAA4B,CAAC;KACzC,CAAC;IAEF,OAAO;QACH,iBAAiB,EAAE,SAAS,CAAC,CAAC,CAAC,kBAAkB,CAAC,CAAC,CAAC,IAAI;QACxD,SAAS,EAAE,kBAAkB,CAAC,CAAC,CAAC,CAC5B,KAAC,SAAS,IACN,IAAI,QACJ,OAAO,EAAE,GAAG,EAAE;gBACV,qBAAqB,CAAC,KAAK,CAAC,CAAC;YACjC,CAAC,GACH,CACL,CAAC,CAAC,CAAC,IAAI;KACX,CAAC;AACN,CAAC,CAAC"}
@@ -0,0 +1,17 @@
1
+ import { IPrimaryAction } from '../_types';
2
+ import { IViewSettingsState } from '../manage-view-settings';
3
+ /**
4
+ * Hook used to get the primary actions for `<DataView />` component.
5
+ *
6
+ * Based on default actions and custom actions, it returns a primary with first action as "main" action and the others
7
+ * in the dropdown accessible via a split button.
8
+ *
9
+ * @param view - list of actions to be display as one button: the primary action button
10
+ * @param actions - list of actions to be display as one button: the primary action button
11
+ */
12
+ export declare const usePrimaryActionsButton: ({ view, actions }: {
13
+ view: IViewSettingsState;
14
+ actions: IPrimaryAction[];
15
+ }) => {
16
+ primaryButton: JSX.Element;
17
+ };