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.
107 lines
2.9 KiB
107 lines
2.9 KiB
<script lang="ts"> |
|
import { parser } from "$lib/parser"; |
|
import { Button, Heading, P, Textarea, Tooltip } from "flowbite-svelte"; |
|
import { CaretDownSolid, CaretUpSolid, EditOutline } from "flowbite-svelte-icons"; |
|
import { createEventDispatcher } from "svelte"; |
|
|
|
export let sectionClass: string = ''; |
|
export let isSectionStart: boolean = false; |
|
export let rootId: string; |
|
export let depth: number = 0; |
|
export let allowEditing: boolean = false; |
|
|
|
const dispatch = createEventDispatcher(); |
|
|
|
let isEditing: boolean = false; |
|
let hasCursor: boolean = false; |
|
let currentContent: string; |
|
|
|
const title = $parser.getIndexTitle(rootId); |
|
const orderedChildren = $parser.getOrderedChildIds(rootId); |
|
|
|
const getHeadingTag = (depth: number) => { |
|
switch (depth) { |
|
case 0: |
|
return "h2"; |
|
case 1: |
|
return "h3"; |
|
case 2: |
|
return "h4"; |
|
case 3: |
|
return "h5"; |
|
case 4: |
|
return "h6"; |
|
} |
|
}; |
|
|
|
const handleMouseEnter = (e: MouseEvent) => { |
|
hasCursor = true; |
|
dispatch('cursorcapture', e); |
|
console.debug(`${rootId} has cursor.`); |
|
}; |
|
|
|
const handleMouseLeave = (_: MouseEvent) => { |
|
hasCursor = false; |
|
console.debug(`${rootId} lost cursor.`); |
|
}; |
|
|
|
// TODO: Trigger rerender when editing state changes. |
|
const toggleEditing = (id: string, shouldSave: boolean = true) => { |
|
const editing = isEditing; |
|
currentContent = $parser.getContent(id); |
|
|
|
if (editing && shouldSave) { |
|
// TODO: Save updated content. |
|
} |
|
|
|
isEditing = !editing; |
|
}; |
|
</script> |
|
|
|
<!-- This component is recursively structured. The base case is single block of content. --> |
|
<!-- svelte-ignore a11y-no-static-element-interactions --> |
|
<section |
|
id={rootId} |
|
class={`note-leather w-full flex space-x-2 ${sectionClass}`} |
|
on:mouseenter={handleMouseEnter} |
|
on:mouseleave={handleMouseLeave} |
|
> |
|
<!-- Zettel base case --> |
|
{#if orderedChildren.length === 0 || depth >= 4} |
|
<P firstupper={isSectionStart}> |
|
{@html $parser.getContent(rootId)} |
|
</P> |
|
{:else} |
|
<div class='flex flex-col space-y-2'> |
|
<Heading tag={getHeadingTag(depth)} class='h-leather'> |
|
{title} |
|
</Heading> |
|
<!-- Recurse on child indices and zettels --> |
|
{#each orderedChildren as id, index} |
|
<svelte:self |
|
rootId={id} |
|
depth={depth + 1} |
|
{allowEditing} |
|
isSectionStart={index === 0} |
|
on:cursorcapture={handleMouseLeave} |
|
/> |
|
{/each} |
|
</div> |
|
{/if} |
|
{#if allowEditing} |
|
<div class={`flex flex-col space-y-2 justify-start ${hasCursor ? 'visible' : 'invisible'}`}> |
|
<Button class='btn-leather' size='sm' outline> |
|
<CaretUpSolid /> |
|
</Button> |
|
<Button class='btn-leather' size='sm' outline> |
|
<CaretDownSolid /> |
|
</Button> |
|
<Button class='btn-leather' size='sm' outline> |
|
<EditOutline /> |
|
</Button> |
|
<Tooltip class='tooltip-leather' type='auto' placement='top'> |
|
Edit |
|
</Tooltip> |
|
</div> |
|
{/if} |
|
</section>
|
|
|