schreiben/src/views/Page.svelte

138 lines
3.8 KiB
Svelte
Raw Normal View History

2023-03-05 17:10:29 +00:00
<script lang="ts">
import type { XmlFragment } from "yjs";
import { inject } from "regexparam";
2023-08-29 23:50:09 +00:00
import ChevronRight from "eva-icons/fill/svg/chevron-right.svg";
2023-03-05 17:10:29 +00:00
import Editor from "../editor/Editor.svelte";
import { getWorldPage, getWorldY, type WorldY } from "../lib/doc";
import { routes } from "../lib/routes";
import { loadWorlds } from "../lib/worldStorage";
2023-08-29 23:50:09 +00:00
import breadcrumbs from "../lib/breadcrumbs";
import { pageStore } from "../lib/makeYdocStore";
import { derived } from "svelte/store";
import { getTitle } from "../lib/getTitle";
2023-08-31 12:41:09 +00:00
import { onMount, tick } from "svelte";
2023-03-05 17:10:29 +00:00
export let worldId: string;
export let pageId: string;
2023-08-29 23:50:09 +00:00
$: pageBreadcrumbs = breadcrumbs.worldStore(worldId);
$: crumbsTitles = derived(
[pageBreadcrumbs],
([crumbs], set: (val: (string | undefined)[]) => void) => {
return derived(
crumbs.map((c) => pageStore(worldId, c)),
(crumbPages) =>
crumbPages.map(
(x, index) =>
x && x.doc && getTitle(x.doc, `page/${crumbs[index]}`),
),
).subscribe(set);
},
);
2023-08-29 23:50:09 +00:00
2023-03-05 17:10:29 +00:00
async function loadDoc(
worldId: string,
2023-08-29 23:50:09 +00:00
pageId: string,
2023-03-05 17:10:29 +00:00
): Promise<{ worldY: WorldY; doc: XmlFragment }> {
const worlds = await loadWorlds();
const worldIdentifier = worlds.find((w) => w.room === worldId);
if (!worldIdentifier) {
throw new Error("No conozco ese mundo.");
}
const worldY = getWorldY(worldIdentifier);
2023-03-25 23:28:56 +00:00
2023-03-05 17:10:29 +00:00
return { worldY, doc: getWorldPage(worldY.ydoc, pageId) };
}
2023-03-25 23:28:56 +00:00
let state: "loading" | { worldY: WorldY; doc: XmlFragment } | { error: any };
$: {
state = "loading";
loadDoc(worldId, pageId)
.then((doc) => {
state = doc;
})
.catch((error) => (state = { error }));
}
2023-08-31 12:41:09 +00:00
let breadcrumbsEl: HTMLDivElement;
const crumbsScrollToEnd = async () => {
await tick();
breadcrumbsEl?.scroll({
left: breadcrumbsEl.scrollWidth,
behavior: "smooth",
});
};
onMount(() => {
crumbsScrollToEnd();
});
$: {
$crumbsTitles;
$pageBreadcrumbs;
crumbsScrollToEnd();
}
2023-03-05 17:10:29 +00:00
</script>
<nav>
<details>
<summary>Opciones</summary>
<ul>
<li><a href={routes.ChooseWorld}>🠔 Elegir otro mundo</a></li>
<li>
<a href={inject(routes.ShareWorld, { worldId })}
>📱 Agregar mundo a otro dispositivo</a
>
</li>
</ul>
</details>
2023-08-29 23:50:09 +00:00
<!-- https://devdojo.com/pines/docs/breadcrumbs -->
<div
2023-08-31 12:41:09 +00:00
class="flex justify-between overflow-x-auto rounded-md border border-neutral-200/60 px-3.5 py-1"
bind:this={breadcrumbsEl}
2023-08-29 23:50:09 +00:00
>
<ol
2023-08-30 00:50:07 +00:00
class="inline-flex items-center space-x-1 text-xs text-neutral-500 sm:mb-0 [&_.active-breadcrumb]:font-medium [&_.active-breadcrumb]:text-neutral-600"
2023-08-29 23:50:09 +00:00
>
{#each $pageBreadcrumbs as crumb, index}
2023-08-31 12:41:09 +00:00
<li
class:anchor-none={index !== $pageBreadcrumbs.length - 1}
class:anchor-auto={index === $pageBreadcrumbs.length - 1}
>
2023-08-29 23:50:09 +00:00
<a
href={inject(routes.Page, { worldId, pageId: crumb })}
2023-08-31 12:41:09 +00:00
class="inline-flex items-center text-ellipsis whitespace-nowrap py-1 font-normal hover:text-neutral-900 focus:outline-none"
class:active-breadcrumb={crumb === pageId}
>{$crumbsTitles[index] || crumb}</a
2023-08-29 23:50:09 +00:00
>
</li>
{#if index !== $pageBreadcrumbs.length - 1}
2023-08-31 12:41:09 +00:00
<ChevronRight
class="anchor-none h-5 w-5 fill-current text-gray-400/70"
/>
2023-08-29 23:50:09 +00:00
{/if}
{/each}
</ol>
</div>
</nav>
2023-03-25 23:28:56 +00:00
{#if state === "loading"}Cargando...{:else if "doc" in state}
<Editor doc={state.doc} worldY={state.worldY} />
{:else if "error" in state}
{state.error}
2023-03-05 17:10:29 +00:00
<a href={routes.ChooseWorld}>Volver al inicio</a>
2023-03-25 23:28:56 +00:00
{/if}
2023-03-05 17:10:29 +00:00
<style>
nav a {
2023-03-05 17:10:29 +00:00
color: inherit;
}
2023-08-31 12:41:09 +00:00
.anchor-none {
overflow-anchor: none;
}
.anchor-auto {
overflow-anchor: auto;
}
2023-03-05 17:10:29 +00:00
</style>