Setting and getting state from session storage react












0















So I have a sidenav that has expansion panels that open. I'm setting the state on which expansion panel is open. But on click of one of the sidenav, I get redirected to the list item path and the sidenav returns to original state. on the redirect I'd like for the part of the sidenav that was open to persist. I'm trying to do it like this. I'm not sure why it's not working.



 handleOpen = path => {
this.setState({ openPath: path });
sessionStorage.setItem('path', this.state.openPath);
};

class Sidebar extends React.Component {
constructor(props){
super(props);
let getPath = JSON.parse(sessionStorage.getItem('path'))
this.state = {
openPath: getPath
};

}









share|improve this question

























  • Provide an initial value to getPath and setState calls are asynchronous. Try putting sessionStorage.setItem('path', this.state.openPath); in the callback of setState.

    – Hassan Imam
    Nov 20 '18 at 2:16













  • have you considered using react router? it can be integrated into redux (or just your app state if not using redux) and it will take care of which route you're on and persist that data internally so you don't have to

    – duxfox--
    Nov 20 '18 at 2:17











  • @HassanImam hi sorry, I didn't quite understand that. Could you give me an example?

    – AnneJoday
    Nov 20 '18 at 2:17











  • @duxfox-- yes, the problem is I am using Gatsby which is a static site generator using react router under the hood. So I'm not able to configure my own routes, it kind of does that on its own based on its own createPages API.

    – AnneJoday
    Nov 20 '18 at 2:18











  • Update your handleOpen to this.setState({openPath: path}, () => sessionStorage.setItem('path', this.state.openPath));

    – Hassan Imam
    Nov 20 '18 at 2:21


















0















So I have a sidenav that has expansion panels that open. I'm setting the state on which expansion panel is open. But on click of one of the sidenav, I get redirected to the list item path and the sidenav returns to original state. on the redirect I'd like for the part of the sidenav that was open to persist. I'm trying to do it like this. I'm not sure why it's not working.



 handleOpen = path => {
this.setState({ openPath: path });
sessionStorage.setItem('path', this.state.openPath);
};

class Sidebar extends React.Component {
constructor(props){
super(props);
let getPath = JSON.parse(sessionStorage.getItem('path'))
this.state = {
openPath: getPath
};

}









share|improve this question

























  • Provide an initial value to getPath and setState calls are asynchronous. Try putting sessionStorage.setItem('path', this.state.openPath); in the callback of setState.

    – Hassan Imam
    Nov 20 '18 at 2:16













  • have you considered using react router? it can be integrated into redux (or just your app state if not using redux) and it will take care of which route you're on and persist that data internally so you don't have to

    – duxfox--
    Nov 20 '18 at 2:17











  • @HassanImam hi sorry, I didn't quite understand that. Could you give me an example?

    – AnneJoday
    Nov 20 '18 at 2:17











  • @duxfox-- yes, the problem is I am using Gatsby which is a static site generator using react router under the hood. So I'm not able to configure my own routes, it kind of does that on its own based on its own createPages API.

    – AnneJoday
    Nov 20 '18 at 2:18











  • Update your handleOpen to this.setState({openPath: path}, () => sessionStorage.setItem('path', this.state.openPath));

    – Hassan Imam
    Nov 20 '18 at 2:21
















0












0








0








So I have a sidenav that has expansion panels that open. I'm setting the state on which expansion panel is open. But on click of one of the sidenav, I get redirected to the list item path and the sidenav returns to original state. on the redirect I'd like for the part of the sidenav that was open to persist. I'm trying to do it like this. I'm not sure why it's not working.



 handleOpen = path => {
this.setState({ openPath: path });
sessionStorage.setItem('path', this.state.openPath);
};

class Sidebar extends React.Component {
constructor(props){
super(props);
let getPath = JSON.parse(sessionStorage.getItem('path'))
this.state = {
openPath: getPath
};

}









share|improve this question
















So I have a sidenav that has expansion panels that open. I'm setting the state on which expansion panel is open. But on click of one of the sidenav, I get redirected to the list item path and the sidenav returns to original state. on the redirect I'd like for the part of the sidenav that was open to persist. I'm trying to do it like this. I'm not sure why it's not working.



