#8113 create arrayDataStore map #979

Open
jorgep wants to merge 16 commits from 8113-preventDuplicateRecords into dev
2 changed files with 2 additions and 2 deletions
Showing only changes of commit f32c08bd1d - Show all commits

View File

@ -76,7 +76,7 @@ const props = defineProps({
}, },
mapKey: { mapKey: {
type: String, type: String,
default: 'id', default: '',
}, },
}); });
const emit = defineEmits(['onFetch', 'onPaginate', 'onChange']); const emit = defineEmits(['onFetch', 'onPaginate', 'onChange']);

View File

@ -290,7 +290,7 @@ export function useArrayData(key = useRoute().meta.moduleName, userOptions) {
} }
if (!map && !append) store.data = data; if (!map && !append) store.data = data;
else if (!map && append) store.data.push(...data); else if (!map && append) for (const row of data) store.data.push(row);
Review

Se podría usar ... pero he leído que en términos de rendimiento a la hora de manejar arrays muy grande es más rápido un for.

Se podría usar **...** pero he leído que en términos de rendimiento a la hora de manejar arrays muy grande es más rápido un for.
else else
data.forEach((row) => { data.forEach((row) => {
const key = row[store.mapKey]; const key = row[store.mapKey];