@antscorp/antsomi-ui 1.3.5-beta.478 → 1.3.5-beta.479
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.
|
@@ -291,7 +291,9 @@ export function useDataTableListing(props) {
|
|
|
291
291
|
})) || []);
|
|
292
292
|
return data;
|
|
293
293
|
}, [tableHeader, tableProps, sorter]);
|
|
294
|
-
const tableData = useDeepCompareMemo(() => (
|
|
294
|
+
const tableData = useDeepCompareMemo(() => ((Array === null || Array === void 0 ? void 0 : Array.isArray(tableBody)) &&
|
|
295
|
+
(tableBody === null || tableBody === void 0 ? void 0 : tableBody.map((row) => (Object.assign(Object.assign({}, row), { key: row === null || row === void 0 ? void 0 : row[tableProps === null || tableProps === void 0 ? void 0 : tableProps.mainColumnKey] }))))) ||
|
|
296
|
+
[], [tableBody]);
|
|
295
297
|
const searchList = useDeepCompareMemo(() => {
|
|
296
298
|
const { itemMapKeys, icon, link } = searchProps || {};
|
|
297
299
|
return ((searchListingBody === null || searchListingBody === void 0 ? void 0 : searchListingBody.map(searchItem => (Object.assign(Object.assign({}, Object.entries(itemMapKeys || {}).reduce((acc, [key, value]) => (Object.assign(Object.assign({}, acc), { [key]: searchItem[value] })), {})), { icon: typeof icon === 'function' ? icon(searchItem) : icon, link: typeof link === 'function' ? link(searchItem) : link })))) || []);
|