117 lines
2.9 KiB
TypeScript
117 lines
2.9 KiB
TypeScript
import { writable, readable, type Writable, type Readable } from 'svelte/store';
|
|
import superjson from 'superjson';
|
|
import type { AppRouter, PrismaPermission } from 'server/src/trpc';
|
|
import { createTRPCProxyClient, httpBatchLink } from '@trpc/client';
|
|
import { browser, dev } from '$app/environment';
|
|
import Cookies from 'js-cookie';
|
|
import cuid from 'cuid';
|
|
|
|
export const serverBaseUrl = dev ? `http://${browser && window.location.hostname}:2022` : '';
|
|
export let token: string = Cookies.get('token') || '';
|
|
export const t = createTRPCProxyClient<AppRouter>({
|
|
transformer: superjson,
|
|
links: [
|
|
httpBatchLink({
|
|
url: `${serverBaseUrl}/trpc`,
|
|
headers() {
|
|
return {
|
|
Authorization: token
|
|
};
|
|
}
|
|
})
|
|
]
|
|
});
|
|
|
|
interface AppSession {
|
|
isRegistrationEnabled: boolean;
|
|
token?: string;
|
|
ipv4: string | null;
|
|
ipv6: string | null;
|
|
version: string | null;
|
|
userId: string | null;
|
|
teamId: string | null;
|
|
permission: string;
|
|
isAdmin: boolean;
|
|
whiteLabeled: boolean;
|
|
whiteLabeledDetails: {
|
|
icon: string | null;
|
|
};
|
|
tokens: {
|
|
github: string | null;
|
|
gitlab: string | null;
|
|
};
|
|
pendingInvitations: Array<any>;
|
|
}
|
|
|
|
export const appSession: Writable<AppSession> = writable({
|
|
isRegistrationEnabled: false,
|
|
ipv4: null,
|
|
ipv6: null,
|
|
version: null,
|
|
userId: null,
|
|
teamId: null,
|
|
permission: 'read',
|
|
isAdmin: false,
|
|
whiteLabeled: false,
|
|
whiteLabeledDetails: {
|
|
icon: null
|
|
},
|
|
tokens: {
|
|
github: null,
|
|
gitlab: null
|
|
},
|
|
pendingInvitations: []
|
|
});
|
|
|
|
interface AddToast {
|
|
type?: 'info' | 'success' | 'error';
|
|
message: string;
|
|
timeout?: number | undefined;
|
|
}
|
|
export const toasts: any = writable([]);
|
|
|
|
export const dismissToast = (id: string) => {
|
|
toasts.update((all: any) => all.filter((t: any) => t.id !== id));
|
|
};
|
|
export const pauseToast = (id: string) => {
|
|
toasts.update((all: any) => {
|
|
const index = all.findIndex((t: any) => t.id === id);
|
|
if (index > -1) clearTimeout(all[index].timeoutInterval);
|
|
return all;
|
|
});
|
|
};
|
|
export const resumeToast = (id: string) => {
|
|
toasts.update((all: any) => {
|
|
const index = all.findIndex((t: any) => t.id === id);
|
|
if (index > -1) {
|
|
all[index].timeoutInterval = setTimeout(() => {
|
|
dismissToast(id);
|
|
}, all[index].timeout);
|
|
}
|
|
return all;
|
|
});
|
|
};
|
|
|
|
export const addToast = (toast: AddToast) => {
|
|
const id = cuid();
|
|
const defaults = {
|
|
id,
|
|
type: 'info',
|
|
timeout: 2000
|
|
};
|
|
let t: any = { ...defaults, ...toast };
|
|
if (t.timeout) t.timeoutInterval = setTimeout(() => dismissToast(id), t.timeout);
|
|
toasts.update((all: any) => [t, ...all]);
|
|
};
|
|
|
|
export const features = readable({
|
|
beta: browser && window.localStorage.getItem('beta') === 'true',
|
|
latestVersion: browser && window.localStorage.getItem('latestVersion')
|
|
});
|
|
|
|
export const updateLoading: Writable<boolean> = writable(false);
|
|
export const isUpdateAvailable: Writable<boolean> = writable(false);
|
|
export const latestVersion: Writable<string> = writable('latest');
|
|
export const loginEmail: Writable<string | undefined> = writable();
|
|
export const search: any = writable('');
|