From 51e720fc2986418cbcface5eff8fa3f51321facd Mon Sep 17 00:00:00 2001 From: Lightling Date: Sat, 29 Jun 2024 13:43:22 -0400 Subject: [PATCH] reduce fetch calls with route-store cache --- projects/frontend/src/routes.ts | 19 +++++++++++++++++- projects/frontend/src/utilities/fetch.ts | 25 ++++++++++++++++++++---- 2 files changed, 39 insertions(+), 5 deletions(-) diff --git a/projects/frontend/src/routes.ts b/projects/frontend/src/routes.ts index a227bc4..f80a396 100644 --- a/projects/frontend/src/routes.ts +++ b/projects/frontend/src/routes.ts @@ -64,9 +64,26 @@ export const useRouteStore = defineStore('routeStore', { _globals: {} as SiteGlobals, _routesAlreadyWarned: {} as Record, - _breadcrumbs: [] as Link[] + _breadcrumbs: [] as Link[], + _cachedFiles: {} as { [path: string]: any }, }), actions: { + /** + * Adds a file to the cache + * @param path the path to the file to cache + * @param result the parsed file to cache + */ + cacheFile(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(path: string) { + return this._cachedFiles[path] as T | undefined + }, /** * Determines whether a route has showed a warning or not * @param route the route to check diff --git a/projects/frontend/src/utilities/fetch.ts b/projects/frontend/src/utilities/fetch.ts index dced840..a0d8043 100644 --- a/projects/frontend/src/utilities/fetch.ts +++ b/projects/frontend/src/utilities/fetch.ts @@ -7,6 +7,7 @@ import type { ListWithEntries, ListWithNestedEntries, } from '@goldenwere/mackenzii-types' +import { useRouteStore } from 'src/routes' /** * 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 */ export const fetchAndParseYaml = async (path: string) => { - const text = await fetchAndReturnText(path) - return yaml.load(text) as T + const store = useRouteStore() + const existing = store.getFile(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 (path: string) => { * @returns the content parsed from the markdown document */ export const fetchAndParseMarkdown = async (path: string) => { - const document = await fetchAndReturnText(path) - return marked.parse(document) + const store = useRouteStore() + const existing = store.getFile(path) + if (!!existing) { + return existing + } else { + const document = await fetchAndReturnText(path) + const parsed = marked.parse(document) + store.cacheFile(path, parsed) + return parsed + } } /**