React Hooks (useState) and Mobx [No mobx-react-lite]Passing MobX @observable of array to React Component props of PropTypes.arrayUsing MobX in ReactJS and ReactNative hybrid appMobX + React Router 4 + @withRouter alway re-render when route changeWhy are the react-jss style functions not executing on mobx store update?handleChange with React and MobxMobx-react : default is no longer partAccess stores from class using mobX and react ContextHow to use callback with useState hook in reactReact native + mobx dont re renderRefactoring from Hooks to a class component

Is fission/fusion to iron the most efficient way to convert mass to energy?

Having some issue with notation in a Hilbert space

Interview was just a one hour panel. Got an offer the next day; do I accept or is this a red flag?

Arcane Tradition and Cost Efficiency: Learn spells on level-up, or learn them from scrolls/spellbooks?

How to address players struggling with simple controls?

The title "Mord mit Aussicht" explained

What made the Ancient One do this in Endgame?

Are there any rules for identifying what spell an opponent is casting?

How to ask if I can mow my neighbor's lawn

Manager wants to hire me; HR does not. How to proceed?

Can I give my friend the sour dough "throw away" as a starter to their sourdough starter?

Why did the USA sell so many airplanes prior to WW2?

Difference between sizeof(struct name_of_struct) vs sizeof(name_of_struct)?

How do I become a better writer when I hate reading?

Does PC weight have a mechanical effect?

How can religions without a hell discourage evil-doing?

newcommand with parameter blank or zero

Does anyone recognize these rockets, and their location?

New Site Design!

How can I detect if I'm in a subshell?

How to know whether to write accidentals as sharps or flats?

Cremated People Pottery

What does the output current rating from an H-Bridge's datasheet really mean?

How to sort human readable size



React Hooks (useState) and Mobx [No mobx-react-lite]


Passing MobX @observable of array to React Component props of PropTypes.arrayUsing MobX in ReactJS and ReactNative hybrid appMobX + React Router 4 + @withRouter alway re-render when route changeWhy are the react-jss style functions not executing on mobx store update?handleChange with React and MobxMobx-react : default is no longer partAccess stores from class using mobX and react ContextHow to use callback with useState hook in reactReact native + mobx dont re renderRefactoring from Hooks to a class component






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








4















in my react application (with typescript) I want to use React hooks (specifically useState) to manage the form state and meanwhile use it as an observable component for Mobx store but I get the error




Hooks can only be called inside the body of a function component.




so for instance in the following component



import * as React from "react";
import inject, observer from "mobx-react";
import MyStore from "./MyStore";

interface IProps
myStore?: MyStore;
id: string;


const MyComponent: React.FC<IProps> = props =>
const [state, setState] = React.useState("");
return (
<div>
<h1>props.id</h1>
</div>
);
;
export default inject("myStore")(observer(MyComponent));


I saw a solution but that was using React.createContext for exporting the store class. is not where the old approach for Mobx and Hooks?



here is the sanbox for the example










share|improve this question



















  • 1





    mobx-react@5 does not support hooks, but version 6 will support it, which is in rc.4 right now.

    – Tholle
    Mar 25 at 8:28











  • @Tholle, Thanks. BTW as I see you are so active here especially for react tag, do you think as using context became much easier since 16.8, is it more convenient to build custom state manager for small to mid-size apps, rather than importing some MB of library?

    – Amir-Mousavi
    Mar 25 at 9:35












  • You could definitely use e.g. the useReducer hook and share the state object and the dispatch function through context, which will be suitable for a lot of use cases, but I don't think it will replace MobX for mid-sized apps. It depends a lot on your particular project.

    – Tholle
    Mar 25 at 9:39


















4















in my react application (with typescript) I want to use React hooks (specifically useState) to manage the form state and meanwhile use it as an observable component for Mobx store but I get the error




Hooks can only be called inside the body of a function component.




so for instance in the following component



import * as React from "react";
import inject, observer from "mobx-react";
import MyStore from "./MyStore";

