period no longer handled by template and repurposed as subtitle

This commit is contained in:
lightling 2024-05-13 17:36:55 -04:00
parent c54497eabb
commit cc0e8ae299
8 changed files with 49 additions and 50 deletions

View file

@ -5,7 +5,7 @@ import type { WarningModal } from './warnings'
/** /**
* Defines global values for the site. * Defines global values for the site.
*/ */
type SiteGlobals = { export type SiteGlobals = {
header: HeaderEntry[] header: HeaderEntry[]
id: string id: string
stylesheetUrls: string[] stylesheetUrls: string[]

View file

@ -67,3 +67,9 @@ export type RouteDefinition =
* Defines the collection of routes the app uses * Defines the collection of routes the app uses
*/ */
export type RouteCollection = { [key: string]: RouteDefinition } export type RouteCollection = { [key: string]: RouteDefinition }
export interface RoutedWindow extends Window {
routeConfig: RouteDefinition
routeSubConfig: any
routeContentConfig: any
}

View file

@ -1,4 +1,3 @@
import type { DateRange } from '../dateRange'
import type { EntryTagCollection } from '../entryTag' import type { EntryTagCollection } from '../entryTag'
/** /**
@ -11,10 +10,10 @@ export type ProjectListingInfo = {
* Caption displayed below the title of the project on the projects page * Caption displayed below the title of the project on the projects page
*/ */
caption?: string caption?: string
/** /**[Supports Markdown]
* When defined, the period will be displayed as {from} - {to} * Optional subtitle for the project
*/ */
period?: DateRange subtitle?: string
/**[Supports Markdown] /**[Supports Markdown]
* Information to summarize a project * Information to summarize a project
*/ */

View file

@ -1,7 +1,5 @@
import type { ProjectListingInfo } from '@goldenwere/static-web-templates-types' import type { ProjectListingInfo } from '@goldenwere/static-web-templates-types'
import { getFormattedPeriod } from 'src/utilities/dom'
/** /**
* Queries for description list nodes and inflates them with extra functionality * Queries for description list nodes and inflates them with extra functionality
* @param _window the reference to the window * @param _window the reference to the window
@ -21,32 +19,32 @@ export class DescriptionListElement {
constructor(_element: HTMLDListElement, _projectInfo?: ProjectListingInfo) { constructor(_element: HTMLDListElement, _projectInfo?: ProjectListingInfo) {
this.element = _element this.element = _element
if (!!_projectInfo) { // if (!!_projectInfo) {
this._inflatePeriod(_projectInfo) // this._inflatePeriod(_projectInfo)
} // }
this._inflateTags() this._inflateTags()
} }
/** // /**
* Searches for the presence of a .period element wrapping around <dt> and <dd>, // * Searches for the presence of a .period element wrapping around <dt> and <dd>,
* and inflates the inner <dd> element by replacing the first instance of $PERIOD with formatted period // * and inflates the inner <dd> element by replacing the first instance of $PERIOD with formatted period
* @param _projectInfo the project info in which the project's time period is defined. // * @param _projectInfo the project info in which the project's time period is defined.
*/ // */
_inflatePeriod = (_projectInfo: ProjectListingInfo) => { // _inflatePeriod = (_projectInfo: ProjectListingInfo) => {
const periodWrapper = this.element.querySelector('.period') // const periodWrapper = this.element.querySelector('.period')
if (!!periodWrapper) { // if (!!periodWrapper) {
if (!!_projectInfo.period) { // if (!!_projectInfo.period) {
const periodDescriptionElement = periodWrapper.querySelector('dd') // const periodDescriptionElement = periodWrapper.querySelector('dd')
if (!!periodDescriptionElement) { // if (!!periodDescriptionElement) {
periodDescriptionElement.innerHTML = periodDescriptionElement.innerHTML.replace('$PERIOD', getFormattedPeriod(_projectInfo.period)) // periodDescriptionElement.innerHTML = periodDescriptionElement.innerHTML.replace('$PERIOD', getFormattedPeriod(_projectInfo.period))
} else { // } else {
console.warn('Found a .period element but not an inner dd element to format on. The .period class should be on a div wrapping around <dt> and <dd>') // console.warn('Found a .period element but not an inner dd element to format on. The .period class should be on a div wrapping around <dt> and <dd>')
} // }
} else { // } else {
console.warn('Found a .period element but the project information is missing a period.') // console.warn('Found a .period element but the project information is missing a period.')
} // }
} // }
} // }
/** /**
* Searches for the presence of a .tags element wrapping around <dt> and <dd>, * Searches for the presence of a .tags element wrapping around <dt> and <dd>,

View file

@ -7,12 +7,14 @@ import { injectStylesheet } from 'src/utilities/dom'
import { storage } from './utilities/fetch' import { storage } from './utilities/fetch'
import { useRouteStore } from 'src/routes' import { useRouteStore } from 'src/routes'
import type { WarningModal } from '@goldenwere/static-web-templates-types' import type { RoutedWindow, WarningModal } from '@goldenwere/static-web-templates-types'
import HeaderLink from 'src/components/shared/header-link.vue' import HeaderLink from 'src/components/shared/header-link.vue'
import ThemePicker from 'src/components/shared/theme-picker.vue' import ThemePicker from 'src/components/shared/theme-picker.vue'
import WarningPrompt from 'src/components/shared/warning-prompt.vue' import WarningPrompt from 'src/components/shared/warning-prompt.vue'
declare const window: RoutedWindow
const router = useRouter() const router = useRouter()
const routeStore = useRouteStore() const routeStore = useRouteStore()
const globalConfig = routeStore._globals const globalConfig = routeStore._globals
@ -80,6 +82,8 @@ const refresh = async () => {
storageId.value = `${globalConfig.id}::${currentRoute.path}` storageId.value = `${globalConfig.id}::${currentRoute.path}`
routeId.value = routeStore._routes[currentRoute.path].id routeId.value = routeStore._routes[currentRoute.path].id
window.routeConfig = {...routeConfig}
determineWarning() determineWarning()
determineStylesheets(routeConfig.stylesheetUrls) determineStylesheets(routeConfig.stylesheetUrls)
scrollTo({ scrollTo({

View file

@ -39,12 +39,3 @@ export const findFirstMatchingChild = ( element: ParentNode, ...selectors: strin
}) })
return returnElement return returnElement
} }
/**
* Formats the period object into a readable string
* @param period the period to format
* @returns the formatted string
*/
export const getFormattedPeriod = (period: DateRange) => {
return `${period.from}${!!period.to ? ' - ' + period.to : ''}`
}

View file

@ -5,7 +5,6 @@ import type {
ProjectListingInfo, ProjectListingInfo,
} from '@goldenwere/static-web-templates-types' } from '@goldenwere/static-web-templates-types'
import { getFormattedPeriod } from 'src/utilities/dom'
import { getCurrentRoute } from 'src/utilities/vuetils' import { getCurrentRoute } from 'src/utilities/vuetils'
const props = defineProps<{ const props = defineProps<{
@ -16,13 +15,10 @@ const props = defineProps<{
const currentRoute = getCurrentRoute() const currentRoute = getCurrentRoute()
const { thumbnailBackground, thumbnailBackgroundSize } = props.info const { thumbnailBackground, thumbnailBackgroundSize } = props.info
const period = computed(() => (!!props.info.period
? getFormattedPeriod(props.info.period)
: undefined
))
const caption = computed(() => marked.parse(props.info.caption || '')) const caption = computed(() => marked.parse(props.info.caption || ''))
const summary = computed(() => marked.parse(props.info.summary || '')) const summary = computed(() => marked.parse(props.info.summary || ''))
const title = computed(() => marked.parse(props.info.title || '')) const title = computed(() => marked.parse(props.info.title || ''))
const subtitle = computed(() => marked.parse(props.info.subtitle || ''))
</script> </script>
<template lang="pug"> <template lang="pug">
@ -35,9 +31,10 @@ const title = computed(() => marked.parse(props.info.title || ''))
.title( .title(
v-html='title' v-html='title'
) )
p.period( .subtitle(
v-if='period' v-if='subtitle'
) {{ period }} v-html='subtitle'
)
.caption( .caption(
v-html='caption' v-html='caption'
) )

View file

@ -4,6 +4,7 @@ import type {
ProjectList, ProjectList,
ProjectListingInfo, ProjectListingInfo,
ProjectListDefinition, ProjectListDefinition,
RoutedWindow,
} from '@goldenwere/static-web-templates-types' } from '@goldenwere/static-web-templates-types'
import { fetchAndParseMarkdown, fetchAndParseYaml } from 'src/utilities/fetch' import { fetchAndParseMarkdown, fetchAndParseYaml } from 'src/utilities/fetch'
@ -11,7 +12,8 @@ import { getCurrentRoute } from 'src/utilities/vuetils'
import { useRouteStore } from 'src/routes' import { useRouteStore } from 'src/routes'
import EmbedableContent from 'src/components/shared/embedable-content.vue' import EmbedableContent from 'src/components/shared/embedable-content.vue'
import { getFormattedPeriod } from 'src/utilities/dom'
declare const window: RoutedWindow
const emits = defineEmits<{ const emits = defineEmits<{
(e: 'loaded'): void (e: 'loaded'): void
@ -29,8 +31,10 @@ onMounted(async () => {
const config = await fetchAndParseYaml<ProjectList>(routeConfig.config) const config = await fetchAndParseYaml<ProjectList>(routeConfig.config)
info.value = await fetchAndParseYaml<ProjectListingInfo>(config.projects[currentRoute.query.id as string].config) info.value = await fetchAndParseYaml<ProjectListingInfo>(config.projects[currentRoute.query.id as string].config)
const md = await fetchAndParseMarkdown(config.projects[currentRoute.query.id as string].content) const md = await fetchAndParseMarkdown(config.projects[currentRoute.query.id as string].content)
content.value = md.replace('$PERIOD', getFormattedPeriod(info.value.period!)) content.value = md
document.title = routeSubConfig.title.replace('$PROJECT', info.value.title) document.title = routeSubConfig.title.replace('$PROJECT', info.value.title)
window.routeSubConfig = {...routeSubConfig}
window.routeContentConfig = {...info.value}
ready.value = true ready.value = true
emits('loaded') emits('loaded')