Giter VIP home page Giter VIP logo

Comments (6)

HarishJangra avatar HarishJangra commented on May 31, 2024

Well thanks for asking. But i am doing like this in store initialization here

//used for resetting store
let initialState = {};

const createStore = () => {
  apiClient = Api.createApiClient();

  // you can use apiclient as injections in store or like this only
  store = ConfigureStore(
    {
      ...model,
      reset: action(state => ({
        ...initialState,
      })),
    },
    apiClient,
  );
  //set initial state to store's state
  initialState = store.getState();
//....  
return store;
};

// 👇 Kickoff our StoreCreater and store instance

Also you can import reset as

 const resetStore = useStoreActions(actions => actions.reset);

///and call
resetStore();

from react-native-easy-starter.

JordanProtin avatar JordanProtin commented on May 31, 2024

Oh great, it's a better way like this.
Thank you @HarishJangra !

from react-native-easy-starter.

rajinpangkalpundai avatar rajinpangkalpundai commented on May 31, 2024

Also you can import reset as

 const resetStore = useStoreActions(actions => actions.reset);

///and call
resetStore();

How can i import this action reset inside checklogin thunk on my Login model? i've tried yours above, but it returns promise rejection. Any solution?

from react-native-easy-starter.

HarishJangra avatar HarishJangra commented on May 31, 2024

@rajinpangkalpundai you can get a function getStoreActions in thunk see here
and call it like
getStoreActions().reset() //thats all

from react-native-easy-starter.

rajinpangkalpundai avatar rajinpangkalpundai commented on May 31, 2024

@rajinpangkalpundai you can get a function getStoreActions in thunk see here
and call it like
getStoreActions().reset() //thats all

Thanks for your reply, it worked. now, i got another question, how do i reset states from certain model (not all state) ?

from react-native-easy-starter.

HarishJangra avatar HarishJangra commented on May 31, 2024

You need to check easy-peasy documentation for detailed information.

Thanks for your reply, it worked. now, i got another question, how do i reset states from certain model (not all state) ?

from react-native-easy-starter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.