mirror of
https://github.com/coracle-social/flotilla.git
synced 2025-12-10 02:47:06 +00:00
Break out some utils
This commit is contained in:
@@ -6,9 +6,9 @@
|
|||||||
</style>
|
</style>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import Icon from "lib/components/Icon.svelte"
|
import Icon from "@lib/components/Icon.svelte"
|
||||||
import PrimaryNavItem from "lib/components/PrimaryNavItem.svelte"
|
import PrimaryNavItem from "@lib/components/PrimaryNavItem.svelte"
|
||||||
import {spaces} from "app/state"
|
import {spaces} from "@app/state"
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="relative w-14 bg-base-100">
|
<div class="relative w-14 bg-base-100">
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import Icon from "lib/components/Icon.svelte"
|
import Icon from "@lib/components/Icon.svelte"
|
||||||
import SecondaryNavItem from "lib/components/SecondaryNavItem.svelte"
|
import SecondaryNavItem from "@lib/components/SecondaryNavItem.svelte"
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="flex w-60 flex-col gap-1 bg-base-300 px-2 py-4">
|
<div class="flex w-60 flex-col gap-1 bg-base-300 px-2 py-4">
|
||||||
|
|||||||
21
src/app/modal.ts
Normal file
21
src/app/modal.ts
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
import type {ComponentType} from "svelte"
|
||||||
|
import {readable, writable} from "svelte/store"
|
||||||
|
import {randomId} from "@welshman/lib"
|
||||||
|
import {pushState} from "$app/navigation"
|
||||||
|
|
||||||
|
export const modals = new Map()
|
||||||
|
|
||||||
|
export const pushModal = (component: ComponentType, props: Record<string, any>) => {
|
||||||
|
const id = randomId()
|
||||||
|
|
||||||
|
// TODO: fix memory leak here by listening to history somehow
|
||||||
|
modals.set(id, {component, props})
|
||||||
|
pushState("", {modal: id})
|
||||||
|
|
||||||
|
return id
|
||||||
|
}
|
||||||
|
|
||||||
|
export const popModal = (id: string) => {
|
||||||
|
modals.delete(id)
|
||||||
|
history.back()
|
||||||
|
}
|
||||||
@@ -1,62 +1,4 @@
|
|||||||
import type {ComponentType} from "svelte"
|
import {readable} from "svelte/store"
|
||||||
import {readable, writable} from "svelte/store"
|
|
||||||
import type {FlyParams} from "svelte/transition"
|
|
||||||
import {fly as baseFly} from "svelte/transition"
|
|
||||||
import {randomId} from "@welshman/lib"
|
|
||||||
import {pushState} from "$app/navigation"
|
|
||||||
|
|
||||||
// Animations
|
|
||||||
|
|
||||||
export const fly = (node: Element, params?: FlyParams | undefined) =>
|
|
||||||
baseFly(node, {y: 20, ...params})
|
|
||||||
|
|
||||||
// Toast
|
|
||||||
|
|
||||||
export type Toast = {
|
|
||||||
id: number
|
|
||||||
message: string
|
|
||||||
options: ToastOptions
|
|
||||||
}
|
|
||||||
|
|
||||||
export type ToastOptions = {
|
|
||||||
timeout?: number
|
|
||||||
}
|
|
||||||
|
|
||||||
export const toast = writable<Toast | null>(null)
|
|
||||||
|
|
||||||
export const pushToast = (
|
|
||||||
{message = "", id = Math.random()}: Partial<Toast>,
|
|
||||||
options: ToastOptions,
|
|
||||||
) => {
|
|
||||||
toast.set({id, message, options})
|
|
||||||
|
|
||||||
setTimeout(() => popToast(id), options.timeout || 5000)
|
|
||||||
|
|
||||||
return id
|
|
||||||
}
|
|
||||||
|
|
||||||
export const popToast = (id: number) => toast.update($t => ($t?.id === id ? null : $t))
|
|
||||||
|
|
||||||
// Modals
|
|
||||||
|
|
||||||
export const modals = new Map()
|
|
||||||
|
|
||||||
export const pushModal = (component: ComponentType, props: Record<string, any>) => {
|
|
||||||
const id = randomId()
|
|
||||||
|
|
||||||
// TODO: fix memory leak here by listening to history somehow
|
|
||||||
modals.set(id, {component, props})
|
|
||||||
pushState("", {modal: id})
|
|
||||||
|
|
||||||
return id
|
|
||||||
}
|
|
||||||
|
|
||||||
export const popModal = (id: string) => {
|
|
||||||
modals.delete(id)
|
|
||||||
history.back()
|
|
||||||
}
|
|
||||||
|
|
||||||
// App state
|
|
||||||
|
|
||||||
export const spaces = readable([
|
export const spaces = readable([
|
||||||
{
|
{
|
||||||
|
|||||||
27
src/app/toast.ts
Normal file
27
src/app/toast.ts
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
import {writable} from "svelte/store"
|
||||||
|
import {randomId} from "@welshman/lib"
|
||||||
|
|
||||||
|
export type Toast = {
|
||||||
|
id: string
|
||||||
|
message: string
|
||||||
|
options: ToastOptions
|
||||||
|
}
|
||||||
|
|
||||||
|
export type ToastOptions = {
|
||||||
|
timeout?: number
|
||||||
|
}
|
||||||
|
|
||||||
|
export const toast = writable<Toast | null>(null)
|
||||||
|
|
||||||
|
export const pushToast = (
|
||||||
|
{message = "", id = randomId()}: Partial<Toast>,
|
||||||
|
options: ToastOptions,
|
||||||
|
) => {
|
||||||
|
toast.set({id, message, options})
|
||||||
|
|
||||||
|
setTimeout(() => popToast(id), options.timeout || 5000)
|
||||||
|
|
||||||
|
return id
|
||||||
|
}
|
||||||
|
|
||||||
|
export const popToast = (id: string) => toast.update($t => ($t?.id === id ? null : $t))
|
||||||
@@ -8,18 +8,18 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import cx from "classnames"
|
import cx from "classnames"
|
||||||
import {switcher} from "@welshman/lib"
|
import {switcher} from "@welshman/lib"
|
||||||
import AddSquare from "assets/icons/Add Square.svg?dataurl"
|
import AddSquare from "@assets/icons/Add Square.svg?dataurl"
|
||||||
import AddCircle from "assets/icons/Add Circle.svg?dataurl"
|
import AddCircle from "@assets/icons/Add Circle.svg?dataurl"
|
||||||
import AltArrowRight from "assets/icons/Alt Arrow Right.svg?dataurl"
|
import AltArrowRight from "@assets/icons/Alt Arrow Right.svg?dataurl"
|
||||||
import ClipboardText from "assets/icons/Clipboard Text.svg?dataurl"
|
import ClipboardText from "@assets/icons/Clipboard Text.svg?dataurl"
|
||||||
import Compass from "assets/icons/Compass.svg?dataurl"
|
import Compass from "@assets/icons/Compass.svg?dataurl"
|
||||||
import CompassBig from "assets/icons/Compass Big.svg?dataurl"
|
import CompassBig from "@assets/icons/Compass Big.svg?dataurl"
|
||||||
import HandPills from "assets/icons/Hand Pills.svg?dataurl"
|
import HandPills from "@assets/icons/Hand Pills.svg?dataurl"
|
||||||
import HomeSmile from "assets/icons/Home Smile.svg?dataurl"
|
import HomeSmile from "@assets/icons/Home Smile.svg?dataurl"
|
||||||
import Plain from "assets/icons/Plain.svg?dataurl"
|
import Plain from "@assets/icons/Plain.svg?dataurl"
|
||||||
import Settings from "assets/icons/Settings.svg?dataurl"
|
import Settings from "@assets/icons/Settings.svg?dataurl"
|
||||||
import UFO3 from "assets/icons/UFO 3.svg?dataurl"
|
import UFO3 from "@assets/icons/UFO 3.svg?dataurl"
|
||||||
import UserHeart from "assets/icons/User Heart.svg?dataurl"
|
import UserHeart from "@assets/icons/User Heart.svg?dataurl"
|
||||||
|
|
||||||
export let icon
|
export let icon
|
||||||
export let size = 5
|
export let size = 5
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
// place files you want to import through the `$lib` alias in this folder.
|
|
||||||
|
|||||||
5
src/lib/transition.ts
Normal file
5
src/lib/transition.ts
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
import type {FlyParams} from "svelte/transition"
|
||||||
|
import {fly as baseFly} from "svelte/transition"
|
||||||
|
|
||||||
|
export const fly = (node: Element, params?: FlyParams | undefined) =>
|
||||||
|
baseFly(node, {y: 20, ...params})
|
||||||
@@ -1,12 +1,14 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import "src/app.css"
|
import "@src/app.css"
|
||||||
import {onMount} from "svelte"
|
import {onMount} from "svelte"
|
||||||
import {page} from "$app/stores"
|
import {page} from "$app/stores"
|
||||||
import {onNavigate} from "$app/navigation"
|
import {onNavigate} from "$app/navigation"
|
||||||
import Icon from "lib/components/Icon.svelte"
|
import {fly} from '@lib/transition'
|
||||||
import PrimaryNav from "app/components/PrimaryNav.svelte"
|
import Icon from "@lib/components/Icon.svelte"
|
||||||
import SecondaryNav from "app/components/SecondaryNav.svelte"
|
import {toast} from '@app/toast'
|
||||||
import {fly, toast, modals, pushModal} from "app/state"
|
import {modals, pushModal} from '@app/modal'
|
||||||
|
import PrimaryNav from "@app/components/PrimaryNav.svelte"
|
||||||
|
import SecondaryNav from "@app/components/SecondaryNav.svelte"
|
||||||
|
|
||||||
const login = async () => {
|
const login = async () => {
|
||||||
const nl = await import("nostr-login")
|
const nl = await import("nostr-login")
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import Icon from "lib/components/Icon.svelte"
|
import Icon from "@lib/components/Icon.svelte"
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="hero min-h-screen bg-base-200">
|
<div class="hero min-h-screen bg-base-200">
|
||||||
|
|||||||
@@ -14,10 +14,10 @@ const config = {
|
|||||||
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
|
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
|
||||||
adapter: adapter(),
|
adapter: adapter(),
|
||||||
alias: {
|
alias: {
|
||||||
src: "src",
|
'@src': "src",
|
||||||
app: "src/app",
|
'@app': "src/app",
|
||||||
lib: "src/lib",
|
'@lib': "src/lib",
|
||||||
assets: "src/assets",
|
'@assets': "src/assets",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user