how to update or remove nested object inside ngrx entities for example I want to delete the first element which has the 19 id from (charter.entities.scopes.data) as it shown in the bellow stored json object inside my ngrx store
charter: {
ids: [
1
],
entities: {
'1': {
id: 1,
projectName: 'Some Project',
projectCode: '899',
projectUniqueCode: '674a9596-50ee',
projectStatus: 'construction',
budgetCode: 'CC34',
projectTypeOne: 'Goods',
projectTypeTwo: 'New',
donorName: 'Elza Hills',
scopes: {
data: [
{
id: 19,
module: 'Miss Cassandra Cartwright I',
description: 'In tempore quia asperiores aut ea cum optio minima nemo est et aspernatur est repudiandae voluptas ipsum.',
time: '2018-01-23 15:37:36'
},
{
id: 43,
module: 'Leanne Douglas',
description: 'Occaecati facere eligendi esse esse nostrum in et vitae assumenda molestias omnis quis sit qui aut omnis est.',
time: '2018-01-23 15:37:36'
},
]
},
assumptions: {
data: [
{
id: 29,
assumption: 'Doloremque quo nihil minima ad optio perspiciatis asperiores debitis mollitia at debitis porro quia nam accusantium illo consequatur labore cum.',
comments: 'Inventore ut pariatur id laboriosam recusandae soluta quo sunt impedit aut velit.'
},
{
id: 164,
assumption: 'Dolores quam aut possimus sint fugiat natus quos quaerat saepe facilis harum molestiae.',
comments: 'Cumque quis magni illo dolore quas nam officiis dolores enim soluta doloribus in sed eum ut sunt.'
},
]
},
The Reducer
export interface State extends EntityState<ProjectsCharter> {
isLoading: boolean;
isLoaded: boolean;
selectedProjectsId: any;
}
export const adapter: EntityAdapter<ProjectsCharter> = createEntityAdapter({
selectId: (state: ProjectsCharter) => state.id,
sortComparer: false
});
export const initialState = adapter.getInitialState({
isLoading: false,
isLoaded: false,
selectedProjectsId: null
});
export function reducer(state = initialState, action: CharterActions) {
switch (action.type) {
case CharterActionTypes.loadCharterSuccess:
return {
...adapter.addOne(action.payload['data'], state),
isLoading: false,
isLoaded: true
};
case CharterActionTypes.updateScopeOnParent:
const scopeEntity = { ...state.entities[action.payload.param] };
scopeEntity.scopes.data = scopeEntity.scopes.data.map(item => {
if (item.id === action.payload.id) {
item.module = action.payload.module;
}
return item;
});
return {
...adapter.updateOne(scopeEntity, state)
};
default:
return {
...state
};
}
}
I can update and modify the nestad object with this reducer but the problem is 1- it's a little bit complex and also show me in terminal in compile time error TS2339: Property 'map' does not exist on type 'Scope'.
also Argument of type '{ id: string; projectName: string; projectStatus: string; projectCode: string; projectUniqueCode:...' is not assignable to parameter of type 'Update<ProjectsCharter>'.
I strongly advice you to change your store and normalize it. Take a look here: https://redux.js.org/docs/recipes/reducers/NormalizingStateShape.html
With this approach you will have less complex reducers, as explained here https://redux.js.org/docs/recipes/reducers/UpdatingNormalizedData.html
With a store shaped this way, you will have to build a complex reducer.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With