Giter Site home page Giter Site logo

Comments (4)

albertogasparin avatar albertogasparin commented on August 20, 2024

We are going to remove the support in v2, for now we remove the documentation for it and publish Typescript types without support for it (as recursive types are not supported anyway so it was never going to work)

from react-sweet-state.

joshuatvernon avatar joshuatvernon commented on August 20, 2024

I'm actually fighting this right now to have optional/extendable state and actions.

I'd like to create a createStoreInstance function that accepts the state/actions but as generics that can have extra values or have values omitted.

Also, I made this recursive type in Typescript to do wrap a type and recursively make all it's properties partial. It works in the case of state 👍(and everywhere else I use it in my app) but not for actions 😕

export type RecursivePartial<T> = {
  [P in keyof T]?: RecursivePartial<T[P]>;
};

Any chance of being able to support this so I can do the following?

export const createStoreInstance = (
  initialState: RecursivePartial<State>,
  actions: RecursivePartial<Actions>,
  storeName: string
) => {
  return createStore<RecursivePartial<State>, RecursivePartial<Actions>>({
    initialState,
    actions,
    storeName
  });
};

Then I can call it like so

const {
  thing,
  ...otherInitialState
} = initialState;

const {
  getThing,
  ...otherActions
} = actions;

// Note: These will actually be in different repos all together (thus having the `getStoreInstance` in a common package they both import)
const store = createStoreInstance(initialState, actions, 'complete-store');
const store = createStoreInstance(otherInitialState, otherActions, 'reduced-store');

from react-sweet-state.

albertogasparin avatar albertogasparin commented on August 20, 2024

Can you provide a code example (for instance on codesandbox)?
Also, this ticket is to deprecate the actions access in the thunk function ( const myAction = () => ({ actions }) => ... not sure the issue you are describing is related to that.
If not, please open a dedicated issue so we can better discuss the options

from react-sweet-state.

albertogasparin avatar albertogasparin commented on August 20, 2024

As of v2.5.0 Flow Action does not accept Actions anymore. actions are still available in code but they will be typed to any (Typescript never supported it anyway).

from react-sweet-state.

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.