You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
239 lines
7.0 KiB
239 lines
7.0 KiB
<script lang="ts"> |
|
import { |
|
Button, Card, |
|
Sidebar, |
|
SidebarGroup, |
|
SidebarItem, |
|
SidebarWrapper, |
|
Skeleton, |
|
TextPlaceholder, |
|
Tooltip, Heading |
|
} from "flowbite-svelte"; |
|
import { CloseOutline } from 'flowbite-svelte-icons'; |
|
import { getContext, onDestroy, onMount } from "svelte"; |
|
import type { NDKEvent } from "@nostr-dev-kit/ndk"; |
|
import PublicationSection from "./PublicationSection.svelte"; |
|
import type { PublicationTree } from "$lib/data_structures/publication_tree"; |
|
import Details from "$components/util/Details.svelte"; |
|
import { publicationColumnVisibility } from "$lib/stores"; |
|
import BlogHeader from "$components/blog/BlogHeader.svelte"; |
|
import Interactions from "$components/util/Interactions.svelte"; |
|
import TocToggle from "$components/util/TocToggle.svelte"; |
|
|
|
let { rootAddress, publicationType, indexEvent } = $props<{ |
|
rootAddress: string, |
|
publicationType: string, |
|
indexEvent: NDKEvent |
|
}>(); |
|
|
|
const publicationTree = getContext('publicationTree') as PublicationTree; |
|
|
|
// #region Loading |
|
|
|
// TODO: Test load handling. |
|
|
|
let leaves = $state<NDKEvent[]>([]); |
|
let isLoading = $state<boolean>(false); |
|
let lastElementRef = $state<HTMLElement | null>(null); |
|
|
|
let observer: IntersectionObserver; |
|
|
|
async function loadMore(count: number) { |
|
isLoading = true; |
|
|
|
for (let i = 0; i < count; i++) { |
|
const nextItem = await publicationTree.next(); |
|
if (leaves.includes(nextItem.value) || nextItem.done) { |
|
isLoading = false; |
|
return; |
|
} |
|
leaves.push(nextItem.value); |
|
} |
|
|
|
isLoading = false; |
|
} |
|
|
|
function setLastElementRef(el: HTMLElement, i: number) { |
|
if (i === leaves.length - 1) { |
|
lastElementRef = el; |
|
} |
|
} |
|
|
|
$effect(() => { |
|
if (!lastElementRef) { |
|
return; |
|
} |
|
|
|
observer.observe(lastElementRef!); |
|
return () => observer.unobserve(lastElementRef!); |
|
}); |
|
|
|
// #endregion |
|
|
|
// region Columns visibility |
|
let currentBlog: null|string = $state(null); |
|
let currentBlogEvent: null|NDKEvent = $state(null); |
|
|
|
function isInnerActive() { |
|
return currentBlog !== null && $publicationColumnVisibility.inner; |
|
} |
|
|
|
function closeDiscussion() { |
|
publicationColumnVisibility.update(v => ({ ...v, discussion: false})); |
|
} |
|
|
|
function loadBlog(rootId: string) { |
|
// depending on the size of the screen, also toggle blog list & discussion visibility |
|
publicationColumnVisibility.update(current => { |
|
const updated = current; |
|
if (window.innerWidth < 1024) { |
|
updated.blog = false; |
|
updated.discussion = false; |
|
} |
|
updated.inner = true; |
|
return updated; |
|
}); |
|
|
|
currentBlog = rootId; |
|
// set current blog values for publication render |
|
currentBlogEvent = leaves.find(i => i.tagAddress() === currentBlog) ?? null; |
|
} |
|
|
|
function showBlogHeader() { |
|
return (currentBlog && currentBlogEvent && window.innerWidth < 1140); |
|
} |
|
|
|
onDestroy(() => { |
|
// reset visibility |
|
publicationColumnVisibility.reset(); |
|
}) |
|
|
|
onMount(() => { |
|
// Set current columns depending on the publication type |
|
const isBlog = publicationType === 'blog'; |
|
publicationColumnVisibility.update(v => ({ ...v, main: !isBlog, blog: isBlog })); |
|
|
|
// Set up the intersection observer. |
|
observer = new IntersectionObserver((entries) => { |
|
entries.forEach((entry) => { |
|
if (entry.isIntersecting && !isLoading) { |
|
loadMore(4); |
|
} |
|
}); |
|
}, { threshold: 0.5 }); |
|
loadMore(8); |
|
|
|
return () => { |
|
observer.disconnect(); |
|
}; |
|
}); |
|
|
|
</script> |
|
|
|
<!-- Table of contents --> |
|
{#if publicationType !== 'blog'} |
|
<TocToggle rootId={rootAddress} /> |
|
{/if} |
|
|
|
<!-- Default publications --> |
|
{#if $publicationColumnVisibility.main} |
|
<div class="flex flex-col p-4 space-y-4 overflow-auto max-w-2xl flex-grow-2"> |
|
<div class="card-leather bg-highlight dark:bg-primary-800 p-4 mb-4 rounded-lg border"> |
|
<Details event={indexEvent} /> |
|
</div> |
|
<!-- Publication --> |
|
{#each leaves as leaf, i} |
|
<PublicationSection |
|
rootAddress={rootAddress} |
|
leaves={leaves} |
|
address={leaf.tagAddress()} |
|
ref={(el) => setLastElementRef(el, i)} |
|
/> |
|
{/each} |
|
</div> |
|
{/if} |
|
|
|
<!-- Blog list --> |
|
{#if $publicationColumnVisibility.blog} |
|
<div class="flex flex-col p-4 space-y-4 overflow-auto max-w-xl flex-grow-1 |
|
{isInnerActive() ? 'discreet' : ''} |
|
"> |
|
<div class="card-leather bg-highlight dark:bg-primary-800 p-4 mb-4 rounded-lg border"> |
|
<Details event={indexEvent} /> |
|
</div> |
|
<!-- List blog excerpts --> |
|
{#each leaves as leaf, i} |
|
<BlogHeader |
|
rootId={leaf.tagAddress()} |
|
event={leaf} |
|
onBlogUpdate={loadBlog} |
|
active={!(isInnerActive())} |
|
/> |
|
{/each} |
|
</div> |
|
{/if} |
|
|
|
{#if isInnerActive() } |
|
{#key currentBlog } |
|
<div class="flex flex-col p-4 max-w-3xl overflow-auto flex-grow-2 max-h-[calc(100vh-146px)] sticky top-[146px]"> |
|
{#each leaves as leaf, i} |
|
{#if leaf.tagAddress() === currentBlog} |
|
<div class="card-leather bg-highlight dark:bg-primary-800 p-4 mb-4 rounded-lg border"> |
|
<Details event={leaf} /> |
|
</div> |
|
|
|
<PublicationSection |
|
rootAddress={rootAddress} |
|
leaves={leaves} |
|
address={leaf.tagAddress()} |
|
ref={(el) => setLastElementRef(el, i)} |
|
/> |
|
|
|
<Card class="ArticleBox card-leather min-w-full grid mt-4"> |
|
<Interactions rootId={currentBlog} /> |
|
</Card> |
|
{/if} |
|
{/each} |
|
</div> |
|
{/key} |
|
{/if} |
|
|
|
{#if $publicationColumnVisibility.discussion } |
|
<Sidebar class='sidebar-leather right-0 md:!pl-8'> |
|
<SidebarWrapper> |
|
<SidebarGroup class='sidebar-group-leather'> |
|
<div class="flex justify-between items-baseline"> |
|
<Heading tag="h1" class="h-leather !text-lg">Discussion</Heading> |
|
<Button class="btn-leather hidden sm:flex z-30 !p-1 bg-primary-50 dark:bg-primary-900" outline onclick={closeDiscussion}> |
|
<CloseOutline /> |
|
</Button> |
|
</div> |
|
<div class="flex flex-col space-y-4"> |
|
<!-- TODO |
|
alternative for other publications and |
|
when blog is not opened, but discussion is opened from the list |
|
--> |
|
{#if showBlogHeader()} |
|
<BlogHeader |
|
rootId={currentBlog} |
|
event={currentBlogEvent} |
|
onBlogUpdate={loadBlog} |
|
active={true} |
|
/> |
|
{/if} |
|
<div class="flex flex-col w-full space-y-4"> |
|
<Card class="ArticleBox card-leather w-full grid max-w-xl"> |
|
<div class="flex flex-col my-2"> |
|
<span>Unknown</span> |
|
<span class='text-gray-500'>1.1.1970</span> |
|
</div> |
|
<div class='flex flex-col flex-grow space-y-4'> |
|
This is a very intelligent comment placeholder that applies to all the content equally well. |
|
</div> |
|
</Card> |
|
</div> |
|
</div> |
|
</SidebarGroup> |
|
</SidebarWrapper> |
|
</Sidebar> |
|
{/if}
|
|
|