@economic/taco 2.54.0 → 2.55.0-settings.1
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.
- package/dist/components/Provider/Provider.d.ts +7 -6
- package/dist/components/Provider/TacoContext.d.ts +7 -0
- package/dist/components/Provider/useTacoSettings.d.ts +8 -0
- package/dist/components/Report/Report.d.ts +1 -1
- package/dist/esm/packages/taco/src/components/Provider/Provider.js +14 -7
- package/dist/esm/packages/taco/src/components/Provider/Provider.js.map +1 -1
- package/dist/esm/packages/taco/src/components/Provider/TacoContext.js +6 -0
- package/dist/esm/packages/taco/src/components/Provider/TacoContext.js.map +1 -0
- package/dist/esm/packages/taco/src/components/Provider/useTacoSettings.js +39 -0
- package/dist/esm/packages/taco/src/components/Provider/useTacoSettings.js.map +1 -0
- package/dist/esm/packages/taco/src/components/Report/Report.js +8 -0
- package/dist/esm/packages/taco/src/components/Report/Report.js.map +1 -1
- package/dist/esm/packages/taco/src/components/Table3/Table3.js +8 -0
- package/dist/esm/packages/taco/src/components/Table3/Table3.js.map +1 -1
- package/dist/esm/packages/taco/src/hooks/useTaco.js +9 -0
- package/dist/esm/packages/taco/src/hooks/useTaco.js.map +1 -0
- package/dist/esm/packages/taco/src/index.js +1 -1
- package/dist/esm/packages/taco/src/primitives/Table/Core/components/Toolbar/Toolbar.js +6 -4
- package/dist/esm/packages/taco/src/primitives/Table/Core/components/Toolbar/Toolbar.js.map +1 -1
- package/dist/esm/packages/taco/src/primitives/Table/Core/features/useTableRenderer.js +9 -5
- package/dist/esm/packages/taco/src/primitives/Table/Core/features/useTableRenderer.js.map +1 -1
- package/dist/esm/packages/taco/src/primitives/Table/Core/useTable.js.map +1 -1
- package/dist/esm/packages/taco/src/primitives/Table/types.js.map +1 -1
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/features/useTablePrinting.js +18 -21
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/features/useTablePrinting.js.map +1 -1
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/features/useTableRowActive.js +2 -2
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/features/useTableRowActive.js.map +1 -1
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/listeners/useTableSettingsListener.js +57 -9
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/listeners/useTableSettingsListener.js.map +1 -1
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/useTableManager.js +7 -5
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/useTableManager.js.map +1 -1
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/useTableSettingsPreloader.js +44 -0
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/useTableSettingsPreloader.js.map +1 -0
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/util/settings.js +3 -1
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/util/settings.js.map +1 -1
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/util/setup.js +5 -2
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/util/setup.js.map +1 -1
- package/dist/hooks/useTaco.d.ts +1 -0
- package/dist/primitives/Table/Core/features/useTableRenderer.d.ts +2 -2
- package/dist/primitives/Table/Core/useTable.d.ts +4 -4
- package/dist/primitives/Table/types.d.ts +16 -6
- package/dist/primitives/Table/useTableManager/features/useTablePrinting.d.ts +2 -8
- package/dist/primitives/Table/useTableManager/features/useTableRowActive.d.ts +2 -2
- package/dist/primitives/Table/useTableManager/listeners/useTableSettingsListener.d.ts +2 -2
- package/dist/primitives/Table/useTableManager/useTableSettingsPreloader.d.ts +3 -0
- package/dist/primitives/Table/useTableManager/util/settings.d.ts +2 -0
- package/dist/taco.cjs.development.js +195 -153
- package/dist/taco.cjs.development.js.map +1 -1
- package/dist/taco.cjs.production.min.js +1 -1
- package/dist/taco.cjs.production.min.js.map +1 -1
- package/package.json +2 -2
- package/dist/esm/packages/taco/src/hooks/useLocalStorage.js +0 -44
- package/dist/esm/packages/taco/src/hooks/useLocalStorage.js.map +0 -1
- package/dist/esm/packages/taco/src/hooks/useTacoSettings.js +0 -9
- package/dist/esm/packages/taco/src/hooks/useTacoSettings.js.map +0 -1
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/features/useTableSettings.js +0 -69
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/features/useTableSettings.js.map +0 -1
- package/dist/hooks/useLocalStorage.d.ts +0 -2
- package/dist/hooks/useTacoSettings.d.ts +0 -1
- package/dist/primitives/Table/useTableManager/features/useTableSettings.d.ts +0 -3
@@ -28,6 +28,7 @@ var PrimitiveSwitch = require('@radix-ui/react-switch');
|
|
28
28
|
var DropdownMenuPrimitive = require('@radix-ui/react-dropdown-menu');
|
29
29
|
var RadioGroupPrimitive = require('@radix-ui/react-radio-group');
|
30
30
|
var ReactDOM = _interopDefault(require('react-dom'));
|
31
|
+
var lodash = require('lodash');
|
31
32
|
var reactTable = require('@tanstack/react-table');
|
32
33
|
var get = _interopDefault(require('lodash/get'));
|
33
34
|
var reactVirtual = require('@tanstack/react-virtual');
|
@@ -9950,16 +9951,57 @@ const ToastProvider = ({
|
|
9950
9951
|
};
|
9951
9952
|
const useToast = () => React.useContext(ToastContext);
|
9952
9953
|
|
9953
|
-
const TacoContext = /*#__PURE__*/React.createContext({
|
9954
|
-
|
9955
|
-
|
9954
|
+
const TacoContext = /*#__PURE__*/React.createContext({});
|
9955
|
+
|
9956
|
+
function useTacoSettings(load, save) {
|
9957
|
+
const saveSetting = function (path, value) {
|
9958
|
+
try {
|
9959
|
+
setState(currentState => lodash.setWith(currentState, path, value, Object));
|
9960
|
+
return Promise.resolve(save(path, value)); // don't block, since we have local state
|
9961
|
+
} catch (e) {
|
9962
|
+
return Promise.reject(e);
|
9963
|
+
}
|
9964
|
+
};
|
9965
|
+
const loadSetting = function (path) {
|
9966
|
+
try {
|
9967
|
+
const currentValue = lodash.get(state, path);
|
9968
|
+
if (currentValue) {
|
9969
|
+
return Promise.resolve(currentValue);
|
9970
|
+
}
|
9971
|
+
return Promise.resolve(load(path)).then(function (value) {
|
9972
|
+
setState(currentState => lodash.setWith(currentState, path, value, Object));
|
9973
|
+
return value;
|
9974
|
+
});
|
9975
|
+
} catch (e) {
|
9976
|
+
return Promise.reject(e);
|
9977
|
+
}
|
9978
|
+
};
|
9979
|
+
const [state, setState] = React.useState({});
|
9980
|
+
function getSetting(path) {
|
9981
|
+
return lodash.get(state, path);
|
9982
|
+
}
|
9983
|
+
return {
|
9984
|
+
getSetting,
|
9985
|
+
loadSetting,
|
9986
|
+
saveSetting
|
9987
|
+
};
|
9988
|
+
}
|
9989
|
+
|
9956
9990
|
const Provider = props => {
|
9957
9991
|
const {
|
9958
9992
|
children,
|
9959
9993
|
localization,
|
9960
|
-
|
9994
|
+
loadSetting,
|
9995
|
+
saveSetting,
|
9996
|
+
userId
|
9961
9997
|
} = props;
|
9962
|
-
const
|
9998
|
+
const settings = useTacoSettings(loadSetting, saveSetting);
|
9999
|
+
const context = React.useMemo(() => {
|
10000
|
+
return {
|
10001
|
+
settings,
|
10002
|
+
userId
|
10003
|
+
};
|
10004
|
+
}, []);
|
9963
10005
|
return /*#__PURE__*/React.createElement(LocalizationProvider, {
|
9964
10006
|
localization: localization
|
9965
10007
|
}, /*#__PURE__*/React.createElement(TacoContext.Provider, {
|
@@ -10373,6 +10415,7 @@ function getHiddenColumns(columnVisibility = {}) {
|
|
10373
10415
|
return Object.keys(columnVisibility).filter(c => columnVisibility[c] === false);
|
10374
10416
|
}
|
10375
10417
|
|
10418
|
+
const getSettingsId = tableId => `table.${tableId.replace('.', '_')}`;
|
10376
10419
|
function getSettings(table) {
|
10377
10420
|
const meta = table.options.meta;
|
10378
10421
|
const state = table.getState();
|
@@ -10386,6 +10429,7 @@ function getSettings(table) {
|
|
10386
10429
|
excludeUnmatchedRecordsInSearch: table.options.enableGlobalFilter,
|
10387
10430
|
fontSize: meta.fontSize.isEnabled ? meta.fontSize.size : undefined,
|
10388
10431
|
//grouping: table.options.enableGrouping ? state.grouping : undefined,
|
10432
|
+
print: meta.printing.settings,
|
10389
10433
|
rowHeight: meta.rowHeight.isEnabled ? meta.rowHeight.height : undefined,
|
10390
10434
|
//searchQuery: table.options.enableGlobalFilter ? state.globalFilter : undefined,
|
10391
10435
|
sorting: state.sorting
|
@@ -10692,8 +10736,11 @@ function useReactTableInitialState(props, columns, persistedSettings, defaults)
|
|
10692
10736
|
if (columnPinning !== null && columnPinning !== void 0 && (_columnPinning$left = columnPinning.left) !== null && _columnPinning$left !== void 0 && _columnPinning$left.length) {
|
10693
10737
|
columnPinning.left = freezeUptoExternalColumn(columnOrder.indexOf(columnPinning.left[columnPinning.left.length - 1]), columnOrder);
|
10694
10738
|
} else {
|
10695
|
-
if (props.defaultColumnFreezingIndex) {
|
10696
|
-
|
10739
|
+
if (props.defaultColumnFreezingIndex !== undefined) {
|
10740
|
+
const index = typeof props.defaultColumnFreezingIndex === 'function' ? props.defaultColumnFreezingIndex(persistedSettings) : props.defaultColumnFreezingIndex;
|
10741
|
+
if (index !== undefined) {
|
10742
|
+
columnPinning.left = freezeUptoExternalColumn(index, columnOrder);
|
10743
|
+
}
|
10697
10744
|
} else {
|
10698
10745
|
columnPinning.left = unfreezeAllExternalColumns(columnOrder);
|
10699
10746
|
}
|
@@ -10899,53 +10946,28 @@ function useTableFontSize(isEnabled = false, defaultFontSize = 'medium') {
|
|
10899
10946
|
};
|
10900
10947
|
}
|
10901
10948
|
|
10902
|
-
function
|
10949
|
+
function useTaco() {
|
10903
10950
|
return React__default.useContext(TacoContext);
|
10904
10951
|
}
|
10905
10952
|
|
10906
|
-
const
|
10907
|
-
|
10908
|
-
|
10909
|
-
|
10910
|
-
|
10911
|
-
try {
|
10912
|
-
const localStorageValue = localStorage.getItem(key);
|
10913
|
-
if (typeof localStorageValue !== 'string') {
|
10914
|
-
localStorage.setItem(key, JSON.stringify(initialValue));
|
10915
|
-
return initialValue;
|
10916
|
-
} else {
|
10917
|
-
return JSON.parse(localStorageValue || 'null');
|
10918
|
-
}
|
10919
|
-
} catch {
|
10920
|
-
// If user is in private mode or has storage restriction
|
10921
|
-
// localStorage can throw. JSON.parse and JSON.stringify
|
10922
|
-
// can throw, too.
|
10923
|
-
return initialValue;
|
10924
|
-
}
|
10925
|
-
});
|
10926
|
-
React__default.useEffect(() => {
|
10927
|
-
if (!key) {
|
10928
|
-
return;
|
10929
|
-
}
|
10930
|
-
try {
|
10931
|
-
const serializedState = JSON.stringify(state);
|
10932
|
-
localStorage.setItem(key, serializedState);
|
10933
|
-
} catch {
|
10934
|
-
// If user is in private mode or has storage restriction
|
10935
|
-
// localStorage can throw. Also JSON.stringify can throw.
|
10936
|
-
}
|
10937
|
-
}, [key, state]);
|
10938
|
-
const clear = () => {
|
10939
|
-
if (key) {
|
10940
|
-
localStorage.removeItem(key);
|
10941
|
-
}
|
10942
|
-
};
|
10943
|
-
return [state, setState, clear];
|
10953
|
+
const DEFAULT_PRINT_SETTINGS = {
|
10954
|
+
size: 'A4',
|
10955
|
+
orientation: 'portrait',
|
10956
|
+
allRows: true,
|
10957
|
+
splitGroups: true
|
10944
10958
|
};
|
10945
|
-
|
10946
10959
|
function useTablePrinting(isEnabled = false, tableId) {
|
10960
|
+
var _taco$settings$getSet, _taco$settings$getSet2;
|
10947
10961
|
const [isPrinting, setIsPrinting] = React__default.useState(false);
|
10948
|
-
const
|
10962
|
+
const taco = useTaco();
|
10963
|
+
const key = getSettingsId(tableId);
|
10964
|
+
const [settings, _setSettings] = React__default.useState((_taco$settings$getSet = (_taco$settings$getSet2 = taco.settings.getSetting(key)) === null || _taco$settings$getSet2 === void 0 ? void 0 : _taco$settings$getSet2.print) !== null && _taco$settings$getSet !== void 0 ? _taco$settings$getSet : DEFAULT_PRINT_SETTINGS);
|
10965
|
+
function setSetting(path, value) {
|
10966
|
+
_setSettings(currentSettings => ({
|
10967
|
+
...currentSettings,
|
10968
|
+
[path]: value
|
10969
|
+
}));
|
10970
|
+
}
|
10949
10971
|
return {
|
10950
10972
|
isEnabled,
|
10951
10973
|
isPrinting,
|
@@ -10954,24 +10976,6 @@ function useTablePrinting(isEnabled = false, tableId) {
|
|
10954
10976
|
setSetting
|
10955
10977
|
};
|
10956
10978
|
}
|
10957
|
-
const DEFAULT_PRINT_SETTINGS = {
|
10958
|
-
size: 'A4',
|
10959
|
-
orientation: 'portrait',
|
10960
|
-
allRows: true,
|
10961
|
-
splitGroups: true
|
10962
|
-
};
|
10963
|
-
function useTablePrintingSettings(tableId) {
|
10964
|
-
const tacoSettings = useTacoSettings();
|
10965
|
-
const uniqueId = `taco.${tacoSettings.uniqueUserIdentifier}.table.${tableId}.print.settings`;
|
10966
|
-
const [persistedSettings, setPersistedSettings] = useLocalStorage(uniqueId, DEFAULT_PRINT_SETTINGS);
|
10967
|
-
function setSetting(key, value) {
|
10968
|
-
setPersistedSettings(currentSettings => ({
|
10969
|
-
...currentSettings,
|
10970
|
-
[key]: value
|
10971
|
-
}));
|
10972
|
-
}
|
10973
|
-
return [persistedSettings, setSetting];
|
10974
|
-
}
|
10975
10979
|
|
10976
10980
|
const DEFAULT_ROW_ACTIONS_LENGTH = 4;
|
10977
10981
|
function useTableRowActions(isEnabled = false, rowActions, rowActionsLength = DEFAULT_ROW_ACTIONS_LENGTH) {
|
@@ -11006,8 +11010,8 @@ const useIsHoverStatePaused = () => {
|
|
11006
11010
|
return [shouldPauseHoverState, setShouldPauseHoverState];
|
11007
11011
|
};
|
11008
11012
|
|
11009
|
-
function useTableRowActive(isEnabled = false, initialRowActiveIndex) {
|
11010
|
-
const [rowActiveIndex, setRowActiveIndex] = React__default.useState(initialRowActiveIndex);
|
11013
|
+
function useTableRowActive(isEnabled = false, tableSettings, initialRowActiveIndex) {
|
11014
|
+
const [rowActiveIndex, setRowActiveIndex] = React__default.useState(typeof initialRowActiveIndex === 'function' ? initialRowActiveIndex(tableSettings) : initialRowActiveIndex);
|
11011
11015
|
const [rowHoverIndex, setRowHoverIndex] = React__default.useState(undefined);
|
11012
11016
|
const [isHoverStatePaused, setHoverStatePaused] = useIsHoverStatePaused();
|
11013
11017
|
const move = (direction, length, scrollToIndex) => {
|
@@ -11641,69 +11645,6 @@ function useTableServerLoading(length, data, loadPage, loadAll, pages, pageSize
|
|
11641
11645
|
};
|
11642
11646
|
}
|
11643
11647
|
|
11644
|
-
const DEFAULT_ENABLED_OPTIONS = {
|
11645
|
-
columnOrder: true,
|
11646
|
-
columnPinning: true,
|
11647
|
-
columnSizing: true,
|
11648
|
-
columnVisibility: true,
|
11649
|
-
excludeUnmatchedRecordsInSearch: true,
|
11650
|
-
fontSize: true,
|
11651
|
-
grouping: true,
|
11652
|
-
rowHeight: true,
|
11653
|
-
sorting: true
|
11654
|
-
};
|
11655
|
-
function useUniqueTableId(tableId) {
|
11656
|
-
const tacoSettings = useTacoSettings();
|
11657
|
-
return `taco.${tacoSettings.uniqueUserIdentifier}.table.${tableId}.settings`;
|
11658
|
-
}
|
11659
|
-
function useEnabledSettings(isEnabled) {
|
11660
|
-
return React__default.useMemo(() => {
|
11661
|
-
if (isEnabled === false) {
|
11662
|
-
return [Object.keys(DEFAULT_ENABLED_OPTIONS).reduce((o, key) => ({
|
11663
|
-
...o,
|
11664
|
-
[key]: false
|
11665
|
-
}), {}), false];
|
11666
|
-
} else if (isEnabled === true) {
|
11667
|
-
return [DEFAULT_ENABLED_OPTIONS, true];
|
11668
|
-
}
|
11669
|
-
const options = {
|
11670
|
-
...DEFAULT_ENABLED_OPTIONS,
|
11671
|
-
...isEnabled
|
11672
|
-
};
|
11673
|
-
return [options, Object.values(options).some(o => o === true)];
|
11674
|
-
}, [isEnabled]);
|
11675
|
-
}
|
11676
|
-
function useTableSettings(isEnabled = false, id, defaultSettings = {}, onChangeSettings) {
|
11677
|
-
const uniqueId = useUniqueTableId(id);
|
11678
|
-
const [enabledSettings, hasSomeEnabledSettings] = useEnabledSettings(isEnabled);
|
11679
|
-
const [persistedSettings, _setPersistedSettings] = useLocalStorage(hasSomeEnabledSettings ? uniqueId : undefined, removeDisabledSettings(defaultSettings, enabledSettings));
|
11680
|
-
const setPersistedSettings = React__default.useCallback(value => {
|
11681
|
-
if (!hasSomeEnabledSettings) {
|
11682
|
-
return;
|
11683
|
-
}
|
11684
|
-
const sanitizedSettings = removeDisabledSettings(value, enabledSettings);
|
11685
|
-
_setPersistedSettings(sanitizedSettings);
|
11686
|
-
if (typeof onChangeSettings === 'function') {
|
11687
|
-
onChangeSettings(sanitizedSettings);
|
11688
|
-
}
|
11689
|
-
}, [hasSomeEnabledSettings, onChangeSettings, JSON.stringify(enabledSettings)]);
|
11690
|
-
if (!hasSomeEnabledSettings) {
|
11691
|
-
return [defaultSettings, () => undefined];
|
11692
|
-
}
|
11693
|
-
return [persistedSettings, setPersistedSettings];
|
11694
|
-
}
|
11695
|
-
function removeDisabledSettings(settings, enabledSettings) {
|
11696
|
-
const sanitizedSettings = {
|
11697
|
-
...settings
|
11698
|
-
};
|
11699
|
-
Object.keys(enabledSettings).forEach(setting => {
|
11700
|
-
if (!enabledSettings[setting]) {
|
11701
|
-
delete sanitizedSettings[setting];
|
11702
|
-
}
|
11703
|
-
});
|
11704
|
-
return sanitizedSettings;
|
11705
|
-
}
|
11706
|
-
|
11707
11648
|
// augments useEffect to not run on the initial mount
|
11708
11649
|
function useLazyEffect(effect, deps) {
|
11709
11650
|
const readyRef = React__default.useRef(false);
|
@@ -11835,26 +11776,73 @@ function useTableSearchListener(table) {
|
|
11835
11776
|
}, [meta.server.loading, meta.search.isEnabled, meta.search.enableGlobalFilter, table.getRowModel().rows.length, query, JSON.stringify(table.getState().sorting)]);
|
11836
11777
|
}
|
11837
11778
|
|
11838
|
-
function useTableSettingsListener(table, onChangeSettings) {
|
11779
|
+
function useTableSettingsListener(table, tableId, onChangeSettings, isEnabled = false) {
|
11780
|
+
const [enabledSettings, hasSomeEnabledSettings] = useEnabledSettings(isEnabled);
|
11781
|
+
const taco = useTaco();
|
11839
11782
|
const meta = table.options.meta;
|
11840
11783
|
const state = table.getState();
|
11841
11784
|
React__default.useEffect(() => {
|
11842
|
-
|
11843
|
-
|
11844
|
-
|
11785
|
+
const handler = setTimeout(() => {
|
11786
|
+
if (!hasSomeEnabledSettings) {
|
11787
|
+
return;
|
11788
|
+
}
|
11789
|
+
const settings = removeDisabledSettings(getSettings(table), enabledSettings);
|
11790
|
+
if (Object.keys(settings).length) {
|
11845
11791
|
// some settings shouldn't be persisted, but we comment them out here to highlight the intention
|
11846
|
-
|
11847
|
-
|
11848
|
-
|
11792
|
+
taco.settings.saveSetting(getSettingsId(tableId), settings);
|
11793
|
+
if (onChangeSettings) {
|
11794
|
+
onChangeSettings(getSettings(table));
|
11795
|
+
}
|
11796
|
+
}
|
11797
|
+
}, 250);
|
11849
11798
|
return () => clearTimeout(handler);
|
11850
11799
|
}, [
|
11851
11800
|
//state.columnFilters,
|
11852
11801
|
state.columnOrder, state.columnPinning, state.columnSizing, state.columnVisibility, table.options.enableGlobalFilter, meta.fontSize.size,
|
11853
11802
|
//state.grouping,
|
11854
|
-
meta.rowHeight.height,
|
11803
|
+
meta.printing.settings, meta.rowHeight.height,
|
11855
11804
|
//state.globalFilter,
|
11856
11805
|
state.sorting]);
|
11857
11806
|
}
|
11807
|
+
const DEFAULT_ENABLED_OPTIONS = {
|
11808
|
+
columnOrder: true,
|
11809
|
+
columnPinning: true,
|
11810
|
+
columnSizing: true,
|
11811
|
+
columnVisibility: true,
|
11812
|
+
excludeUnmatchedRecordsInSearch: true,
|
11813
|
+
fontSize: true,
|
11814
|
+
grouping: true,
|
11815
|
+
rowHeight: true,
|
11816
|
+
sorting: true
|
11817
|
+
};
|
11818
|
+
function useEnabledSettings(isEnabled) {
|
11819
|
+
return React__default.useMemo(() => {
|
11820
|
+
if (isEnabled === false) {
|
11821
|
+
return [Object.keys(DEFAULT_ENABLED_OPTIONS).reduce((o, key) => ({
|
11822
|
+
...o,
|
11823
|
+
[key]: false
|
11824
|
+
}), {}), false];
|
11825
|
+
} else if (isEnabled === true) {
|
11826
|
+
return [DEFAULT_ENABLED_OPTIONS, true];
|
11827
|
+
}
|
11828
|
+
const options = {
|
11829
|
+
...DEFAULT_ENABLED_OPTIONS,
|
11830
|
+
...isEnabled
|
11831
|
+
};
|
11832
|
+
return [options, Object.values(options).some(o => o === true)];
|
11833
|
+
}, [isEnabled]);
|
11834
|
+
}
|
11835
|
+
function removeDisabledSettings(settings, enabledSettings) {
|
11836
|
+
const sanitizedSettings = {
|
11837
|
+
...settings
|
11838
|
+
};
|
11839
|
+
Object.keys(enabledSettings).forEach(setting => {
|
11840
|
+
if (!enabledSettings[setting]) {
|
11841
|
+
delete sanitizedSettings[setting];
|
11842
|
+
}
|
11843
|
+
});
|
11844
|
+
return sanitizedSettings;
|
11845
|
+
}
|
11858
11846
|
|
11859
11847
|
function useTableShortcutsListener(table, shortcuts) {
|
11860
11848
|
const meta = table.options.meta;
|
@@ -11949,14 +11937,15 @@ function useTableRowDrop(isEnabled = false, onRowDrop) {
|
|
11949
11937
|
// Placed this array outside the hook to avoid creating a new array reference on each hook re-render
|
11950
11938
|
const DEFAULT_EMPTY_ARRAY = [];
|
11951
11939
|
function useTableManager(props, meta, internalColumns) {
|
11952
|
-
var _props$data, _props$length, _meta$editing, _instance$options$met;
|
11940
|
+
var _ref, _taco$settings$getSet, _props$data, _props$length, _meta$editing, _instance$options$met;
|
11941
|
+
const taco = useTaco();
|
11953
11942
|
const localization = useLocalization();
|
11954
11943
|
// CSS.escape would be best here, but it doesn't seem to work very well
|
11955
11944
|
const safeId = props.id.replace('.', '_');
|
11956
11945
|
// configure table options, merging props with presets
|
11957
11946
|
const options = getTableFeaturePreset(props);
|
11958
11947
|
// load any persisted table settings and merge them with any defaults
|
11959
|
-
const
|
11948
|
+
const settings = (_ref = (_taco$settings$getSet = taco.settings.getSetting(getSettingsId(safeId))) !== null && _taco$settings$getSet !== void 0 ? _taco$settings$getSet : props.defaultSettings) !== null && _ref !== void 0 ? _ref : {};
|
11960
11949
|
// ensure data is always valid
|
11961
11950
|
const data = (_props$data = props.data) !== null && _props$data !== void 0 ? _props$data : DEFAULT_EMPTY_ARRAY;
|
11962
11951
|
const length = (_props$length = props.length) !== null && _props$length !== void 0 ? _props$length : data.length;
|
@@ -11966,7 +11955,7 @@ function useTableManager(props, meta, internalColumns) {
|
|
11966
11955
|
const fontSize = useTableFontSize(options.enableFontSize, settings.fontSize);
|
11967
11956
|
const footer = useTableFooter(options.enableFooter);
|
11968
11957
|
const printing = useTablePrinting(options.enablePrinting, safeId);
|
11969
|
-
const rowActive = useTableRowActive(options.enableRowActive, props.defaultRowActiveIndex);
|
11958
|
+
const rowActive = useTableRowActive(options.enableRowActive, settings, props.defaultRowActiveIndex);
|
11970
11959
|
const rowActions = useTableRowActions(options.enableRowActions, props.rowActions, props.rowActionsLength);
|
11971
11960
|
const rowClick = useTableRowClick(options.enableRowClick, props.onRowClick);
|
11972
11961
|
const rowDrag = useTableRowDrag(options.enableRowDrag && !(meta !== null && meta !== void 0 && (_meta$editing = meta.editing) !== null && _meta$editing !== void 0 && _meta$editing.isEditing), props.onRowDrag);
|
@@ -12031,7 +12020,7 @@ function useTableManager(props, meta, internalColumns) {
|
|
12031
12020
|
useTableRowSelectionListener(instance, props.onRowSelect);
|
12032
12021
|
useTableSearchListener(instance);
|
12033
12022
|
useTableServerLoadingListener(instance, server.loadPage);
|
12034
|
-
useTableSettingsListener(instance,
|
12023
|
+
useTableSettingsListener(instance, safeId, props._DEPRECATED_DO_NOT_USE_onChangeSettings, options.enableSaveSettings);
|
12035
12024
|
useTableShortcutsListener(instance, props.shortcuts);
|
12036
12025
|
useTableSortingListener(instance, props.onChangeSort);
|
12037
12026
|
return {
|
@@ -12504,11 +12493,14 @@ function useTableRenderer(renderers, table, tableRef, length, defaultRowActiveIn
|
|
12504
12493
|
const [paddingTop, paddingBottom] = virtualItems.length > 0 ? [Math.max(0, startValue !== null && startValue !== void 0 ? startValue : 0), Math.max(0, totalSize - ((_virtualItems$end = (_virtualItems = virtualItems[virtualItems.length - 1]) === null || _virtualItems === void 0 ? void 0 : _virtualItems.end) !== null && _virtualItems$end !== void 0 ? _virtualItems$end : 0))] : [0, 0];
|
12505
12494
|
// ensure default active rows are scrolled to
|
12506
12495
|
React__default.useEffect(() => {
|
12507
|
-
if (defaultRowActiveIndex) {
|
12508
|
-
|
12509
|
-
|
12510
|
-
|
12511
|
-
|
12496
|
+
if (defaultRowActiveIndex !== undefined) {
|
12497
|
+
const index = typeof defaultRowActiveIndex === 'function' ? defaultRowActiveIndex(getSettings(table)) : defaultRowActiveIndex;
|
12498
|
+
if (index !== undefined) {
|
12499
|
+
scrollToIndex(index, {
|
12500
|
+
align: 'center',
|
12501
|
+
behavior: 'auto'
|
12502
|
+
});
|
12503
|
+
}
|
12512
12504
|
}
|
12513
12505
|
}, []);
|
12514
12506
|
// rendered output
|
@@ -17184,15 +17176,16 @@ function TableToolbar(props) {
|
|
17184
17176
|
const canPrint = table.meta.printing.isEnabled;
|
17185
17177
|
const canSettings = canChangeSettings(table.instance, table.props.customSettings);
|
17186
17178
|
const canSearch = table.meta.search.isEnabled;
|
17179
|
+
const settings = getSettings(table.instance);
|
17187
17180
|
return /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement("div", Object.assign({}, attributes, {
|
17188
17181
|
className: "mb-4 flex flex-shrink flex-grow-0 flex-wrap gap-2 print:hidden",
|
17189
17182
|
"data-taco": "table-toolbar"
|
17190
|
-
}), table.props.toolbarLeft, /*#__PURE__*/React__default.createElement(Group, {
|
17183
|
+
}), typeof table.props.toolbarLeft === 'function' ? table.props.toolbarLeft(settings) : table.props.toolbarLeft, /*#__PURE__*/React__default.createElement(Group, {
|
17191
17184
|
className: "ml-auto flex-shrink-0 items-center print:hidden"
|
17192
17185
|
}, customTools, canFilter ? /*#__PURE__*/React__default.createElement(Filters, {
|
17193
17186
|
length: table.meta.length,
|
17194
17187
|
table: table.instance
|
17195
|
-
}) : null, table.props.toolbarRight, canPrint ? /*#__PURE__*/React__default.createElement(Print$1, {
|
17188
|
+
}) : null, typeof table.props.toolbarRight === 'function' ? table.props.toolbarRight(settings) : table.props.toolbarRight, canPrint ? /*#__PURE__*/React__default.createElement(Print$1, {
|
17196
17189
|
table: table.instance,
|
17197
17190
|
tableId: table.id,
|
17198
17191
|
tableRef: table.ref
|
@@ -17203,9 +17196,9 @@ function TableToolbar(props) {
|
|
17203
17196
|
scrollToIndex: table.renderer.scrollToIndex,
|
17204
17197
|
table: table.instance,
|
17205
17198
|
tableRef: table.ref
|
17206
|
-
})) : null)), table.props.toolbarPanel ? /*#__PURE__*/React__default.createElement("div", {
|
17199
|
+
})) : null)), table.props.toolbarPanel ? (/*#__PURE__*/React__default.createElement("div", {
|
17207
17200
|
className: "mb-4"
|
17208
|
-
}, table.props.toolbarPanel) : undefined);
|
17201
|
+
}, typeof table.props.toolbarPanel === 'function' ? table.props.toolbarPanel(settings) : table.props.toolbarPanel)) : undefined);
|
17209
17202
|
}
|
17210
17203
|
function canChangeSettings(table, customSettings) {
|
17211
17204
|
const tableMeta = table.options.meta;
|
@@ -17284,6 +17277,44 @@ function TableGrid(props) {
|
|
17284
17277
|
}, footerRows) : null)))));
|
17285
17278
|
}
|
17286
17279
|
|
17280
|
+
function getLegacySetting(currentKey) {
|
17281
|
+
try {
|
17282
|
+
const localStorageValue = localStorage.getItem(currentKey);
|
17283
|
+
if (localStorageValue) {
|
17284
|
+
const value = JSON.parse(localStorageValue || 'null');
|
17285
|
+
if (value !== null) {
|
17286
|
+
localStorage.removeItem(currentKey);
|
17287
|
+
return value;
|
17288
|
+
}
|
17289
|
+
}
|
17290
|
+
} catch {
|
17291
|
+
// If user is in private mode or has storage restriction
|
17292
|
+
// localStorage can throw. JSON.parse can throw, too.
|
17293
|
+
}
|
17294
|
+
return undefined;
|
17295
|
+
}
|
17296
|
+
function useTableSettingsPreloader(tableId) {
|
17297
|
+
const taco = useTaco();
|
17298
|
+
const [loading, setLoading] = React__default.useState(true);
|
17299
|
+
React__default.useLayoutEffect(() => {
|
17300
|
+
const key = getSettingsId(tableId);
|
17301
|
+
// migrate legacy settings if they exist, can be removed in the future
|
17302
|
+
const legacySettings = getLegacySetting(`taco.${taco.userId}.table.${tableId}.settings`);
|
17303
|
+
if (legacySettings) {
|
17304
|
+
const legacyPrintSettings = getLegacySetting(`taco.${taco.userId}.table.${tableId}.print.settings`);
|
17305
|
+
taco.settings.saveSetting(key, {
|
17306
|
+
...legacySettings,
|
17307
|
+
print: legacyPrintSettings !== null && legacyPrintSettings !== void 0 ? legacyPrintSettings : {}
|
17308
|
+
}).finally(() => setLoading(false));
|
17309
|
+
} else {
|
17310
|
+
taco.settings.loadSetting(key).finally(() => setLoading(false));
|
17311
|
+
}
|
17312
|
+
}, []);
|
17313
|
+
return {
|
17314
|
+
loading
|
17315
|
+
};
|
17316
|
+
}
|
17317
|
+
|
17287
17318
|
const Column$1 = () => null;
|
17288
17319
|
Column$1.displayName = 'Table3Column';
|
17289
17320
|
function Group$4(_) {
|
@@ -17303,6 +17334,12 @@ const Report$1 = /*#__PURE__*/fixedForwardRef(function Report(props, ref) {
|
|
17303
17334
|
// we force a remount (using key) when the child columns change because there are too many places to add children as an effect
|
17304
17335
|
// this is cheaper from a complexity perspective, and probably performance wise as well
|
17305
17336
|
const key = React__default.useMemo(() => String('tableKey_' + stringifiedChildren), [stringifiedChildren]);
|
17337
|
+
const {
|
17338
|
+
loading
|
17339
|
+
} = useTableSettingsPreloader(props.id);
|
17340
|
+
if (loading) {
|
17341
|
+
return /*#__PURE__*/React__default.createElement(Spinner, null);
|
17342
|
+
}
|
17306
17343
|
return /*#__PURE__*/React__default.createElement(BaseReport, Object.assign({}, props, {
|
17307
17344
|
key: key,
|
17308
17345
|
ref: ref
|
@@ -20684,6 +20721,12 @@ const Table3 = /*#__PURE__*/fixedForwardRef(function Table3(props, ref) {
|
|
20684
20721
|
// we force a remount (using key) when the child columns change because there are too many places to add children as an effect
|
20685
20722
|
// this is cheaper from a complexity perspective, and probably performance wise as well
|
20686
20723
|
const key = React__default.useMemo(() => String('tableKey_' + stringifiedChildren), [stringifiedChildren]);
|
20724
|
+
const {
|
20725
|
+
loading
|
20726
|
+
} = useTableSettingsPreloader(props.id);
|
20727
|
+
if (loading) {
|
20728
|
+
return /*#__PURE__*/React__default.createElement(Spinner, null);
|
20729
|
+
}
|
20687
20730
|
return /*#__PURE__*/React__default.createElement(BaseTable3, Object.assign({}, props, {
|
20688
20731
|
key: key,
|
20689
20732
|
ref: ref
|
@@ -22720,7 +22763,6 @@ exports.Switch = Switch;
|
|
22720
22763
|
exports.Table = Table$1;
|
22721
22764
|
exports.Table3 = Table3;
|
22722
22765
|
exports.Tabs = Tabs;
|
22723
|
-
exports.TacoContext = TacoContext;
|
22724
22766
|
exports.Tag = Tag$1;
|
22725
22767
|
exports.Textarea = Textarea;
|
22726
22768
|
exports.Title = Title$3;
|