I am changing the state immutably but this is not working. Basically, I created a function to fetch excel file data. This function works perfectly but when I update the state then the state not updated.
Any idea or any suggestions share with me
Here is my state:
tableData: [],
productsData: []
And here is the reducer where the state updated:
case actionTypes.READ_EXCEL:
var excel1 = [];
var excel2 = [];
const promise = new Promise((resolve, reject) => {
const fileReader = new FileReader();
fileReader.readAsArrayBuffer(action.payload);
fileReader.onload = (e) => {
const bufferArray = e.target.result;
const wb = { SheetNames:[], Sheets:{} };
const ws1 = XLSX.read(bufferArray, {type: "buffer"}).Sheets.Sheet1;
const ws2 = XLSX.read(bufferArray, {type: "buffer"}).Sheets.Sheet2;
wb.SheetNames.push("Sheet1");
wb.Sheets["Sheet1"] = ws1;
wb.SheetNames.push("Sheet2");
wb.Sheets["Sheet2"] = ws2;
const data1 = XLSX.utils.sheet_to_json(ws1);
const data2 = XLSX.utils.sheet_to_json(ws2);
resolve([ data1, data2 ]);
}
fileReader.onerror = (error) => {
reject(error);
};
})
promise.then((excelData) => {
excel1 = excelData[0];
excel2 = excelData[1];
});
return {
...state,
tableData: excel1,
productsData: excel2
}
default:
}
return state;
}
In the UI getting state value and state value not updated:
const mapStateToProps = (state) => {
return {
items: state.tableData, <---
products: state.productsData <---
};
}
As promises are async the return statements are getting executed first and then the data is loaded into excel1 and excel2.
You can do one thing that write the code for reading the data using fileReader into one function which will be executed where you currently have placed dispatch statement in your code. And inside the promise.then() you can call dispatch with the loaded data. so your new code might look like this