2020-11-19 18:55:40 +01:00
|
|
|
import * as API from "../api"
|
2021-01-07 15:53:56 +01:00
|
|
|
import { writable, get } from "svelte/store"
|
|
|
|
import { builderStore } from "./builder"
|
2021-01-28 15:29:35 +01:00
|
|
|
import { TableNames } from "../constants"
|
2020-11-11 13:25:50 +01:00
|
|
|
|
2020-11-18 20:18:18 +01:00
|
|
|
const createAuthStore = () => {
|
2021-01-28 15:29:35 +01:00
|
|
|
const store = writable(null)
|
2020-11-11 13:25:50 +01:00
|
|
|
|
2021-01-28 15:29:35 +01:00
|
|
|
// Fetches the user object if someone is logged in and has reloaded the page
|
|
|
|
const fetchUser = async () => {
|
|
|
|
// Fetch the first user if inside the builder
|
|
|
|
if (get(builderStore).inBuilder) {
|
|
|
|
const users = await API.fetchTableData(TableNames.USERS)
|
|
|
|
if (!users.error && users[0] != null) {
|
|
|
|
store.set(users[0])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Or fetch the current user from localstorage in a real app
|
|
|
|
else {
|
2021-01-28 15:51:24 +01:00
|
|
|
const user = await API.fetchSelf()
|
|
|
|
store.set(user)
|
2021-01-28 15:29:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-17 13:08:24 +01:00
|
|
|
return {
|
|
|
|
subscribe: store.subscribe,
|
2021-06-21 10:56:46 +02:00
|
|
|
actions: { fetchUser },
|
2020-11-11 13:25:50 +01:00
|
|
|
}
|
2020-11-17 13:08:24 +01:00
|
|
|
}
|
2020-11-11 13:25:50 +01:00
|
|
|
|
2020-11-18 20:18:18 +01:00
|
|
|
export const authStore = createAuthStore()
|