From 11ea9ad7a922ee80734a3a9c7f3ae8c94fe46522 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Fri, 24 Aug 2018 15:40:01 +0300 Subject: save uid to cookie to prevent initial reload --- vnext/src/App.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'vnext/src/App.js') diff --git a/vnext/src/App.js b/vnext/src/App.js index af12c3a7..730deb19 100644 --- a/vnext/src/App.js +++ b/vnext/src/App.js @@ -29,7 +29,7 @@ export default class App extends React.Component { } this.state = { visitor: { - uid: 0, + uid: cookies.load('_juick_uid') || 0, hash: cookies.load('hash') } }; @@ -232,6 +232,7 @@ export default class App extends React.Component { ); } auth = (visitor) => { + cookies.save('_juick_uid', visitor.uid, { path: '/' }); this.setState({ visitor: visitor }); -- cgit v1.2.3