Compare commits

..

No commits in common. "ef9f12d0fd159f2be9f0b122efcef92a2af4a354" and "a8c460e742c8a9f4710bc6dc3eb62e0730775196" have entirely different histories.

4 changed files with 15 additions and 43 deletions

View file

@ -90,6 +90,7 @@ export class Client {
} }
const user = await api.parseUser(data); const user = await api.parseUser(data);
console.log(`Logged in as @${user.username}@${user.host}`); console.log(`Logged in as @${user.username}@${user.host}`);
console.log(`You have ${data.source.follow_request_count} follow request${data.source.follow_request_count === 1 ? '' : 's'}!`);
return user; return user;
} }

View file

@ -7,7 +7,6 @@
import { getTimeline } from '$lib/timeline.js'; import { getTimeline } from '$lib/timeline.js';
import { goto } from '$app/navigation'; import { goto } from '$app/navigation';
import { get } from 'svelte/store'; import { get } from 'svelte/store';
import { onMount } from 'svelte';
import TimelineIcon from '../../img/icons/timeline.svg'; import TimelineIcon from '../../img/icons/timeline.svg';
import NotificationsIcon from '../../img/icons/notifications.svg'; import NotificationsIcon from '../../img/icons/notifications.svg';
@ -21,33 +20,21 @@
import SettingsIcon from '../../img/icons/settings.svg'; import SettingsIcon from '../../img/icons/settings.svg';
import LogoutIcon from '../../img/icons/logout.svg'; import LogoutIcon from '../../img/icons/logout.svg';
export let path;
const VERSION = APP_VERSION; const VERSION = APP_VERSION;
let notification_count = 0; let notification_count = 0;
if (notification_count > 99) notification_count = "99+"; if (notification_count > 99) notification_count = "99+";
function handle_btn(name) { function goTimeline() {
let route; if (location.pathname === "/") {
switch (name) { getTimeline(true);
case "timeline": window.scrollTo({
route = "/"; top: 0,
break; behavior: "smooth"
case "notifcations": });
case "explore": return;
case "lists":
case "favourites":
case "bookmarks":
case "hashtags":
return;
} }
if (!route) return; goto("/");
window.scrollTo({
top: 0,
behavior: "smooth"
});
goto(route);
} }
async function log_out() { async function log_out() {
@ -65,18 +52,13 @@
</header> </header>
<div id="nav-items"> <div id="nav-items">
<Button label="Timeline" <Button label="Timeline" on:click={() => goTimeline()} active={!!$client.user}>
on:click={handle_btn("timeline")}
active={path == "/"}>
<svelte:fragment slot="icon"> <svelte:fragment slot="icon">
<TimelineIcon/> <TimelineIcon/>
</svelte:fragment> </svelte:fragment>
Timeline Timeline
</Button> </Button>
<Button label="Notifications" <Button label="Notifications" disabled>
on:click={handle_btn("notifications")}
active={path == "/notifications"}
disabled>
<svelte:fragment slot="icon"> <svelte:fragment slot="icon">
<NotificationsIcon/> <NotificationsIcon/>
</svelte:fragment> </svelte:fragment>

View file

@ -5,16 +5,12 @@
import { client, Client } from '$lib/client/client.js'; import { client, Client } from '$lib/client/client.js';
import { get } from 'svelte/store'; import { get } from 'svelte/store';
export let data;
$: path = data.path || "/";
let ready = new Promise(resolve => { let ready = new Promise(resolve => {
if (get(client)) { if (get(client)) {
return resolve(); return resolve();
} }
let new_client = new Client(); let new_client = new Client();
new_client.load(); new_client.load();
client.set(new_client);
return new_client.getClientUser().then(user => { return new_client.getClientUser().then(user => {
if (!user) { if (!user) {
@ -22,11 +18,8 @@
return resolve(); return resolve();
} }
new_client.user = user; new_client.user = user;
window.peekie = new_client; client.set(new_client);
client.update(client => { client.user
client.user = user;
return client;
});
return resolve(); return resolve();
}); });
}); });
@ -35,7 +28,7 @@
<div id="app"> <div id="app">
<header> <header>
<Navigation path={path} /> <Navigation />
</header> </header>
<main> <main>

View file

@ -1,6 +1,2 @@
export const prerender = true; export const prerender = true;
export const ssr = false; export const ssr = false;
export async function load({ url }) {
return { path: url.pathname };
}