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.
272 lines
6.7 KiB
272 lines
6.7 KiB
<script>
|
|
import { link } from 'svelte-spa-router';
|
|
import { onMount } from 'svelte';
|
|
import Layout from '$/client/Layout.svelte';
|
|
import Icon from '$/client/components/Icon.svelte';
|
|
import Code from "$/client/components/Code.svelte";
|
|
import api from "$/client/api.js";
|
|
|
|
let index = {};
|
|
let docs_data;
|
|
let url;
|
|
export let params;
|
|
|
|
const caps_to_icon = {
|
|
"BUG": "bug",
|
|
"TODO": "clipboard-check",
|
|
"WARNING": "alert-triangle",
|
|
"FOOTGUN": "bomb",
|
|
"DEPRECATED": "axe"
|
|
}
|
|
|
|
const jump = (id) => {
|
|
let node = document.getElementById(id);
|
|
if(node) node.scrollIntoView();
|
|
}
|
|
|
|
const jump_top = () => {
|
|
jump("top-scroll");
|
|
}
|
|
|
|
const load_docs = async (to_load) => {
|
|
const [status, data] = await api.get(`/docs/api/${to_load}.json`);
|
|
|
|
docs_data = status === 200 ? data : {};
|
|
url = to_load;
|
|
jump_top();
|
|
}
|
|
|
|
const load_index = async () => {
|
|
const [status, data] = await api.get("/docs/api/index.json");
|
|
|
|
index = status === 200 ? data : {};
|
|
}
|
|
|
|
const type_to_syntax = {
|
|
"callexpression": "()",
|
|
"objectexpression": "{}",
|
|
"function": "()",
|
|
"class": "{}",
|
|
"method": "()"
|
|
}
|
|
|
|
onMount(async () => {
|
|
await load_index();
|
|
});
|
|
|
|
$: console.log("params", params);
|
|
|
|
$: if(params.wild && params.wild !== url) {
|
|
load_docs(params.wild);
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
sidebar {
|
|
max-width: 300px;
|
|
min-height: 100vh;
|
|
height: 100vh;
|
|
max-height: 100vh;
|
|
margin: unset;
|
|
}
|
|
|
|
sidebar items {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
height: 100vh;
|
|
max-height: 100vh;
|
|
overflow-y: auto;
|
|
|
|
width: calc(100vw - 300px);
|
|
min-width: calc(100vw - 300px);
|
|
max-width: calc(100vw - 300px);
|
|
}
|
|
|
|
export {
|
|
border-top: 1px solid var(--value5);
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
export.member {
|
|
padding-left: 1.5rem;
|
|
}
|
|
|
|
export.class-def {
|
|
background-color: var(--value7);
|
|
}
|
|
|
|
export > heading {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
margin-bottom: 1rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
export > heading h4,
|
|
export > heading h2,
|
|
export > heading h1
|
|
{
|
|
margin-top: 0.5rem;
|
|
font-family: var(--font-family);
|
|
font-weight: 900;
|
|
}
|
|
|
|
export > heading meta-data {
|
|
display: grid;
|
|
gap: 0.5rem;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
grid-template-rows: auto;
|
|
}
|
|
|
|
export > info {
|
|
display: block;
|
|
padding-top: 0.5rem;
|
|
}
|
|
|
|
export > info commment {
|
|
display: block;
|
|
}
|
|
|
|
/* FOOTGUN: https://github.com/sveltejs/svelte/issues/2967
|
|
When you @html in Svelte it can't apply any styles from here.
|
|
You have to scope the a tag style inside module-header, BUT,
|
|
set it to global so Svelte will apply it to the whole doc,
|
|
not its special class.
|
|
*/
|
|
module-header :global(a) {
|
|
color: var(--color-text-inverted);
|
|
}
|
|
|
|
module-header {
|
|
display: block;
|
|
padding: 0.5rem;
|
|
background-color: var(--color-bg-inverted);
|
|
color: var(--color-text-inverted);
|
|
}
|
|
|
|
toc {
|
|
display: grid;
|
|
grid-template-columns: repeat(5, 1fr);
|
|
}
|
|
|
|
toc span {
|
|
border: 1px solid black;
|
|
padding: 0.5rem;
|
|
text-align: center;
|
|
background-color: var(--value3);
|
|
}
|
|
|
|
.no-doc {
|
|
background-color: var(--color-error);
|
|
}
|
|
</style>
|
|
|
|
|
|
<Layout footer={ false} header={ false } centered={ true } fullscreen={ true }>
|
|
<sidebar>
|
|
<top><h4><a href="/" use:link><Icon name="chevrons-up" /> Docs</a></h4></top>
|
|
<items>
|
|
{#each Object.keys(index) as item}
|
|
<a class:active={ item === url } href="/docs/{item}" use:link>{item}</a>
|
|
{/each}
|
|
</items>
|
|
</sidebar>
|
|
|
|
<right>
|
|
<scroll-sucks id="top-scroll"></scroll-sucks>
|
|
{#if docs_data}
|
|
<module-header>
|
|
<h1>{ url }</h1>
|
|
{#if docs_data.comment}
|
|
{@html docs_data.comment}
|
|
{/if}
|
|
|
|
<toc>
|
|
{#each docs_data.exports as exp}
|
|
<span class:no-doc={ !exp.comment } on:click={ () => jump(exp.slug) }>{ exp.name }
|
|
{#each exp.caps as cap_word}<Icon name={ caps_to_icon[cap_word] } size="24" light={ true }/>{/each}
|
|
</span>
|
|
|
|
{#if exp.isa == "class"}
|
|
{#each exp.methods as member}
|
|
<span class:no-doc={ !member.comment } on:click={ () => jump(member.slug) }>.{ member.name }
|
|
{#each member.caps as cap_word}<Icon name={ caps_to_icon[cap_word] } size="24" light={ true } />{/each}
|
|
</span>
|
|
{/each}
|
|
{/if}
|
|
|
|
{/each}
|
|
</toc>
|
|
</module-header>
|
|
|
|
{#each docs_data.exports as exp}
|
|
{#if exp.isa === "class"}
|
|
<export class="class-def">
|
|
<heading>
|
|
<h2 on:click={ () => jump_top() } id={ exp.slug }>class { exp.name }</h2>
|
|
<Code content={ exp.code } language="javascript" />
|
|
</heading>
|
|
<comment>
|
|
{#if exp.comment}
|
|
{@html exp.comment}
|
|
{/if}
|
|
</comment>
|
|
</export>
|
|
|
|
{#each exp.methods as member}
|
|
<export class="member">
|
|
<heading>
|
|
<h4 id={ member.slug } on:click={ () => jump(exp.slug) }>.{member.name}{ type_to_syntax[member.isa] || "" }
|
|
</h4>
|
|
<meta-data>
|
|
{docs_data.source}:{ member.line_start }
|
|
<em>{ member.isa } of { exp.name }</em>
|
|
{#if member.static}<b>static</b>{/if}
|
|
{#if member.async}<b>async</b>{/if}
|
|
{#if member.generator}<b>generator</b>{/if}
|
|
</meta-data>
|
|
</heading>
|
|
<info>
|
|
{#if member.comment}
|
|
<comment>
|
|
{ @html member.comment }
|
|
</comment>
|
|
{/if}
|
|
<Code content={ member.code } language="javascript" />
|
|
</info>
|
|
</export>
|
|
{/each}
|
|
{:else}
|
|
<export>
|
|
<heading>
|
|
<h4 on:click={ () => jump_top() }
|
|
id={ exp.slug }>{exp.name}{ type_to_syntax[exp.isa] || "" }
|
|
</h4>
|
|
<meta-data>
|
|
{docs_data.source}:{ exp.line_start }
|
|
<em>{ exp.isa }</em>
|
|
{#if exp.static}<b>static</b>{/if}
|
|
{#if exp.async}<b>async</b>{/if}
|
|
{#if exp.generator}<b>generator</b>{/if}
|
|
</meta-data>
|
|
</heading>
|
|
<info>
|
|
{#if exp.comment}
|
|
<comment>
|
|
{@html exp.comment}
|
|
</comment>
|
|
{/if}
|
|
<Code content={ exp.code } language="javascript" />
|
|
</info>
|
|
</export>
|
|
{/if}
|
|
{/each}
|
|
{/if}
|
|
</right>
|
|
</Layout>
|
|
|