- Элемент списка
У меня есть магазин с резервированием с такой структурой
const INITIAL_STATE = {
currentData: [
{
title: 'Total Insurance Bought',
img: 'insurance-bought.svg',
bg: 'insurance-shield',
data: '',
},
{
title: 'Total Amount of Claims',
img: 'amount of claims icon.svg',
bg: 'amount-of-claims',
data: '',
}
]
}
Это текущая структура моей функции редуктора
const summaryReducer = (state = INITIAL_STATE, action ) => {
switch(action.type){
case 'SET_SUMMARY_DATA':
return {
...state,
currentData: {
...state.currentData,
data: action.payload
}
}
default:
return state
}
}
Я хотел бы распространить значения этого массива в action.payload, в каждое свойство данных начального состояния, возвращая все состояние.
[ 0 , 20000 ]
Я хочу, чтобы мой вывод был
const INITIAL_STATE = {
currentData: [
{
title: 'Total Insurance Bought',
img: 'insurance-bought.svg',
bg: 'insurance-shield',
data: '0',
},
{
title: 'Total Amount of Claims',
img: 'amount of claims icon.svg',
bg: 'amount-of-claims',
data: '20000',
}
]
}