interface IProps
myStore?: MyStore;
id: string;


const MyComponent: React.FC<IProps> = props =>
const [state, setState] = React.useState("");
return (
<div>
<h1>props.id</h1>
</div>
);
;
export default inject("myStore")(observer(MyComponent));


I saw a solution but that was using React.createContext for exporting the store class. is not where the old approach for Mobx and Hooks?



here is the sanbox for the example










share|improve this question



















  • 1





    mobx-react@5 does not support hooks, but version 6 will support it, which is in rc.4 right now.

    – Tholle
    Mar 25 at 8:28











  • @Tholle, Thanks. BTW as I see you are so active here especially for react tag, do you think as using context became much easier since 16.8, is it more convenient to build custom state manager for small to mid-size apps, rather than importing some MB of library?

    – Amir-Mousavi
    Mar 25 at 9:35












  • You could definitely use e.g. the useReducer hook and share the state object and the dispatch function through context, which will be suitable for a lot of use cases, but I don't think it will replace MobX for mid-sized apps. It depends a lot on your particular project.

    – Tholle
    Mar 25 at 9:39














4












4








4


1






in my react application (with typescript) I want to use React hooks (specifically useState) to manage the form state and meanwhile use it as an observable component for Mobx store but I get the error




Hooks can only be called inside the body of a function component.




so for instance in the following component



import * as React from "react";
import inject, observer from "mobx-react";
import MyStore from "./MyStore";

interface IProps
myStore?: MyStore;
id: string;


const MyComponent: React.FC<IProps> = props =>
const [state, setState] = React.useState("");
return (
<div>
<h1>props.id</h1>
</div>
);
;
export default inject("myStore")(observer(MyComponent));


I saw a solution but that was using React.createContext for exporting the store class. is not where the old approach for Mobx and Hooks?



here is the sanbox for the example










share|improve this question
















in my react application (with typescript) I want to use React hooks (specifically useState) to manage the form state and meanwhile use it as an observable component for Mobx store but I get the error




Hooks can only be called inside the body of a function component.




so for instance in the following component



import * as React from "react";
import inject, observer from "mobx-react";
import MyStore from "./MyStore";

interface IProps
myStore?: MyStore;
id: string;


const MyComponent: React.FC<IProps> = props =>
const [state, setState] = React.useState("");
return (
<div>
<h1>props.id</h1>
</div>
);
;
export default inject("myStore")(observer(MyComponent));


I saw a solution but that was using React.createContext for exporting the store class. is not where the old approach for Mobx and Hooks?



here is the sanbox for the example







reactjs mobx mobx-react react-hooks react-tsx






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 25 at 3:11







Amir-Mousavi

















asked Mar 25 at 2:53









Amir-MousaviAmir-Mousavi

1,05611441




1,05611441







  • 1





    mobx-react@5 does not support hooks, but version 6 will support it, which is in rc.4 right now.

    – Tholle
    Mar 25 at 8:28











  • @Tholle, Thanks. BTW as I see you are so active here especially for react tag, do you think as using context became much easier since 16.8, is it more convenient to build custom state manager for small to mid-size apps, rather than importing some MB of library?

    – Amir-Mousavi
    Mar 25 at 9:35












  • You could definitely use e.g. the useReducer hook and share the state object and the dispatch function through context, which will be suitable for a lot of use cases, but I don't think it will replace MobX for mid-sized apps. It depends a lot on your particular project.

    – Tholle
    Mar 25 at 9:39













  • 1





    mobx-react@5 does not support hooks, but version 6 will support it, which is in rc.4 right now.

    – Tholle
    Mar 25 at 8:28











  • @Tholle, Thanks. BTW as I see you are so active here especially for react tag, do you think as using context became much easier since 16.8, is it more convenient to build custom state manager for small to mid-size apps, rather than importing some MB of library?

    – Amir-Mousavi
    Mar 25 at 9:35












  • You could definitely use e.g. the useReducer hook and share the state object and the dispatch function through context, which will be suitable for a lot of use cases, but I don't think it will replace MobX for mid-sized apps. It depends a lot on your particular project.

    – Tholle
    Mar 25 at 9:39








