@economic/taco 2.53.0-settings.6 → 2.53.0-virtualiser.0
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 +6 -7
- package/dist/components/Report/Report.d.ts +1 -1
- package/dist/esm/packages/taco/src/components/Provider/Provider.js +7 -14
- package/dist/esm/packages/taco/src/components/Provider/Provider.js.map +1 -1
- package/dist/esm/packages/taco/src/components/Report/Report.js +0 -8
- package/dist/esm/packages/taco/src/components/Report/Report.js.map +1 -1
- package/dist/esm/packages/taco/src/components/Table3/Table3.js +0 -8
- package/dist/esm/packages/taco/src/components/Table3/Table3.js.map +1 -1
- package/dist/esm/packages/taco/src/hooks/useLocalStorage.js +44 -0
- package/dist/esm/packages/taco/src/hooks/useLocalStorage.js.map +1 -0
- package/dist/esm/packages/taco/src/hooks/useTacoSettings.js +9 -0
- package/dist/esm/packages/taco/src/hooks/useTacoSettings.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 +4 -6
- 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 -9
- 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 +21 -18
- 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/features/useTableSettings.js +69 -0
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/features/useTableSettings.js.map +1 -0
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/listeners/useTableSettingsListener.js +9 -57
- 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 +5 -7
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/useTableManager.js.map +1 -1
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/util/settings.js +1 -3
- 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 +2 -5
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/util/setup.js.map +1 -1
- package/dist/hooks/useLocalStorage.d.ts +2 -0
- package/dist/hooks/useTacoSettings.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 +6 -16
- package/dist/primitives/Table/useTableManager/features/useTablePrinting.d.ts +8 -2
- package/dist/primitives/Table/useTableManager/features/useTableRowActive.d.ts +2 -2
- package/dist/primitives/Table/useTableManager/features/useTableSettings.d.ts +3 -0
- package/dist/primitives/Table/useTableManager/listeners/useTableSettingsListener.d.ts +2 -2
- package/dist/primitives/Table/useTableManager/util/settings.d.ts +0 -2
- package/dist/taco.cjs.development.js +156 -195
- 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/components/Provider/TacoContext.d.ts +0 -7
- package/dist/components/Provider/useTacoSettings.d.ts +0 -8
- package/dist/esm/packages/taco/src/components/Provider/TacoContext.js +0 -6
- package/dist/esm/packages/taco/src/components/Provider/TacoContext.js.map +0 -1
- package/dist/esm/packages/taco/src/components/Provider/useTacoSettings.js +0 -39
- package/dist/esm/packages/taco/src/components/Provider/useTacoSettings.js.map +0 -1
- package/dist/esm/packages/taco/src/hooks/useTaco.js +0 -9
- package/dist/esm/packages/taco/src/hooks/useTaco.js.map +0 -1
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/useTableSettingsPreloader.js +0 -44
- package/dist/esm/packages/taco/src/primitives/Table/useTableManager/useTableSettingsPreloader.js.map +0 -1
- package/dist/hooks/useTaco.d.ts +0 -1
- package/dist/primitives/Table/useTableManager/useTableSettingsPreloader.d.ts +0 -3
@@ -28,7 +28,6 @@ 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');
|
32
31
|
var reactTable = require('@tanstack/react-table');
|
33
32
|
var get = _interopDefault(require('lodash/get'));
|
34
33
|
var reactVirtual = require('@tanstack/react-virtual');
|
@@ -9947,57 +9946,16 @@ const ToastProvider = ({
|
|
9947
9946
|
};
|
9948
9947
|
const useToast = () => React.useContext(ToastContext);
|
9949
9948
|
|
9950
|
-
const TacoContext = /*#__PURE__*/React.createContext({
|
9951
|
-
|
9952
|
-
|
9953
|
-
const saveSetting = function (path, value) {
|
9954
|
-
try {
|
9955
|
-
setState(currentState => lodash.setWith(currentState, path, value, Object));
|
9956
|
-
return Promise.resolve(save(path, value)); // don't block, since we have local state
|
9957
|
-
} catch (e) {
|
9958
|
-
return Promise.reject(e);
|
9959
|
-
}
|
9960
|
-
};
|
9961
|
-
const loadSetting = function (path) {
|
9962
|
-
try {
|
9963
|
-
const currentValue = lodash.get(state, path);
|
9964
|
-
if (currentValue) {
|
9965
|
-
return Promise.resolve(currentValue);
|
9966
|
-
}
|
9967
|
-
return Promise.resolve(load(path)).then(function (value) {
|
9968
|
-
setState(currentState => lodash.setWith(currentState, path, value, Object));
|
9969
|
-
return value;
|
9970
|
-
});
|
9971
|
-
} catch (e) {
|
9972
|
-
return Promise.reject(e);
|
9973
|
-
}
|
9974
|
-
};
|
9975
|
-
const [state, setState] = React.useState({});
|
9976
|
-
function getSetting(path) {
|
9977
|
-
return lodash.get(state, path);
|
9978
|
-
}
|
9979
|
-
return {
|
9980
|
-
getSetting,
|
9981
|
-
loadSetting,
|
9982
|
-
saveSetting
|
9983
|
-
};
|
9984
|
-
}
|
9985
|
-
|
9949
|
+
const TacoContext = /*#__PURE__*/React.createContext({
|
9950
|
+
uniqueUserIdentifier: ''
|
9951
|
+
});
|
9986
9952
|
const Provider = props => {
|
9987
9953
|
const {
|
9988
9954
|
children,
|
9989
9955
|
localization,
|
9990
|
-
|
9991
|
-
saveSetting,
|
9992
|
-
userId
|
9956
|
+
settings
|
9993
9957
|
} = props;
|
9994
|
-
const
|
9995
|
-
const context = React.useMemo(() => {
|
9996
|
-
return {
|
9997
|
-
settings,
|
9998
|
-
userId
|
9999
|
-
};
|
10000
|
-
}, []);
|
9958
|
+
const context = React.useMemo(() => settings, [JSON.stringify(settings)]);
|
10001
9959
|
return /*#__PURE__*/React.createElement(LocalizationProvider, {
|
10002
9960
|
localization: localization
|
10003
9961
|
}, /*#__PURE__*/React.createElement(TacoContext.Provider, {
|
@@ -10411,7 +10369,6 @@ function getHiddenColumns(columnVisibility = {}) {
|
|
10411
10369
|
return Object.keys(columnVisibility).filter(c => columnVisibility[c] === false);
|
10412
10370
|
}
|
10413
10371
|
|
10414
|
-
const getSettingsId = tableId => `table.${tableId.replace('.', '_')}`;
|
10415
10372
|
function getSettings(table) {
|
10416
10373
|
const meta = table.options.meta;
|
10417
10374
|
const state = table.getState();
|
@@ -10425,7 +10382,6 @@ function getSettings(table) {
|
|
10425
10382
|
excludeUnmatchedRecordsInSearch: table.options.enableGlobalFilter,
|
10426
10383
|
fontSize: meta.fontSize.isEnabled ? meta.fontSize.size : undefined,
|
10427
10384
|
//grouping: table.options.enableGrouping ? state.grouping : undefined,
|
10428
|
-
print: meta.printing.settings,
|
10429
10385
|
rowHeight: meta.rowHeight.isEnabled ? meta.rowHeight.height : undefined,
|
10430
10386
|
//searchQuery: table.options.enableGlobalFilter ? state.globalFilter : undefined,
|
10431
10387
|
sorting: state.sorting
|
@@ -10732,11 +10688,8 @@ function useReactTableInitialState(props, columns, persistedSettings, defaults)
|
|
10732
10688
|
if (columnPinning !== null && columnPinning !== void 0 && (_columnPinning$left = columnPinning.left) !== null && _columnPinning$left !== void 0 && _columnPinning$left.length) {
|
10733
10689
|
columnPinning.left = freezeUptoExternalColumn(columnOrder.indexOf(columnPinning.left[columnPinning.left.length - 1]), columnOrder);
|
10734
10690
|
} else {
|
10735
|
-
if (props.defaultColumnFreezingIndex
|
10736
|
-
|
10737
|
-
if (index !== undefined) {
|
10738
|
-
columnPinning.left = freezeUptoExternalColumn(index, columnOrder);
|
10739
|
-
}
|
10691
|
+
if (props.defaultColumnFreezingIndex) {
|
10692
|
+
columnPinning.left = freezeUptoExternalColumn(props.defaultColumnFreezingIndex, columnOrder);
|
10740
10693
|
} else {
|
10741
10694
|
columnPinning.left = unfreezeAllExternalColumns(columnOrder);
|
10742
10695
|
}
|
@@ -10942,28 +10895,53 @@ function useTableFontSize(isEnabled = false, defaultFontSize = 'medium') {
|
|
10942
10895
|
};
|
10943
10896
|
}
|
10944
10897
|
|
10945
|
-
function
|
10898
|
+
function useTacoSettings() {
|
10946
10899
|
return React__default.useContext(TacoContext);
|
10947
10900
|
}
|
10948
10901
|
|
10949
|
-
const
|
10950
|
-
|
10951
|
-
|
10952
|
-
|
10953
|
-
|
10902
|
+
const useLocalStorage = (key, initialValue) => {
|
10903
|
+
const [state, setState] = React__default.useState(() => {
|
10904
|
+
if (!key) {
|
10905
|
+
return initialValue;
|
10906
|
+
}
|
10907
|
+
try {
|
10908
|
+
const localStorageValue = localStorage.getItem(key);
|
10909
|
+
if (typeof localStorageValue !== 'string') {
|
10910
|
+
localStorage.setItem(key, JSON.stringify(initialValue));
|
10911
|
+
return initialValue;
|
10912
|
+
} else {
|
10913
|
+
return JSON.parse(localStorageValue || 'null');
|
10914
|
+
}
|
10915
|
+
} catch {
|
10916
|
+
// If user is in private mode or has storage restriction
|
10917
|
+
// localStorage can throw. JSON.parse and JSON.stringify
|
10918
|
+
// can throw, too.
|
10919
|
+
return initialValue;
|
10920
|
+
}
|
10921
|
+
});
|
10922
|
+
React__default.useEffect(() => {
|
10923
|
+
if (!key) {
|
10924
|
+
return;
|
10925
|
+
}
|
10926
|
+
try {
|
10927
|
+
const serializedState = JSON.stringify(state);
|
10928
|
+
localStorage.setItem(key, serializedState);
|
10929
|
+
} catch {
|
10930
|
+
// If user is in private mode or has storage restriction
|
10931
|
+
// localStorage can throw. Also JSON.stringify can throw.
|
10932
|
+
}
|
10933
|
+
}, [key, state]);
|
10934
|
+
const clear = () => {
|
10935
|
+
if (key) {
|
10936
|
+
localStorage.removeItem(key);
|
10937
|
+
}
|
10938
|
+
};
|
10939
|
+
return [state, setState, clear];
|
10954
10940
|
};
|
10941
|
+
|
10955
10942
|
function useTablePrinting(isEnabled = false, tableId) {
|
10956
|
-
var _taco$settings$getSet, _taco$settings$getSet2;
|
10957
10943
|
const [isPrinting, setIsPrinting] = React__default.useState(false);
|
10958
|
-
const
|
10959
|
-
const key = getSettingsId(tableId);
|
10960
|
-
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);
|
10961
|
-
function setSetting(path, value) {
|
10962
|
-
_setSettings(currentSettings => ({
|
10963
|
-
...currentSettings,
|
10964
|
-
[path]: value
|
10965
|
-
}));
|
10966
|
-
}
|
10944
|
+
const [settings, setSetting] = useTablePrintingSettings(tableId);
|
10967
10945
|
return {
|
10968
10946
|
isEnabled,
|
10969
10947
|
isPrinting,
|
@@ -10972,6 +10950,24 @@ function useTablePrinting(isEnabled = false, tableId) {
|
|
10972
10950
|
setSetting
|
10973
10951
|
};
|
10974
10952
|
}
|
10953
|
+
const DEFAULT_PRINT_SETTINGS = {
|
10954
|
+
size: 'A4',
|
10955
|
+
orientation: 'portrait',
|
10956
|
+
allRows: true,
|
10957
|
+
splitGroups: true
|
10958
|
+
};
|
10959
|
+
function useTablePrintingSettings(tableId) {
|
10960
|
+
const tacoSettings = useTacoSettings();
|
10961
|
+
const uniqueId = `taco.${tacoSettings.uniqueUserIdentifier}.table.${tableId}.print.settings`;
|
10962
|
+
const [persistedSettings, setPersistedSettings] = useLocalStorage(uniqueId, DEFAULT_PRINT_SETTINGS);
|
10963
|
+
function setSetting(key, value) {
|
10964
|
+
setPersistedSettings(currentSettings => ({
|
10965
|
+
...currentSettings,
|
10966
|
+
[key]: value
|
10967
|
+
}));
|
10968
|
+
}
|
10969
|
+
return [persistedSettings, setSetting];
|
10970
|
+
}
|
10975
10971
|
|
10976
10972
|
const DEFAULT_ROW_ACTIONS_LENGTH = 4;
|
10977
10973
|
function useTableRowActions(isEnabled = false, rowActions, rowActionsLength = DEFAULT_ROW_ACTIONS_LENGTH) {
|
@@ -11006,8 +11002,8 @@ const useIsHoverStatePaused = () => {
|
|
11006
11002
|
return [shouldPauseHoverState, setShouldPauseHoverState];
|
11007
11003
|
};
|
11008
11004
|
|
11009
|
-
function useTableRowActive(isEnabled = false,
|
11010
|
-
const [rowActiveIndex, setRowActiveIndex] = React__default.useState(
|
11005
|
+
function useTableRowActive(isEnabled = false, initialRowActiveIndex) {
|
11006
|
+
const [rowActiveIndex, setRowActiveIndex] = React__default.useState(initialRowActiveIndex);
|
11011
11007
|
const [rowHoverIndex, setRowHoverIndex] = React__default.useState(undefined);
|
11012
11008
|
const [isHoverStatePaused, setHoverStatePaused] = useIsHoverStatePaused();
|
11013
11009
|
const move = (direction, length, scrollToIndex) => {
|
@@ -11641,6 +11637,69 @@ function useTableServerLoading(length, data, loadPage, loadAll, pages, pageSize
|
|
11641
11637
|
};
|
11642
11638
|
}
|
11643
11639
|
|
11640
|
+
const DEFAULT_ENABLED_OPTIONS = {
|
11641
|
+
columnOrder: true,
|
11642
|
+
columnPinning: true,
|
11643
|
+
columnSizing: true,
|
11644
|
+
columnVisibility: true,
|
11645
|
+
excludeUnmatchedRecordsInSearch: true,
|
11646
|
+
fontSize: true,
|
11647
|
+
grouping: true,
|
11648
|
+
rowHeight: true,
|
11649
|
+
sorting: true
|
11650
|
+
};
|
11651
|
+
function useUniqueTableId(tableId) {
|
11652
|
+
const tacoSettings = useTacoSettings();
|
11653
|
+
return `taco.${tacoSettings.uniqueUserIdentifier}.table.${tableId}.settings`;
|
11654
|
+
}
|
11655
|
+
function useEnabledSettings(isEnabled) {
|
11656
|
+
return React__default.useMemo(() => {
|
11657
|
+
if (isEnabled === false) {
|
11658
|
+
return [Object.keys(DEFAULT_ENABLED_OPTIONS).reduce((o, key) => ({
|
11659
|
+
...o,
|
11660
|
+
[key]: false
|
11661
|
+
}), {}), false];
|
11662
|
+
} else if (isEnabled === true) {
|
11663
|
+
return [DEFAULT_ENABLED_OPTIONS, true];
|
11664
|
+
}
|
11665
|
+
const options = {
|
11666
|
+
...DEFAULT_ENABLED_OPTIONS,
|
11667
|
+
...isEnabled
|
11668
|
+
};
|
11669
|
+
return [options, Object.values(options).some(o => o === true)];
|
11670
|
+
}, [isEnabled]);
|
11671
|
+
}
|
11672
|
+
function useTableSettings(isEnabled = false, id, defaultSettings = {}, onChangeSettings) {
|
11673
|
+
const uniqueId = useUniqueTableId(id);
|
11674
|
+
const [enabledSettings, hasSomeEnabledSettings] = useEnabledSettings(isEnabled);
|
11675
|
+
const [persistedSettings, _setPersistedSettings] = useLocalStorage(hasSomeEnabledSettings ? uniqueId : undefined, removeDisabledSettings(defaultSettings, enabledSettings));
|
11676
|
+
const setPersistedSettings = React__default.useCallback(value => {
|
11677
|
+
if (!hasSomeEnabledSettings) {
|
11678
|
+
return;
|
11679
|
+
}
|
11680
|
+
const sanitizedSettings = removeDisabledSettings(value, enabledSettings);
|
11681
|
+
_setPersistedSettings(sanitizedSettings);
|
11682
|
+
if (typeof onChangeSettings === 'function') {
|
11683
|
+
onChangeSettings(sanitizedSettings);
|
11684
|
+
}
|
11685
|
+
}, [hasSomeEnabledSettings, onChangeSettings, JSON.stringify(enabledSettings)]);
|
11686
|
+
if (!hasSomeEnabledSettings) {
|
11687
|
+
return [defaultSettings, () => undefined];
|
11688
|
+
}
|
11689
|
+
return [persistedSettings, setPersistedSettings];
|
11690
|
+
}
|
11691
|
+
function removeDisabledSettings(settings, enabledSettings) {
|
11692
|
+
const sanitizedSettings = {
|
11693
|
+
...settings
|
11694
|
+
};
|
11695
|
+
Object.keys(enabledSettings).forEach(setting => {
|
11696
|
+
if (!enabledSettings[setting]) {
|
11697
|
+
delete sanitizedSettings[setting];
|
11698
|
+
}
|
11699
|
+
});
|
11700
|
+
return sanitizedSettings;
|
11701
|
+
}
|
11702
|
+
|
11644
11703
|
// augments useEffect to not run on the initial mount
|
11645
11704
|
function useLazyEffect(effect, deps) {
|
11646
11705
|
const readyRef = React__default.useRef(false);
|
@@ -11772,73 +11831,26 @@ function useTableSearchListener(table) {
|
|
11772
11831
|
}, [meta.server.loading, meta.search.isEnabled, meta.search.enableGlobalFilter, table.getRowModel().rows.length, query, JSON.stringify(table.getState().sorting)]);
|
11773
11832
|
}
|
11774
11833
|
|
11775
|
-
function useTableSettingsListener(table,
|
11776
|
-
const [enabledSettings, hasSomeEnabledSettings] = useEnabledSettings(isEnabled);
|
11777
|
-
const taco = useTaco();
|
11834
|
+
function useTableSettingsListener(table, onChangeSettings) {
|
11778
11835
|
const meta = table.options.meta;
|
11779
11836
|
const state = table.getState();
|
11780
11837
|
React__default.useEffect(() => {
|
11781
|
-
|
11782
|
-
|
11783
|
-
|
11784
|
-
}
|
11785
|
-
const settings = removeDisabledSettings(getSettings(table), enabledSettings);
|
11786
|
-
if (Object.keys(settings).length) {
|
11838
|
+
let handler;
|
11839
|
+
if (typeof onChangeSettings === 'function') {
|
11840
|
+
handler = setTimeout(() => {
|
11787
11841
|
// some settings shouldn't be persisted, but we comment them out here to highlight the intention
|
11788
|
-
|
11789
|
-
|
11790
|
-
|
11791
|
-
}
|
11792
|
-
}
|
11793
|
-
}, 250);
|
11842
|
+
onChangeSettings(getSettings(table));
|
11843
|
+
}, 250);
|
11844
|
+
}
|
11794
11845
|
return () => clearTimeout(handler);
|
11795
11846
|
}, [
|
11796
11847
|
//state.columnFilters,
|
11797
11848
|
state.columnOrder, state.columnPinning, state.columnSizing, state.columnVisibility, table.options.enableGlobalFilter, meta.fontSize.size,
|
11798
11849
|
//state.grouping,
|
11799
|
-
meta.
|
11850
|
+
meta.rowHeight.height,
|
11800
11851
|
//state.globalFilter,
|
11801
11852
|
state.sorting]);
|
11802
11853
|
}
|
11803
|
-
const DEFAULT_ENABLED_OPTIONS = {
|
11804
|
-
columnOrder: true,
|
11805
|
-
columnPinning: true,
|
11806
|
-
columnSizing: true,
|
11807
|
-
columnVisibility: true,
|
11808
|
-
excludeUnmatchedRecordsInSearch: true,
|
11809
|
-
fontSize: true,
|
11810
|
-
grouping: true,
|
11811
|
-
rowHeight: true,
|
11812
|
-
sorting: true
|
11813
|
-
};
|
11814
|
-
function useEnabledSettings(isEnabled) {
|
11815
|
-
return React__default.useMemo(() => {
|
11816
|
-
if (isEnabled === false) {
|
11817
|
-
return [Object.keys(DEFAULT_ENABLED_OPTIONS).reduce((o, key) => ({
|
11818
|
-
...o,
|
11819
|
-
[key]: false
|
11820
|
-
}), {}), false];
|
11821
|
-
} else if (isEnabled === true) {
|
11822
|
-
return [DEFAULT_ENABLED_OPTIONS, true];
|
11823
|
-
}
|
11824
|
-
const options = {
|
11825
|
-
...DEFAULT_ENABLED_OPTIONS,
|
11826
|
-
...isEnabled
|
11827
|
-
};
|
11828
|
-
return [options, Object.values(options).some(o => o === true)];
|
11829
|
-
}, [isEnabled]);
|
11830
|
-
}
|
11831
|
-
function removeDisabledSettings(settings, enabledSettings) {
|
11832
|
-
const sanitizedSettings = {
|
11833
|
-
...settings
|
11834
|
-
};
|
11835
|
-
Object.keys(enabledSettings).forEach(setting => {
|
11836
|
-
if (!enabledSettings[setting]) {
|
11837
|
-
delete sanitizedSettings[setting];
|
11838
|
-
}
|
11839
|
-
});
|
11840
|
-
return sanitizedSettings;
|
11841
|
-
}
|
11842
11854
|
|
11843
11855
|
function useTableShortcutsListener(table, shortcuts) {
|
11844
11856
|
const meta = table.options.meta;
|
@@ -11933,15 +11945,14 @@ function useTableRowDrop(isEnabled = false, onRowDrop) {
|
|
11933
11945
|
// Placed this array outside the hook to avoid creating a new array reference on each hook re-render
|
11934
11946
|
const DEFAULT_EMPTY_ARRAY = [];
|
11935
11947
|
function useTableManager(props, meta, internalColumns) {
|
11936
|
-
var
|
11937
|
-
const taco = useTaco();
|
11948
|
+
var _props$data, _props$length, _meta$editing, _instance$options$met;
|
11938
11949
|
const localization = useLocalization();
|
11939
11950
|
// CSS.escape would be best here, but it doesn't seem to work very well
|
11940
11951
|
const safeId = props.id.replace('.', '_');
|
11941
11952
|
// configure table options, merging props with presets
|
11942
11953
|
const options = getTableFeaturePreset(props);
|
11943
11954
|
// load any persisted table settings and merge them with any defaults
|
11944
|
-
const settings
|
11955
|
+
const [settings, setSettings] = useTableSettings(options.enableSaveSettings, safeId, props.defaultSettings, props.onChangeSettings);
|
11945
11956
|
// ensure data is always valid
|
11946
11957
|
const data = (_props$data = props.data) !== null && _props$data !== void 0 ? _props$data : DEFAULT_EMPTY_ARRAY;
|
11947
11958
|
const length = (_props$length = props.length) !== null && _props$length !== void 0 ? _props$length : data.length;
|
@@ -11951,7 +11962,7 @@ function useTableManager(props, meta, internalColumns) {
|
|
11951
11962
|
const fontSize = useTableFontSize(options.enableFontSize, settings.fontSize);
|
11952
11963
|
const footer = useTableFooter(options.enableFooter);
|
11953
11964
|
const printing = useTablePrinting(options.enablePrinting, safeId);
|
11954
|
-
const rowActive = useTableRowActive(options.enableRowActive,
|
11965
|
+
const rowActive = useTableRowActive(options.enableRowActive, props.defaultRowActiveIndex);
|
11955
11966
|
const rowActions = useTableRowActions(options.enableRowActions, props.rowActions, props.rowActionsLength);
|
11956
11967
|
const rowClick = useTableRowClick(options.enableRowClick, props.onRowClick);
|
11957
11968
|
const rowDrag = useTableRowDrag(options.enableRowDrag && !(meta !== null && meta !== void 0 && (_meta$editing = meta.editing) !== null && _meta$editing !== void 0 && _meta$editing.isEditing), props.onRowDrag);
|
@@ -12016,7 +12027,7 @@ function useTableManager(props, meta, internalColumns) {
|
|
12016
12027
|
useTableRowSelectionListener(instance, props.onRowSelect);
|
12017
12028
|
useTableSearchListener(instance);
|
12018
12029
|
useTableServerLoadingListener(instance, server.loadPage);
|
12019
|
-
useTableSettingsListener(instance,
|
12030
|
+
useTableSettingsListener(instance, setSettings);
|
12020
12031
|
useTableShortcutsListener(instance, props.shortcuts);
|
12021
12032
|
useTableSortingListener(instance, props.onChangeSort);
|
12022
12033
|
return {
|
@@ -12459,6 +12470,9 @@ function useTableRenderer(renderers, table, tableRef, length, defaultRowActiveIn
|
|
12459
12470
|
scrollPaddingEnd: getScrollPaddingEndOffset(table),
|
12460
12471
|
paddingEnd: getPaddingEndOffset(table, options)
|
12461
12472
|
});
|
12473
|
+
useLazyEffect(() => {
|
12474
|
+
virtualiser.measure();
|
12475
|
+
}, [table.getState().expanded]);
|
12462
12476
|
const totalSize = virtualiser.getTotalSize();
|
12463
12477
|
const virtualItems = virtualiser.getVirtualItems();
|
12464
12478
|
const scrollToIndex = React__default.useCallback((index, options = {
|
@@ -12487,14 +12501,11 @@ function useTableRenderer(renderers, table, tableRef, length, defaultRowActiveIn
|
|
12487
12501
|
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];
|
12488
12502
|
// ensure default active rows are scrolled to
|
12489
12503
|
React__default.useEffect(() => {
|
12490
|
-
if (defaultRowActiveIndex
|
12491
|
-
|
12492
|
-
|
12493
|
-
|
12494
|
-
|
12495
|
-
behavior: 'auto'
|
12496
|
-
});
|
12497
|
-
}
|
12504
|
+
if (defaultRowActiveIndex) {
|
12505
|
+
scrollToIndex(defaultRowActiveIndex, {
|
12506
|
+
align: 'center',
|
12507
|
+
behavior: 'auto'
|
12508
|
+
});
|
12498
12509
|
}
|
12499
12510
|
}, []);
|
12500
12511
|
// rendered output
|
@@ -17213,16 +17224,15 @@ function TableToolbar(props) {
|
|
17213
17224
|
const canPrint = table.meta.printing.isEnabled;
|
17214
17225
|
const canSettings = canChangeSettings(table.instance, table.props.customSettings);
|
17215
17226
|
const canSearch = table.meta.search.isEnabled;
|
17216
|
-
const settings = getSettings(table.instance);
|
17217
17227
|
return /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement("div", Object.assign({}, attributes, {
|
17218
17228
|
className: "mb-4 flex flex-shrink flex-grow-0 flex-wrap gap-2 print:hidden",
|
17219
17229
|
"data-taco": "table-toolbar"
|
17220
|
-
}),
|
17230
|
+
}), table.props.toolbarLeft, /*#__PURE__*/React__default.createElement(Group, {
|
17221
17231
|
className: "ml-auto flex-shrink-0 items-center print:hidden"
|
17222
17232
|
}, customTools, canFilter ? /*#__PURE__*/React__default.createElement(Filters, {
|
17223
17233
|
length: table.meta.length,
|
17224
17234
|
table: table.instance
|
17225
|
-
}) : null,
|
17235
|
+
}) : null, table.props.toolbarRight, canPrint ? /*#__PURE__*/React__default.createElement(Print$1, {
|
17226
17236
|
table: table.instance,
|
17227
17237
|
tableId: table.id,
|
17228
17238
|
tableRef: table.ref
|
@@ -17233,9 +17243,9 @@ function TableToolbar(props) {
|
|
17233
17243
|
scrollToIndex: table.renderer.scrollToIndex,
|
17234
17244
|
table: table.instance,
|
17235
17245
|
tableRef: table.ref
|
17236
|
-
})) : null)), table.props.toolbarPanel ?
|
17246
|
+
})) : null)), table.props.toolbarPanel ? /*#__PURE__*/React__default.createElement("div", {
|
17237
17247
|
className: "mb-4"
|
17238
|
-
},
|
17248
|
+
}, table.props.toolbarPanel) : undefined);
|
17239
17249
|
}
|
17240
17250
|
function canChangeSettings(table, customSettings) {
|
17241
17251
|
const tableMeta = table.options.meta;
|
@@ -17314,44 +17324,6 @@ function TableGrid(props) {
|
|
17314
17324
|
}, footerRows) : null)))));
|
17315
17325
|
}
|
17316
17326
|
|
17317
|
-
function getLegacySetting(currentKey) {
|
17318
|
-
try {
|
17319
|
-
const localStorageValue = localStorage.getItem(currentKey);
|
17320
|
-
if (localStorageValue) {
|
17321
|
-
const value = JSON.parse(localStorageValue || 'null');
|
17322
|
-
if (value !== null) {
|
17323
|
-
localStorage.removeItem(currentKey);
|
17324
|
-
return value;
|
17325
|
-
}
|
17326
|
-
}
|
17327
|
-
} catch {
|
17328
|
-
// If user is in private mode or has storage restriction
|
17329
|
-
// localStorage can throw. JSON.parse can throw, too.
|
17330
|
-
}
|
17331
|
-
return undefined;
|
17332
|
-
}
|
17333
|
-
function useTableSettingsPreloader(tableId) {
|
17334
|
-
const taco = useTaco();
|
17335
|
-
const [loading, setLoading] = React__default.useState(true);
|
17336
|
-
React__default.useLayoutEffect(() => {
|
17337
|
-
const key = getSettingsId(tableId);
|
17338
|
-
// migrate legacy settings if they exist, can be removed in the future
|
17339
|
-
const legacySettings = getLegacySetting(`taco.${taco.userId}.table.${tableId}.settings`);
|
17340
|
-
if (legacySettings) {
|
17341
|
-
const legacyPrintSettings = getLegacySetting(`taco.${taco.userId}.table.${tableId}.print.settings`);
|
17342
|
-
taco.settings.saveSetting(key, {
|
17343
|
-
...legacySettings,
|
17344
|
-
print: legacyPrintSettings !== null && legacyPrintSettings !== void 0 ? legacyPrintSettings : {}
|
17345
|
-
}).finally(() => setLoading(false));
|
17346
|
-
} else {
|
17347
|
-
taco.settings.loadSetting(key).finally(() => setLoading(false));
|
17348
|
-
}
|
17349
|
-
}, []);
|
17350
|
-
return {
|
17351
|
-
loading
|
17352
|
-
};
|
17353
|
-
}
|
17354
|
-
|
17355
17327
|
function Column$1(_) {
|
17356
17328
|
return null;
|
17357
17329
|
}
|
@@ -17372,12 +17344,6 @@ const Report$1 = /*#__PURE__*/fixedForwardRef(function Report(props, ref) {
|
|
17372
17344
|
// we force a remount (using key) when the child columns change because there are too many places to add children as an effect
|
17373
17345
|
// this is cheaper from a complexity perspective, and probably performance wise as well
|
17374
17346
|
const key = React__default.useMemo(() => String('tableKey_' + stringifiedChildren), [stringifiedChildren]);
|
17375
|
-
const {
|
17376
|
-
loading
|
17377
|
-
} = useTableSettingsPreloader(props.id);
|
17378
|
-
if (loading) {
|
17379
|
-
return /*#__PURE__*/React__default.createElement(Spinner, null);
|
17380
|
-
}
|
17381
17347
|
return /*#__PURE__*/React__default.createElement(BaseReport, Object.assign({}, props, {
|
17382
17348
|
key: key,
|
17383
17349
|
ref: ref
|
@@ -20756,12 +20722,6 @@ const Table3 = /*#__PURE__*/fixedForwardRef(function Table3(props, ref) {
|
|
20756
20722
|
// we force a remount (using key) when the child columns change because there are too many places to add children as an effect
|
20757
20723
|
// this is cheaper from a complexity perspective, and probably performance wise as well
|
20758
20724
|
const key = React__default.useMemo(() => String('tableKey_' + stringifiedChildren), [stringifiedChildren]);
|
20759
|
-
const {
|
20760
|
-
loading
|
20761
|
-
} = useTableSettingsPreloader(props.id);
|
20762
|
-
if (loading) {
|
20763
|
-
return /*#__PURE__*/React__default.createElement(Spinner, null);
|
20764
|
-
}
|
20765
20725
|
return /*#__PURE__*/React__default.createElement(BaseTable3, Object.assign({}, props, {
|
20766
20726
|
key: key,
|
20767
20727
|
ref: ref
|
@@ -22798,6 +22758,7 @@ exports.Switch = Switch;
|
|
22798
22758
|
exports.Table = Table$1;
|
22799
22759
|
exports.Table3 = Table3;
|
22800
22760
|
exports.Tabs = Tabs;
|
22761
|
+
exports.TacoContext = TacoContext;
|
22801
22762
|
exports.Tag = Tag$1;
|
22802
22763
|
exports.Textarea = Textarea;
|
22803
22764
|
exports.Title = Title$3;
|