fix login page showing when logged in
This commit is contained in:
parent
8f41613179
commit
ce1dfc388f
|
@ -15,6 +15,7 @@ export class Client {
|
|||
constructor() {
|
||||
this.instance = null;
|
||||
this.app = null;
|
||||
this.user = null;
|
||||
this.cache = {
|
||||
users: {},
|
||||
emojis: {},
|
||||
|
@ -86,10 +87,13 @@ export class Client {
|
|||
|
||||
async verifyCredentials() {
|
||||
const data = await api.verifyCredentials();
|
||||
if (!data) return false;
|
||||
if (!data) {
|
||||
this.user = false;
|
||||
return false;
|
||||
}
|
||||
this.user = await api.parseUser(data);
|
||||
client.set(this);
|
||||
return data;
|
||||
return this.user;
|
||||
}
|
||||
|
||||
async getTimeline(last_post_id) {
|
||||
|
|
2
src/routes/+page.js
Normal file
2
src/routes/+page.js
Normal file
|
@ -0,0 +1,2 @@
|
|||
export const prerender = true;
|
||||
export const ssr = false;
|
|
@ -10,8 +10,7 @@
|
|||
import { get } from 'svelte/store';
|
||||
|
||||
let client = get(Client.get());
|
||||
let ready = !!client;
|
||||
let logged_in = client.app && client.app.token;
|
||||
let logged_in;
|
||||
let instance_url_error = false;
|
||||
let logging_in = false;
|
||||
|
||||
|
@ -27,11 +26,16 @@
|
|||
|
||||
if (client.app && client.app.token) {
|
||||
// this triggers the client actually getting the authenticated user's data.
|
||||
client.verifyCredentials().then(res => {
|
||||
if (res) {
|
||||
console.log(`Logged in as @${client.user.username}@${client.user.host}`);
|
||||
client.verifyCredentials().then(user => {
|
||||
if (user) {
|
||||
console.log(`Logged in as @${user.username}@${user.host}`);
|
||||
logged_in = true;
|
||||
} else {
|
||||
logged_in = false;
|
||||
}
|
||||
});
|
||||
} else {
|
||||
logged_in = false;
|
||||
}
|
||||
|
||||
function log_in(event) {
|
||||
|
@ -67,19 +71,11 @@
|
|||
</header>
|
||||
|
||||
<main>
|
||||
{#if ready}
|
||||
{#if logged_in}
|
||||
<header>
|
||||
<h1>Home</h1>
|
||||
<nav>
|
||||
<Button centered active>Home</Button>
|
||||
<Button centered disabled>Local</Button>
|
||||
<Button centered disabled>Federated</Button>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<Feed />
|
||||
{:else}
|
||||
{#if logged_in === undefined}
|
||||
<div class="loading throb">
|
||||
<span>just a moment...</span>
|
||||
</div>
|
||||
{:else if logged_in === false}
|
||||
<form on:submit={log_in} id="login-form">
|
||||
<img class="app-icon light-only" src={LogoLight} width="320px" aria-label="Space Social"/>
|
||||
<img class="app-icon dark-only" src={LogoDark} width="320px" aria-label="Space Social"/>
|
||||
|
@ -103,11 +99,17 @@
|
|||
|
||||
<p class="form-footer">made with ❤️ by <a href="https://arimelody.me">ari melody</a>, 2024</p>
|
||||
</form>
|
||||
{/if}
|
||||
{:else}
|
||||
<div class="loading throb">
|
||||
<span>just a moment...</span>
|
||||
</div>
|
||||
<header>
|
||||
<h1>Home</h1>
|
||||
<nav>
|
||||
<Button centered active>Home</Button>
|
||||
<Button centered disabled>Local</Button>
|
||||
<Button centered disabled>Federated</Button>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<Feed />
|
||||
{/if}
|
||||
</main>
|
||||
|
||||
|
|
Loading…
Reference in a new issue