tree-shake yaml, marked, and hljs from bundle

This commit is contained in:
lightling 2024-08-26 17:47:36 -04:00
parent 41a1098d2c
commit 4b83deb21a
Signed by: lightling
GPG key ID: F1F29650D537C773
3 changed files with 32 additions and 16 deletions

View file

@ -1,7 +1,8 @@
import { ViteSSG } from 'vite-ssg' import { ViteSSG } from 'vite-ssg'
import { createPinia } from 'pinia' import { createPinia } from 'pinia'
import hljs from 'highlight.js' const hljs = import('highlight.js')
import { marked } from 'marked' import type { HLJSApi } from 'highlight.js'
const marked = import('marked')
import { markedHighlight } from 'marked-highlight' import { markedHighlight } from 'marked-highlight'
import type { RoutedWindow, SiteGlobals } from '@goldenwere/mackenzii-types' import type { RoutedWindow, SiteGlobals } from '@goldenwere/mackenzii-types'
@ -16,16 +17,6 @@ import globals from 'content/config.json'
declare const window: RoutedWindow declare const window: RoutedWindow
marked
.use(headingSectionsExtension() as any)
.use(markedHighlight({
langPrefix: 'hljs language-',
highlight(code, lang) {
const language = hljs.getLanguage(lang) ? lang : 'plaintext'
return hljs.highlight(code, { language }).value
},
}))
export const createApp = ViteSSG( export const createApp = ViteSSG(
// the root component // the root component
main, main,
@ -33,12 +24,25 @@ export const createApp = ViteSSG(
{ routes: createRoutes(globals as SiteGlobals) }, { routes: createRoutes(globals as SiteGlobals) },
// function to have custom setups // function to have custom setups
async ({ app, router, routes, isClient, initialState }) => { async ({ app, router, routes, isClient, initialState }) => {
const hljsResolved: HLJSApi = await hljs as any
const markedResolved = await marked
markedResolved
.use(headingSectionsExtension() as any)
.use(markedHighlight({
langPrefix: 'hljs language-',
highlight(code, lang) {
const language = hljsResolved.getLanguage(lang) ? lang : 'plaintext'
return hljsResolved.highlight(code, { language }).value
},
}))
if (isClient) { if (isClient) {
import('@goldenwere/mackenzii-embeds').then(({ registerLinkEmbed }) => { import('@goldenwere/mackenzii-embeds').then(({ registerLinkEmbed }) => {
registerLinkEmbed() registerLinkEmbed()
}) })
window.router = router window.router = router
} }
app.use(createPinia()) app.use(createPinia())
initializeRouteStore(routes, globals as SiteGlobals) initializeRouteStore(routes, globals as SiteGlobals)
}, },

View file

@ -1,11 +1,12 @@
import DOMPurify from 'dompurify' import DOMPurify from 'dompurify'
import { marked } from 'marked' const yaml = import('js-yaml')
import yaml from 'js-yaml'
import type { import type {
ListWithEntries, ListWithEntries,
ResolvedListEntries, ResolvedListEntries,
} from '@goldenwere/mackenzii-types' } from '@goldenwere/mackenzii-types'
import { useRouteStore } from 'src/routes' import { useRouteStore } from 'src/routes'
import { parseMarkdown } from './parse'
/** /**
* Config used for DOMPurify. * Config used for DOMPurify.
@ -115,7 +116,7 @@ export const fetchAndReturnText = async (path: string) => {
*/ */
export const fetchAndParseYaml = async <T>(path: string) => { export const fetchAndParseYaml = async <T>(path: string) => {
const text = await fetchAndReturnText(path) const text = await fetchAndReturnText(path)
return yaml.load(text) as T // do not catch exceptions return (await yaml).load(text) as T // do not catch exceptions
} }
/** /**
@ -167,7 +168,7 @@ export const fetchAndParseMarkdown = async (path: string) => {
return existing return existing
} else { } else {
const document = await fetchAndReturnText(path) const document = await fetchAndReturnText(path)
const parsed = marked.parse(document) const parsed = parseMarkdown(document)
store.cacheFile(path, parsed) store.cacheFile(path, parsed)
return parsed return parsed
} }

View file

@ -1,3 +1,5 @@
const marked = import('marked')
import type { DateRange } from '@goldenwere/mackenzii-types' import type { DateRange } from '@goldenwere/mackenzii-types'
/** /**
@ -19,3 +21,12 @@ export const getFormattedDate = (date: DateRange | string | number): string => {
return new Date(num).toLocaleDateString() return new Date(num).toLocaleDateString()
} }
} }
/**
* Parses the given markdown to HTML
* @param md the markdown string to parse
* @returns the parsed HTML string
*/
export const parseMarkdown = async (md: string) => {
return (await marked).parse(md)
}