support configs defined in JSON
- since globals are in config.json, may as well support routes being in JSON
This commit is contained in:
parent
06c737f466
commit
41a1098d2c
4 changed files with 41 additions and 12 deletions
|
@ -114,15 +114,44 @@ 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)
|
||||||
|
return yaml.load(text) as T // do not catch exceptions
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetches, sanitizes, and parses JSON files
|
||||||
|
* @param path the path of the JSON file to load
|
||||||
|
* @returns the content of the JSON file after sanitizing then parsing
|
||||||
|
*/
|
||||||
|
export const fetchAndParseJson = async<T>(path: string) => {
|
||||||
|
const text = await fetchAndReturnText(path)
|
||||||
|
return JSON.parse(text) as T // do not catch exceptions
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetches, sanitizes, and parses a config file;
|
||||||
|
* valid config files are in YAML or JSON
|
||||||
|
* @param path the path of the config file to load
|
||||||
|
* @returns the content of the config file after sanitizing then parsing
|
||||||
|
*/
|
||||||
|
export const fetchAndParseConfig = async<T>(path: string) => {
|
||||||
const store = useRouteStore()
|
const store = useRouteStore()
|
||||||
const existing = store.getFile<T>(path)
|
const existing = store.getFile<T>(path)
|
||||||
if (!!existing) {
|
if (!!existing) {
|
||||||
return existing
|
return existing
|
||||||
} else {
|
} else {
|
||||||
const text = await fetchAndReturnText(path)
|
let parsed = {}
|
||||||
const obj = yaml.load(text) as T
|
if (path.endsWith('.yml') || path.endsWith('.yaml')) {
|
||||||
store.cacheFile(path, obj)
|
parsed = await fetchAndParseYaml(path)
|
||||||
return obj
|
} else if (path.endsWith('.json')) {
|
||||||
|
parsed = await fetchAndParseJson(path)
|
||||||
|
} else {
|
||||||
|
// stop execution
|
||||||
|
throw new Error(`Invalid config specified at ${path}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
store.cacheFile(path, parsed)
|
||||||
|
return parsed as T
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -159,7 +188,7 @@ export const fetchConfigsFromList = async <T>(list: ListWithEntries<T>): Promise
|
||||||
if (!!list.entries) {
|
if (!!list.entries) {
|
||||||
ids = ids.concat(Object.keys(list.entries))
|
ids = ids.concat(Object.keys(list.entries))
|
||||||
ids.forEach(id => {
|
ids.forEach(id => {
|
||||||
entries[id] = fetchAndParseYaml<T>((list.entries!)[id])
|
entries[id] = fetchAndParseConfig<T>((list.entries!)[id])
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
if (!!list.embeddedEntries) {
|
if (!!list.embeddedEntries) {
|
||||||
|
@ -187,7 +216,7 @@ export const fetchConfigByIdFromList = async <T>(list: ListWithEntries<T>, id: s
|
||||||
if (!!list.embeddedEntries && list.embeddedEntries[id]) {
|
if (!!list.embeddedEntries && list.embeddedEntries[id]) {
|
||||||
resolve(list.embeddedEntries[id])
|
resolve(list.embeddedEntries[id])
|
||||||
} else if (!!list.entries && list.entries[id]) {
|
} else if (!!list.entries && list.entries[id]) {
|
||||||
const config = await fetchAndParseYaml<T>(list.entries[id])
|
const config = await fetchAndParseConfig<T>(list.entries[id])
|
||||||
resolve(config)
|
resolve(config)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -7,7 +7,7 @@ import type {
|
||||||
RoutedWindow,
|
RoutedWindow,
|
||||||
} from '@goldenwere/mackenzii-types'
|
} from '@goldenwere/mackenzii-types'
|
||||||
|
|
||||||
import { fetchAndParseMarkdown, fetchAndParseYaml, fetchConfigByIdFromList } from 'src/utilities/fetch'
|
import { fetchAndParseMarkdown, fetchAndParseConfig, fetchConfigByIdFromList } from 'src/utilities/fetch'
|
||||||
import { getCurrentRoute } from 'src/utilities/vuetils'
|
import { getCurrentRoute } from 'src/utilities/vuetils'
|
||||||
import { useRouteStore } from 'src/routes'
|
import { useRouteStore } from 'src/routes'
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ const routeConfig = routeStore._routes[currentRoute.path.substring(0, currentRou
|
||||||
const routeSubConfig = routeStore._routes[currentRoute.path]
|
const routeSubConfig = routeStore._routes[currentRoute.path]
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
const config = await fetchAndParseYaml<ListWithEntries<ArticleEntry>>(routeConfig.config)
|
const config = await fetchAndParseConfig<ListWithEntries<ArticleEntry>>(routeConfig.config)
|
||||||
resolved.value = await fetchConfigByIdFromList(config, currentRoute.query.id as string)
|
resolved.value = await fetchConfigByIdFromList(config, currentRoute.query.id as string)
|
||||||
const md = await fetchAndParseMarkdown(resolved.value.url)
|
const md = await fetchAndParseMarkdown(resolved.value.url)
|
||||||
content.value = md
|
content.value = md
|
||||||
|
|
|
@ -10,7 +10,7 @@ import type {
|
||||||
RoutedWindow,
|
RoutedWindow,
|
||||||
} from '@goldenwere/mackenzii-types'
|
} from '@goldenwere/mackenzii-types'
|
||||||
|
|
||||||
import { fetchAndParseYaml, fetchConfigByIdFromList } from 'src/utilities/fetch'
|
import { fetchAndParseConfig, fetchConfigByIdFromList } from 'src/utilities/fetch'
|
||||||
import { getCurrentRoute } from 'src/utilities/vuetils'
|
import { getCurrentRoute } from 'src/utilities/vuetils'
|
||||||
import { useRouteStore } from 'src/routes'
|
import { useRouteStore } from 'src/routes'
|
||||||
|
|
||||||
|
@ -71,7 +71,7 @@ const onButtonClicked = (event: Event | null, direction: number, override?: numb
|
||||||
}
|
}
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
let config = await fetchAndParseYaml<ListWithEntries<GalleryEntry>>(routeConfig.config)
|
let config = await fetchAndParseConfig<ListWithEntries<GalleryEntry>>(routeConfig.config)
|
||||||
resolved.value = await fetchConfigByIdFromList(config, currentRoute.query.id as string)
|
resolved.value = await fetchConfigByIdFromList(config, currentRoute.query.id as string)
|
||||||
document.title = routeSubConfig.fullTitle?.replace('$ENTRY', resolved.value.title || currentRoute.query.id as string)
|
document.title = routeSubConfig.fullTitle?.replace('$ENTRY', resolved.value.title || currentRoute.query.id as string)
|
||||||
routeStore.setBreadcrumbs(currentRoute, resolved.value.title || currentRoute.query.id as string)
|
routeStore.setBreadcrumbs(currentRoute, resolved.value.title || currentRoute.query.id as string)
|
||||||
|
|
|
@ -7,7 +7,7 @@ import type {
|
||||||
MediaEntry,
|
MediaEntry,
|
||||||
ResolvedListEntries,
|
ResolvedListEntries,
|
||||||
} from '@goldenwere/mackenzii-types'
|
} from '@goldenwere/mackenzii-types'
|
||||||
import { fetchAndParseYaml, fetchConfigsFromList, storage } from 'src/utilities/fetch'
|
import { fetchAndParseConfig, fetchConfigsFromList, storage } from 'src/utilities/fetch'
|
||||||
import { getCurrentRoute } from 'src/utilities/vuetils'
|
import { getCurrentRoute } from 'src/utilities/vuetils'
|
||||||
import { useRouteStore } from 'src/routes'
|
import { useRouteStore } from 'src/routes'
|
||||||
|
|
||||||
|
@ -84,7 +84,7 @@ const onHideWarningsToggled = (event: Event) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
let listConfig = await fetchAndParseYaml<MediaList>(routeConfig.config)
|
let listConfig = await fetchAndParseConfig<MediaList>(routeConfig.config)
|
||||||
const list = await fetchConfigsFromList<MediaEntry>(listConfig)
|
const list = await fetchConfigsFromList<MediaEntry>(listConfig)
|
||||||
config.value = listConfig
|
config.value = listConfig
|
||||||
entries.value = list.entries
|
entries.value = list.entries
|
||||||
|
|
Loading…
Add table
Reference in a new issue