You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
k0r.386/.vitepress/theme/Layout.vue

91 lines
2.4 KiB
Vue

<script setup lang="ts">
import { ref, reactive, computed, onMounted, watch } from 'vue'
import { useData } from 'vitepress'
import useTerminal from './useTerminal'
import titleArt from './titles'
import { data as pages } from './pages.data'
const { site, page } = useData()
const enhancedReadability = ref(false) // TODO!
const commands = computed(() => site.value.themeConfig.commands)
const prompt = '\n$> '
const textArea = ref<HTMLTextAreaElement | null>(null)
const footer = ref([])
function getTitleArt(key: string) {
const art = titleArt[key] ?? titleArt['not_found']
return art.join('\n')
}
function parsedContent(src: string) {
const pieces = src.split('---').map(s => s.trim())
const [_frontmatter, ...content] = pieces.filter(x => x.length)
return content.join('\n\n')
}
function getCurrentPage(title: string) {
const page = pages.find(p => p.frontmatter.title === title)
console.log('getting page', title, page)
if (!page) {
console.error('current page not found')
return {
title: 'not_found',
titleArt: getTitleArt('not_found'),
content: 'The page could not be found.',
}
}
const titleArt = page.frontmatter.titleArt ?? getTitleArt(title)
const content = parsedContent(page.src)
return { title, titleArt, content }
}
onMounted(() => {
if (textArea.value === null) {
console.error('textarea is missing')
return
}
const { addText, addLine, clear, footerLinks } = useTerminal(textArea.value, commands.value, pages)
watch(page, () => {
const { title, titleArt, content } = getCurrentPage(page.value.title)
addText(`${titleArt}\n${title}\n\n${content}`)
}, { immediate: true })
watch(footerLinks, () => {
footer.value = footerLinks.value
}, { immediate: true })
})
</script>
<template>
<div id="screen" :class="{ 'enhanced-readability': enhancedReadability }">
<div id="wrap">
<div id="interlace" />
<div id="scanline" />
<div id="inner">
<textarea ref="textArea"
spellcheck="false"
autocorrect="false"
autocapitalize="false"
autocomplete="false"
autofocus
></textarea>
<footer>
<a v-for="({ uri, label}) in footer"
:href="uri"
target="_blank"
rel="noopener"
>
{{ label }}
</a>
</footer>
</div>
</div>
</div>
</template>