reactjs - defaultState of Redux store from API -


how can make default state of redux store data comes in api request?

i want make request this, pass returned data defaultstate when creating store:

const request = new xmlhttprequest(); request.open('get', '/api', true); request.onload = function load() {   if (this.status >= 200 && this.status < 400) {     const data = json.parse(this.response);   } else {     // reached our target server, returned error   } };   const store = createstore(rootreducer, defaultstate, enhancers); 

if you'd set asynchronously loaded state default, should try loading before starting application in index.js:

import reducer './reducer';  function asyncstateloadingfunction(callback) {   const request = new xmlhttprequest();   request.open('get', '/api', true);   request.onload = function load() {     if (this.status >= 200 && this.status < 400) {       callback(json.parse(this.response));     } else {       callback(null, 'error occured');     }   }; };  promise((resolve, reject) => {   asyncstateloadingfunction((result) => {     resolve(result);   }, (error) => {     throw new error(error);   }); }) .then((initialstate) => {   // note create redux store, routers etc   const store = createstore(reducer, initialstate);    reactdom.render(     <provider store={store}>       <app />     </provider>,     document.queryselector('#app')   ); }); 

Comments

Popular posts from this blog

ios - RestKit 0.20 — CoreData: error: Failed to call designated initializer on NSManagedObject class (again) -

laravel - PDOException in Connector.php line 55: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) -

java - Digest auth with Spring Security using javaconfig -