{ id: null };
const indexDefault = {
country_code: {},
state: {},
city: {}
}
const initialState = {
index: cloneDeep( indexDefault ),
items: {},
tpl : cloneDeep( tplDefault ),
item: cloneDeep( tplDefault ),
};
export const state = () => cloneDeep( initialState );
const mutationAddItem = ({ insertItems, insertIndex }, { item, payload }) => {
insertItems[ item.id ] = item;
let countryCode = item.attributes.country_code;
let state = item.attributes.state;
let city = item.attributes.city;
if (! insertIndex.country_code[ countryCode ]) insertIndex.country_code[ countryCode ] = {};
if (! insertIndex.state[ state ]) insertIndex.state[ state ] = {};
if (! insertIndex.city[ city ]) insertIndex.city[ city ] = {};
insertIndex.country_code[ countryCode ][ item.id ] = true;
insertIndex.state[ state ][ item.id ] = true;
insertIndex.city[ city ][ item.id ] = true;
};
export const mutations = {
SET_ITEMS(state, { items, ...payload }) {
let insertItems = {};
let insertIndex = { ...indexDefault };
Object.values( items ).forEach( item => {
mutationAddItem( { insertItems, insertIndex }, { item, payload } );
} );
state.items = {
...state.initial.items,
...insertItems,
};
for ( let key in insertIndex ) {
if (Object.keys( insertIndex[ key ] ).length) {
Vue.set( state.index, key, {
...state.index[ key ],
...insertIndex[ key ],
} );
}
}
},
};
очень жирная мутация
интересует комментарий по реактивности. от того что она большая мне не холодно не жарко я ее тут теряю, или как это написать исключив лишнее
а зачем там цикл еще с vue.set почему нельзя просто сказать что state.index = newIndex?
в индексе двумерный массив. мне кажется если сделать простой спред, то он затрет старое
Нломааально все,
Обсуждают сегодня