simplify project fields

This commit is contained in:
lightling 2024-06-25 20:16:42 -04:00
parent f9c84c53f4
commit 3f9cf6a057
4 changed files with 56 additions and 45 deletions

View file

@ -1,4 +1,4 @@
export type DateRange = { export type DateRange = {
from: string from: string | number
to: string to: string | number
} }

View file

@ -1,3 +1,4 @@
import type { DateRange } from '../dateRange'
import type { EntryTagCollection } from '../entryTag' import type { EntryTagCollection } from '../entryTag'
import type { EntryWithConfig, EntryWithContent } from './shared' import type { EntryWithConfig, EntryWithContent } from './shared'
@ -7,18 +8,11 @@ import type { EntryWithConfig, EntryWithContent } from './shared'
* At minimum, the title should be specified. * At minimum, the title should be specified.
*/ */
export type ProjectListingInfo = { export type ProjectListingInfo = {
/**[Supports Markdown] date?: DateRange | string | number
* Caption displayed below the title of the project on the projects page
*/
caption?: string
/**[Supports Markdown]
* Optional subtitle for the project
*/
subtitle?: string
/**[Supports Markdown] /**[Supports Markdown]
* Information to summarize a project * Information to summarize a project
*/ */
summary?: string description?: string
/** /**
* Tags that correspond to project filters on the portfolio page if defined * Tags that correspond to project filters on the portfolio page if defined
*/ */
@ -27,14 +21,9 @@ export type ProjectListingInfo = {
* The title of the project * The title of the project
*/ */
title: string title: string
/**[CSS:background] thumbnail?: {
* Background image, repeat, attachment, and position for the project style: CSSStyleDeclaration
*/ }
thumbnailBackground?: string
/**[CSS:background-size]
* Background image size
*/
thumbnailBackgroundSize?: string
} }
export type ProjectEntries = { [key: string]: export type ProjectEntries = { [key: string]:
@ -43,10 +32,6 @@ export type ProjectEntries = { [key: string]:
} }
export type ProjectList = { export type ProjectList = {
projects: { [key: string]: {
config: string
content: string
}}
projects: ProjectEntries projects: ProjectEntries
tags?: EntryTagCollection tags?: EntryTagCollection
removeFromView?: boolean removeFromView?: boolean

View file

@ -0,0 +1,21 @@
import type { DateRange } from '@goldenwere/mackenzii-types'
/**
* Converts a date object/string/number into a formatted date string
* @param date the date to format
* @returns the date formatted into locale string (or the original date if a string)
*/
export const getFormattedDate = (date: DateRange | string | number): string => {
const { from, to } = date as DateRange
if (!!from || !!to) {
return `${getFormattedDate(from)} - ${getFormattedDate(to)}`
} else {
const num = Number(date)
if (isNaN(+num)) {
return date as string
}
return new Date(num).toLocaleDateString()
}
}

View file

@ -1,6 +1,7 @@
<script setup lang="ts"> <script setup lang="ts">
import { computed } from 'vue' import { computed } from 'vue'
import { marked } from 'marked' import { marked } from 'marked'
import { getFormattedDate } from 'src/utilities/parse'
import type { import type {
ProjectListingInfo, ProjectListingInfo,
} from '@goldenwere/mackenzii-types' } from '@goldenwere/mackenzii-types'
@ -11,42 +12,46 @@ const props = defineProps<{
isInternal: boolean, isInternal: boolean,
} & ProjectListingInfo>() } & ProjectListingInfo>()
const { thumbnailBackground, thumbnailBackgroundSize } = props const { thumbnail } = props
const caption = computed(() => marked.parse(props.caption || '')) const description = computed(() => marked.parse(props.description || ''))
const summary = computed(() => marked.parse(props.summary || '')) const date = computed(() => !!props.date ? getFormattedDate(props.date) : null)
const title = computed(() => marked.parse(props.title || '')) const title = computed(() => marked.parse(props.title || ''))
const subtitle = computed(() => marked.parse(props.subtitle || ''))
const href = computed(() => `${props.viewPath}?id=${props.id}`) const href = computed(() => `${props.viewPath}?id=${props.id}`)
</script> </script>
<template lang="pug"> <template lang="pug">
mixin link
router-link.router-link.link(
v-if='isInternal'
:to='{ path: viewPath, query: { id: id } }'
)
block
a.link(
v-else
:href='href'
)
block
mixin embedText mixin embedText
.text .text
.title( .title(
v-html='title' v-html='title'
) )
.subtitle( .date(
v-if='subtitle' v-if='date'
v-html='subtitle'
) )
span {{ date }}
.project-embed .project-embed
router-link.router-link.link( .thumbnail-wrapper(
v-if='isInternal' v-if='!!thumbnail'
:to='{ path: viewPath, query: { id: id } }'
:style='{ background: thumbnailBackground, backgroundSize: thumbnailBackgroundSize }'
) )
+link
.thumbnail(
:style='thumbnail.style'
)
+link
+embedText +embedText
a.link( .description(
v-else v-html='description'
:href='href'
:style='{ background: thumbnailBackground, backgroundSize: thumbnailBackgroundSize }'
)
+embedText
.caption(
v-html='caption'
)
.summary(
v-html='summary'
) )
</template> </template>