site-libsoc/Server/app/svelte/src/manifesto-component.svelte

278 lines
8.5 KiB
Svelte
Raw Normal View History

2023-06-24 04:39:41 +07:00
<svelte:options tag="manifesto-component" />
<script>
// Import statements
import { onMount } from 'svelte'
2023-06-24 20:44:16 +07:00
import { getData } from "/js/libraries/serverTools.js"
2023-06-24 04:39:41 +07:00
// Import components
// Main code
2023-06-24 20:44:16 +07:00
let manifesto = []
let key
2023-06-25 21:34:27 +07:00
let contentButton
let contentArrow
let contentBlock
let buttons = []
let headingsObjects = {}
let contentHeadings = []
let contentTable
2023-06-24 04:39:41 +07:00
2023-06-24 20:44:16 +07:00
const htmlDelims = ["ul","ol"]
getData("/assets/manifesto.txt",function(response) {
let splitText = response.split(/\r?\n/)
2023-06-25 21:34:27 +07:00
let currentChapter
let cnt = 0
2023-06-24 20:44:16 +07:00
for (let j=0;j<splitText.length;j++) {
let line = splitText[j]
let delimInd = htmlDelims.map((x) => line.includes("<"+x+">")).findIndex((x) => x)
if (delimInd!=-1) {
let delim = htmlDelims[delimInd]
let obj = {}
obj[delim] = []
let delimEndTag = "</"+delim+">"
while (true) {
j += 1
line = splitText[j]
if (line.includes(delimEndTag)) {
manifesto.push(obj)
break
}
else {
obj[delim].push(line)
}
}
}
else {
2023-06-25 21:34:27 +07:00
if (line.slice(0,3)=="###") {
let heading = line.slice(4,line.length)
let id = heading.toLowerCase().trim().replaceAll(" ","-")
currentChapter.push({
id: id,
name: heading,
index: cnt
})
cnt += 1
manifesto.push({type: "h3", id: id, line: heading, index: cnt})
}
else if (line.slice(0,2)=="##") {
let heading = line.slice(3,line.length)
let id = heading.toLowerCase().trim().replaceAll(" ","-")
contentHeadings.push({
id: heading.toLowerCase().trim().replaceAll(" ","-"),
name: heading,
index: cnt
})
cnt += 1
currentChapter = []
contentHeadings.push(currentChapter)
manifesto.push({type: "h2", id: id, line: heading, index: cnt})
}
else {
manifesto.push(line)
}
2023-06-24 20:44:16 +07:00
}
}
key += 1
})
2023-06-24 04:39:41 +07:00
2023-06-25 21:34:27 +07:00
function hideBlock(arrow,block) {
if (block.style.display=="none" || block.style.display=="") {
block.style.display = "initial"
arrow.style.transform = "scaleY(-1)"
localStorage.setItem("manifesto-hide-content", "false");
}
else {
block.style.display = "none"
arrow.style.transform = ""
localStorage.setItem("manifesto-hide-content", "true");
}
}
function goToChapter(id) {
headingsObjects[id].scrollIntoView({block: 'start'}, true);
}
2023-06-24 04:39:41 +07:00
2023-06-25 21:34:27 +07:00
onMount(() => {
let hideBool = localStorage.getItem("manifesto-hide-content")
if (hideBool!=undefined && hideBool!=null) {
if (hideBool=="true") {
hideBlock(contentArrow,contentBlock)
}
}
2023-06-24 04:39:41 +07:00
})
</script>
2023-06-24 20:44:16 +07:00
<div id="container">
<div id="text-container">
{#key key}
2023-06-25 21:34:27 +07:00
<div bind:this={contentTable} id="table-content">
<button id="toggle-content" bind:this={contentButton} on:click={() => hideBlock(contentArrow,contentBlock)}>
TABLE OF CONTENTS
<img bind:this={contentArrow} src="../assets/arrow_down.svg" alt="arrow down" style="transform: scaleY(-1)">
</button>
<div bind:this={contentBlock} class="module" style="display: initial;">
{#each contentHeadings as obj}
{#if Array.isArray(obj)}
{#each obj as obj2}
<div class="heading-button-wrapper">
<button bind:this={buttons[obj2.index]} on:click={() => goToChapter(obj2.id)} class="level1 heading-button">
{obj2.name}
</button>
</div>
{/each}
{:else}
<div class="heading-button-wrapper">
<button bind:this={buttons[obj.index]} on:click={() => goToChapter(obj.id)} class="level0 heading-button">
{obj.name}
</button>
</div>
{/if}
{/each}
</div>
</div>
2023-06-24 20:44:16 +07:00
{#each manifesto as line}
{#if line!==""}
{#if typeof (line === 'object') && (Object.keys(line)[0]=="ul")}
<ul>
{#each line.ul as line2}
<li>{line2}</li>
{/each}
</ul>
{:else if typeof (line === 'object') && (Object.keys(line)[0]=="ol")}
<ol>
{#each line.ol as line2}
<li>
{@html line2}
</li>
{/each}
</ol>
2023-06-25 21:34:27 +07:00
{:else if typeof (line === 'object') && (line.type=="h3")}
<button on:click ={contentTable.scrollIntoView({block: 'start'}, true)} style="display: block;">
<h3 bind:this={headingsObjects[line.id]} id={line.id}>{@html line.line}</h3>
</button>
{:else if typeof (line === 'object') && (line.type=="h2")}
<button on:click ={contentTable.scrollIntoView({block: 'start'}, true)} style="display: block; width: 100%;">
<h2 bind:this={headingsObjects[line.id]} id={line.id}>{@html line.line}</h2>
</button>
2023-06-24 20:44:16 +07:00
{:else if line[0]=="#"}
<h1>{@html line.slice(2,line.length)}</h1>
{:else}
<p class="margin-end">
{@html line}
</p>
{/if}
{/if}
{/each}
{/key}
</div>
</div>
2023-06-24 04:39:41 +07:00
<style>
@import '/css/common.css';
2023-06-25 21:34:27 +07:00
#table-content {
border: #a9a9a9 0.1rem solid;
border-radius: 1rem;
padding: 2rem;
padding-bottom: 1.5rem;
margin-bottom: 2rem;
}
#toggle-content {
position: relative;
width: 100%;
font-size: 1.3rem;
font-family: var(--sans-serif,sans-serif);
text-align: left;
margin-bottom: 1rem;
font-weight: bold;
}
#toggle-content img {
position: absolute;
top: 0rem;
right: 0rem;
width: 1.5rem;
}
.module {
display: flex;
flex-direction: column;
width: 100%;
}
.heading-button-wrapper {
position: relative;
}
.heading-button {
color: black;
height: auto;
width: 100%;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
text-align: left;
font-family: var(--sans-serif,sans-serif);
font-size: 1.3rem;
}
.level0 {
position: relative;
padding-left: 0.5rem;
z-index: 1;
}
.level1 {
position: relative;
padding-left: 1.5rem;
z-index: 1;
}
.heading-button:hover {
background-color: hsla(344, 73%, 57%, 0.12);
}
.heading-button:active {
background-color: hsla(344, 73%, 57%, 0.5);
}
2023-06-24 20:44:16 +07:00
h1 {
margin-bottom: 1rem;
font-size: 2.5rem;
text-align: center;
}
h2 {
margin-bottom: 1rem;
text-align: center;
}
h3 {
margin-bottom: 1rem;
}
#text-container {
max-width: calc(100vw - 4rem);
margin: auto;
}
#container {
margin: auto;
max-width: 1200px;
margin-top: 1rem;
margin-bottom: 4rem;
}
#container>div>p {
margin-bottom: 1rem;
}
#container p {
font-size: 1.2rem;
text-align: justify;
}
2023-06-24 04:39:41 +07:00
</style>