1




1





mobx-react@5 does not support hooks, but version 6 will support it, which is in rc.4 right now.

– Tholle
Mar 25 at 8:28





mobx-react@5 does not support hooks, but version 6 will support it, which is in rc.4 right now.

– Tholle
Mar 25 at 8:28













@Tholle, Thanks. BTW as I see you are so active here especially for react tag, do you think as using context became much easier since 16.8, is it more convenient to build custom state manager for small to mid-size apps, rather than importing some MB of library?

– Amir-Mousavi
Mar 25 at 9:35






@Tholle, Thanks. BTW as I see you are so active here especially for react tag, do you think as using context became much easier since 16.8, is it more convenient to build custom state manager for small to mid-size apps, rather than importing some MB of library?

– Amir-Mousavi
Mar 25 at 9:35














You could definitely use e.g. the useReducer hook and share the state object and the dispatch function through context, which will be suitable for a lot of use cases, but I don't think it will replace MobX for mid-sized apps. It depends a lot on your particular project.

– Tholle
Mar 25 at 9:39






You could definitely use e.g. the useReducer hook and share the state object and the dispatch function through context, which will be suitable for a lot of use cases, but I don't think it will replace MobX for mid-sized apps. It depends a lot on your particular project.

– Tholle
Mar 25 at 9:39













1 Answer
1






active

oldest

votes


















2














mobx-react doesn't support hooks and if you wish to use hooks with mobx you need to make use of mobx-react-lite which is also mentioned in the github documentation



To do that you can make use of React.createContext instead of provider and useContext instead of inject



Index.tsx



import * as React from "react";
import render from "react-dom";
import MyComponent, Store from "./MyComponent";

import "./styles.css";
import MyStore from "./MyStore";

function App()
const [state, setState] = React.useState("");
return (
<Store.Provider value=MyStore>
<div className="App">
<MyComponent id="someID" />
</div>
</Store.Provider>
);


const rootElement = document.getElementById("root");
render(<App />, rootElement);


MyComponent.tsx



import * as React from "react";
import Observer from "mobx-react-lite";
import MyStore from "./MyStore";

interface IProps
myStore?: MyStore;
id: string;


export const Store = React.createContext();
const MyComponent: React.FC<IProps> = props =>
const [state, setState] = React.useState("");
const store = React.useContext(Store);
console.log(state, store);
return (
<div>
<h1>props.id</h1>
</div>
);
;
export default MyComponent;