 handleOpen = path => {
this.setState({ openPath: path });
sessionStorage.setItem('path', this.state.openPath);
};

class Sidebar extends React.Component {
constructor(props){
super(props);
let getPath = JSON.parse(sessionStorage.getItem('path'))
this.state = {
openPath: getPath
};

}






javascript reactjs state






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 20 '18 at 2:11









zynkn

3,90821030




3,90821030










asked Nov 20 '18 at 2:08









AnneJodayAnneJoday

246




246













  • Provide an initial value to getPath and setState calls are asynchronous. Try putting sessionStorage.setItem('path', this.state.openPath); in the callback of setState.

    – Hassan Imam
    Nov 20 '18 at 2:16













  • have you considered using react router? it can be integrated into redux (or just your app state if not using redux) and it will take care of which route you're on and persist that data internally so you don't have to

    – duxfox--
    Nov 20 '18 at 2:17











  • @HassanImam hi sorry, I didn't quite understand that. Could you give me an example?

    – AnneJoday
    Nov 20 '18 at 2:17











  • @duxfox-- yes, the problem is I am using Gatsby which is a static site generator using react router under the hood. So I'm not able to configure my own routes, it kind of does that on its own based on its own createPages API.

    – AnneJoday
    Nov 20 '18 at 2:18











  • Update your handleOpen to this.setState({openPath: path}, () => sessionStorage.setItem('path', this.state.openPath));

    – Hassan Imam
    Nov 20 '18 at 2:21





















  • Provide an initial value to getPath and setState calls are asynchronous. Try putting sessionStorage.setItem('path', this.state.openPath); in the callback of setState.

    – Hassan Imam
    Nov 20 '18 at 2:16













  • have you considered using react router? it can be integrated into redux (or just your app state if not using redux) and it will take care of which route you're on and persist that data internally so you don't have to

    – duxfox--
    Nov 20 '18 at 2:17











  • @HassanImam hi sorry, I didn't quite understand that. Could you give me an example?

    – AnneJoday
    Nov 20 '18 at 2:17











  • @duxfox-- yes, the problem is I am using Gatsby which is a static site generator using react router under the hood. So I'm not able to configure my own routes, it kind of does that on its own based on its own createPages API.

    – AnneJoday
    Nov 20 '18 at 2:18











  • Update your handleOpen to this.setState({openPath: path}, () => sessionStorage.setItem('path', this.state.openPath));

    – Hassan Imam
    Nov 20 '18 at 2:21



















Provide an initial value to getPath and setState calls are asynchronous. Try putting sessionStorage.setItem('path', this.state.openPath); in the callback of setState.

– Hassan Imam
Nov 20 '18 at 2:16







Provide an initial value to getPath and setState calls are asynchronous. Try putting sessionStorage.setItem('path', this.state.openPath); in the callback of setState.

– Hassan Imam
Nov 20 '18 at 2:16















have you considered using react router? it can be integrated into redux (or just your app state if not using redux) and it will take care of which route you're on and persist that data internally so you don't have to

– duxfox--
Nov 20 '18 at 2:17





have you considered using react router? it can be integrated into redux (or just your app state if not using redux) and it will take care of which route you're on and persist that data internally so you don't have to

– duxfox--
Nov 20 '18 at 2:17













@HassanImam hi sorry, I didn't quite understand that. Could you give me an example?

– AnneJoday
Nov 20 '18 at 2:17





@HassanImam hi sorry, I didn't quite understand that. Could you give me an example?

– AnneJoday
Nov 20 '18 at 2:17













@duxfox-- yes, the problem is I am using Gatsby which is a static site generator using react router under the hood. So I'm not able to configure my own routes, it kind of does that on its own based on its own createPages API.

– AnneJoday
Nov 20 '18 at 2:18





@duxfox-- yes, the problem is I am using Gatsby which is a static site generator using react router under the hood. So I'm not able to configure my own routes, it kind of does that on its own based on its own createPages API.

– AnneJoday
Nov 20 '18 at 2:18













Update your handleOpen to this.setState({openPath: path}, () => sessionStorage.setItem('path', this.state.openPath));

– Hassan Imam
Nov 20 '18 at 2:21







Update your handleOpen to this.setState({openPath: path}, () => sessionStorage.setItem('path', this.state.openPath));

– Hassan Imam
Nov 20 '18 at 2:21














1 Answer
1






active

oldest

votes


















1














You should probably show at least how the component is used but at first glance:



sessionStorage.setItem('path', this.state.openPath);


needs to be



sessionStorage.setItem('path', JSON.stringify(this.state.openPath));


also I'd reverse these lines:



