PluralKit/src/pages/Dash.svelte

85 lines
2.9 KiB
Svelte
Raw Normal View History

2021-12-11 11:01:36 +00:00
<script lang="ts">
import { Container, Col, Row, TabContent, TabPane, Card } from 'sveltestrap';
import { navigate, useLocation } from "svelte-navigator";
import { currentUser, loggedIn } from '../stores';
2021-12-11 17:45:08 +00:00
import System from '../lib/system/Main.svelte';
2021-12-11 11:01:36 +00:00
import PKAPI from '../api';
import Sys from '../api/system';
2021-12-11 11:01:36 +00:00
2021-12-11 17:41:21 +00:00
let isPublic = false;
// get the state from the navigator so that we know which tab to start on
2021-12-11 11:01:36 +00:00
let location = useLocation();
let tabPane = $location.state && $location.state.tab;
// if there is no state, default to system
2021-12-11 11:01:36 +00:00
if (tabPane === undefined) {
tabPane = "system";
}
// subscribe to the cached user in the store
2021-12-11 11:01:36 +00:00
let current;
currentUser.subscribe(value => {
current = value;
});
// if there is no cached user, get the user from localstorage
let user = new Sys(current ? current : JSON.parse(localStorage.getItem("pk-user")));
// since the user in localstorage can be outdated, fetch the user from the api again
2021-12-11 11:01:36 +00:00
if (!current) {
login(localStorage.getItem("pk-token"));
}
// if there's no user, and there's no token, assume the login failed and send us back to the homepage.
2021-12-11 11:01:36 +00:00
if (!localStorage.getItem("pk-token") && !user) {
navigate("/");
}
2021-12-11 14:56:47 +00:00
let settings = JSON.parse(localStorage.getItem("pk-settings"));
// just the login function
2021-12-11 11:01:36 +00:00
async function login(token: string) {
const api = new PKAPI();
try {
if (!token) {
throw new Error("Token cannot be empty.")
}
const res: Sys = await api.getSystem({token: token});
localStorage.setItem("pk-token", token);
localStorage.setItem("pk-user", JSON.stringify(res));
loggedIn.update(() => true);
currentUser.update(() => res);
user = res;
} catch (error) {
console.log(error);
localStorage.removeItem("pk-token");
localStorage.removeItem("pk-user");
currentUser.update(() => null);
navigate("/");
}
}
</script>
2021-12-11 14:56:47 +00:00
<!-- display the banner if there's a banner set, and if the current settings allow for it-->
{#if user && user.banner && settings && settings.appearance.banner_top}
2021-12-11 11:01:36 +00:00
<div class="banner" style="background-image: url({user.banner})" />
{/if}
<Container>
<Row>
<Col class="mx-auto" xs={12} lg={10}>
2021-12-11 11:01:36 +00:00
<TabContent class="mt-3">
<TabPane tabId="system" tab="System" active={tabPane === "system"}>
2021-12-11 17:41:21 +00:00
<System bind:user={user} bind:isPublic={isPublic} />
2021-12-11 11:01:36 +00:00
</TabPane>
<TabPane tabId="members" tab="Members" active={tabPane === "members"}>
alo
</TabPane>
</TabContent>
</Col>
</Row>
</Container>
<svelte:head>
<title>pk-webs | dash</title>
</svelte:head>