reduce fetch calls with route-store cache

This commit is contained in:
lightling 2024-06-29 13:43:22 -04:00
parent 42936273bf
commit 51e720fc29
2 changed files with 39 additions and 5 deletions

View file

@ -64,9 +64,26 @@ export const useRouteStore = defineStore('routeStore', {
_globals: {} as SiteGlobals, _globals: {} as SiteGlobals,
_routesAlreadyWarned: {} as Record<string, boolean>, _routesAlreadyWarned: {} as Record<string, boolean>,
_breadcrumbs: [] as Link[] _breadcrumbs: [] as Link[],
_cachedFiles: {} as { [path: string]: any },
}), }),
actions: { actions: {
/**
* Adds a file to the cache
* @param path the path to the file to cache
* @param result the parsed file to cache
*/
cacheFile<T>(path: string, result: T) {
this._cachedFiles[path] = result
},
/**
* Retrieves a file from the cache if it is defined
* @param path the path to the file to retrieve
* @returns the parsed and cached file or undefined
*/
getFile<T>(path: string) {
return this._cachedFiles[path] as T | undefined
},
/** /**
* Determines whether a route has showed a warning or not * Determines whether a route has showed a warning or not
* @param route the route to check * @param route the route to check

View file

@ -7,6 +7,7 @@ import type {
ListWithEntries, ListWithEntries,
ListWithNestedEntries, ListWithNestedEntries,
} from '@goldenwere/mackenzii-types' } from '@goldenwere/mackenzii-types'
import { useRouteStore } from 'src/routes'
/** /**
* Config used for DOMPurify. * Config used for DOMPurify.
@ -115,8 +116,16 @@ export const fetchAndReturnText = async (path: string) => {
* @returns the content of the YAML file after sanitizing then parsing * @returns the content of the YAML file after sanitizing then parsing
*/ */
export const fetchAndParseYaml = async <T>(path: string) => { export const fetchAndParseYaml = async <T>(path: string) => {
const text = await fetchAndReturnText(path) const store = useRouteStore()
return yaml.load(text) as T const existing = store.getFile<T>(path)
if (!!existing) {
return existing
} else {
const text = await fetchAndReturnText(path)
const obj = yaml.load(text) as T
store.cacheFile(path, obj)
return obj
}
} }
/** /**
@ -125,8 +134,16 @@ export const fetchAndParseYaml = async <T>(path: string) => {
* @returns the content parsed from the markdown document * @returns the content parsed from the markdown document
*/ */
export const fetchAndParseMarkdown = async (path: string) => { export const fetchAndParseMarkdown = async (path: string) => {
const document = await fetchAndReturnText(path) const store = useRouteStore()
return marked.parse(document) const existing = store.getFile<string>(path)
if (!!existing) {
return existing
} else {
const document = await fetchAndReturnText(path)
const parsed = marked.parse(document)
store.cacheFile(path, parsed)
return parsed
}
} }
/** /**