  handleOpen = path => {
this.setState({ openPath: path });
sessionStorage.setItem('path', this.state.openPath);
};


to



  handleOpen = path => {
sessionStorage.setItem('path', this.state.openPath);
this.setState({ openPath: path });
};


It shouldn't matter since Javascript is single threaded but at least stylistically I like to make setState the last expression in any handlers.






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%2f53385219%2fsetting-and-getting-state-from-session-storage-react%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









    1














    You should probably show at least how the component is used but at first glance:



    sessionStorage.setItem('path', this.state.openPath);


    needs to be



    sessionStorage.setItem('path', JSON.stringify(this.state.openPath));


    also I'd reverse these lines:



      handleOpen = path => {
    this.setState({ openPath: path });
    sessionStorage.setItem('path', this.state.openPath);
    };


    to



      handleOpen = path => {
    sessionStorage.setItem('path', this.state.openPath);
    this.setState({ openPath: path });
    };


    It shouldn't matter since Javascript is single threaded but at least stylistically I like to make setState the last expression in any handlers.






    share|improve this answer






























      1














      You should probably show at least how the component is used but at first glance:



      sessionStorage.setItem('path', this.state.openPath);


      needs to be



      sessionStorage.setItem('path', JSON.stringify(this.state.openPath));


      also I'd reverse these lines:



        handleOpen = path => {
      this.setState({ openPath: path });
      sessionStorage.setItem('path', this.state.openPath);
      };


      to



        handleOpen = path => {
      sessionStorage.setItem('path', this.state.openPath);
      this.setState({ openPath: path });
      };


      It shouldn't matter since Javascript is single threaded but at least stylistically I like to make setState the last expression in any handlers.






      share|improve this answer




























        1












        1








        1







        You should probably show at least how the component is used but at first glance:



        sessionStorage.setItem('path', this.state.openPath);


        needs to be



        sessionStorage.setItem('path', JSON.stringify(this.state.openPath));


        also I'd reverse these lines:



          handleOpen = path => {
        this.setState({ openPath: path });
        sessionStorage.setItem('path', this.state.openPath);
        };


        to



          handleOpen = path => {
        sessionStorage.setItem('path', this.state.openPath);
        this.setState({ openPath: path });
        };


        It shouldn't matter since Javascript is single threaded but at least stylistically I like to make setState the last expression in any handlers.






        share|improve this answer















        You should probably show at least how the component is used but at first glance:



        sessionStorage.setItem('path', this.state.openPath);


        needs to be



        sessionStorage.setItem('path', JSON.stringify(this.state.openPath));


        also I'd reverse these lines:



          handleOpen = path => {
        this.setState({ openPath: path });
        sessionStorage.setItem('path', this.state.openPath);
        };


        to



          handleOpen = path => {
        sessionStorage.setItem('path', this.state.openPath);
        this.setState({ openPath: path });
        };


        It shouldn't matter since Javascript is single threaded but at least stylistically I like to make setState the last expression in any handlers.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Nov 20 '18 at 4:42

























        answered Nov 20 '18 at 2:18









        bknightsbknights

        7,8812820




        7,8812820






























            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%2f53385219%2fsetting-and-getting-state-from-session-storage-react%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

            MongoDB - Not Authorized To Execute Command

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

            How to fix TextFormField cause rebuild widget in Flutter