Working demo






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55330690%2freact-hooks-usestate-and-mobx-no-mobx-react-lite%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    2














    mobx-react doesn't support hooks and if you wish to use hooks with mobx you need to make use of mobx-react-lite which is also mentioned in the github documentation



    To do that you can make use of React.createContext instead of provider and useContext instead of inject



    Index.tsx



    import * as React from "react";
    import render from "react-dom";
    import MyComponent, Store from "./MyComponent";

    import "./styles.css";
    import MyStore from "./MyStore";

    function App()
    const [state, setState] = React.useState("");
    return (
    <Store.Provider value=MyStore>
    <div className="App">
    <MyComponent id="someID" />
    </div>
    </Store.Provider>
    );


    const rootElement = document.getElementById("root");
    render(<App />, rootElement);


    MyComponent.tsx



    import * as React from "react";
    import Observer from "mobx-react-lite";
    import MyStore from "./MyStore";

    interface IProps
    myStore?: MyStore;
    id: string;


    export const Store = React.createContext();
    const MyComponent: React.FC<IProps> = props =>
    const [state, setState] = React.useState("");
    const store = React.useContext(Store);
    console.log(state, store);
    return (
    <div>
    <h1>props.id</h1>
    </div>
    );
    ;
    export default MyComponent;


    Working demo






    share|improve this answer



























      2














      mobx-react doesn't support hooks and if you wish to use hooks with mobx you need to make use of mobx-react-lite which is also mentioned in the github documentation



      To do that you can make use of React.createContext instead of provider and useContext instead of inject



      Index.tsx



      import * as React from "react";
      import render from "react-dom";
      import MyComponent, Store from "./MyComponent";

      import "./styles.css";
      import MyStore from "./MyStore";

      function App()
      const [state, setState] = React.useState("");
      return (
      <Store.Provider value=MyStore>
      <div className="App">
      <MyComponent id="someID" />
      </div>
      </Store.Provider>
      );


      const rootElement = document.getElementById("root");
      render(<App />, rootElement);


      MyComponent.tsx



      import * as React from "react";
      import Observer from "mobx-react-lite";
      import MyStore from "./MyStore";

      interface IProps
      myStore?: MyStore;
      id: string;


      export const Store = React.createContext();
      const MyComponent: React.FC<IProps> = props =>
      const [state, setState] = React.useState("");
      const store = React.useContext(Store);
      console.log(state, store);
      return (
      <div>
      <h1>props.id</h1>
      </div>
      );
      ;
      export default MyComponent;


      Working demo






      share|improve this answer

























        2












        2








        2







        mobx-react doesn't support hooks and if you wish to use hooks with mobx you need to make use of mobx-react-lite which is also mentioned in the github documentation



        To do that you can make use of React.createContext instead of provider and useContext instead of inject



        Index.tsx



        import * as React from "react";
        import render from "react-dom";
        import MyComponent, Store from "./MyComponent";

        import "./styles.css";
        import MyStore from "./MyStore";

        function App()
        const [state, setState] = React.useState("");
        return (
        <Store.Provider value=MyStore>
        <div className="App">
        <MyComponent id="someID" />
        </div>
        </Store.Provider>
        );


        const rootElement = document.getElementById("root");
        render(<App />, rootElement);


        MyComponent.tsx



        import * as React from "react";
        import Observer from "mobx-react-lite";
        import MyStore from "./MyStore";

        interface IProps
        myStore?: MyStore;
        id: string;


        export const Store = React.createContext();
        const MyComponent: React.FC<IProps> = props =>
        const [state, setState] = React.useState("");
        const store = React.useContext(Store);
        console.log(state, store);
        return (
        <div>
        <h1>props.id</h1>
        </div>
        );
        ;
        export default MyComponent;


        Working demo






        share|improve this answer













        mobx-react doesn't support hooks and if you wish to use hooks with mobx you need to make use of mobx-react-lite which is also mentioned in the github documentation



        To do that you can make use of React.createContext instead of provider and useContext instead of inject



        Index.tsx



        import * as React from "react";
        import render from "react-dom";
        import MyComponent, Store from "./MyComponent";

        import "./styles.css";
        import MyStore from "./MyStore";

        function App()
        const [state, setState] = React.useState("");
        return (
        <Store.Provider value=MyStore>
        <div className="App">
        <MyComponent id="someID" />
        </div>
        </Store.Provider>
        );


        const rootElement = document.getElementById("root");
        render(<App />, rootElement);


        MyComponent.tsx



        import * as React from "react";
        import Observer from "mobx-react-lite";
        import MyStore from "./MyStore";

        interface IProps
        myStore?: MyStore;
        id: string;


        export const Store = React.createContext();
        const MyComponent: React.FC<IProps> = props =>
        const [state, setState] = React.useState("");
        const store = React.useContext(Store);
        console.log(state, store);
        return (
        <div>
        <h1>props.id</h1>
        </div>
        );
        ;
        export default MyComponent;


        Working demo







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 25 at 6:30









        Shubham KhatriShubham Khatri

        106k17137181




        106k17137181





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55330690%2freact-hooks-usestate-and-mobx-no-mobx-react-lite%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript