feat: get data from jwt

This commit is contained in:
caturbgs 2021-12-09 23:18:54 +07:00
parent 9e6ce2dbd8
commit c46599bdef
3 changed files with 8 additions and 4 deletions

View File

@ -279,9 +279,9 @@ export const DesktopLayout = observer(() => {
}
title={
<Text>
{store.user.data.email}{" "}
{store.user.data.username}
<Paragraph style={{fontWeight: 400}} type={"secondary-dark"}>
{store.authentication.userData.email}
{store.authentication.userData.username}
</Paragraph>
</Text>
}
@ -353,12 +353,13 @@ export const DesktopLayout = observer(() => {
}}
mode="inline"
>
<Menu.Item>
<Menu.Item key={'profile'}>
<Link to="/app/profile">
<span>Profile</span>
</Link>
</Menu.Item>
<Menu.Item
key={'logout'}
onClick={() => {
store.authentication.logout();
history.push("/login");
@ -372,7 +373,7 @@ export const DesktopLayout = observer(() => {
<Text>
{store.user.data.email}{" "}
<Paragraph style={{fontWeight: 400}} type={"secondary-dark"}>
{/*{store.authentication.userData.full_name}*/}
{store.authentication.userData.username}
</Paragraph>
</Text>
}

View File

@ -41,6 +41,7 @@ export class Authentication {
try {
const result = await http.post('/auth/login').send({username, password});
this.accessToken = result.body.access_token;
TokenUtil.setAccessToken(result.body.access_token);
TokenUtil.persistToken();
runInAction(() => {
@ -60,5 +61,6 @@ export class Authentication {
TokenUtil.clearAccessToken();
TokenUtil.persistToken();
this.isLoggedIn = false;
this.accessToken = '';
}
}

View File

@ -18,6 +18,7 @@ export class Store {
TokenUtil.loadToken();
if (TokenUtil.accessToken) {
this.authentication.isLoggedIn = true;
this.authentication.accessToken = TokenUtil.accessToken;
}
}
}