From 424a8d0837d5adb52702c0144d69ea8d696f555e Mon Sep 17 00:00:00 2001 From: Lightling Date: Tue, 25 Jun 2024 20:34:08 -0400 Subject: [PATCH] project -> blog --- libs/types/src/config/routing.d.ts | 14 ++--- libs/types/src/content/entryTag.d.ts | 6 +-- .../{project-list.d.ts => blog-list.d.ts} | 20 +++---- .../src/content/templates/templateType.d.ts | 2 +- libs/types/src/index.d.ts | 2 +- projects/frontend/src/routes.ts | 18 +++---- projects/frontend/src/utilities/fetch.ts | 2 +- .../project-list.vue => blog/blog-list.vue} | 54 +++++++++---------- .../project-tile.vue => blog/blog-tile.vue} | 6 +-- .../project-view.vue => blog/blog-view.vue} | 20 +++---- 10 files changed, 72 insertions(+), 72 deletions(-) rename libs/types/src/content/templates/{project-list.d.ts => blog-list.d.ts} (54%) rename projects/frontend/src/views/{project/project-list.vue => blog/blog-list.vue} (52%) rename projects/frontend/src/views/{project/project-tile.vue => blog/blog-tile.vue} (94%) rename projects/frontend/src/views/{project/project-view.vue => blog/blog-view.vue} (70%) diff --git a/libs/types/src/config/routing.d.ts b/libs/types/src/config/routing.d.ts index 61ebde4..53a1a91 100644 --- a/libs/types/src/config/routing.d.ts +++ b/libs/types/src/config/routing.d.ts @@ -1,6 +1,6 @@ import { Router } from 'vue-router' +import { BlogEntry } from '../content/templates/blog-list' import { GalleryEntry } from '../content/templates/gallery-list' -import { ProjectListingInfo } from '../content/templates/project-list' import { TemplateType } from '../content/templates/templateType' import { WarningModal } from './warnings' @@ -39,10 +39,10 @@ export type MarkdownDefinition = ContentfulRouteDefintion & { } /** - * Defines the config for a route using the `project-list` {@link TemplateType} + * Defines the config for a route using the `blog-list` {@link TemplateType} */ -export type ProjectListDefinition = ConfigfulRouteDefinition & { - template: 'project-list' +export type BlogListDefinition = ConfigfulRouteDefinition & { + template: 'blog-list' view: { stylesheetUrls: string[] } @@ -63,7 +63,7 @@ export type GalleryListDefinition = ConfigfulRouteDefinition & { */ export type RouteDefinition = | MarkdownDefinition - | ProjectListDefinition + | BlogListDefinition | GalleryListDefinition /** @@ -77,9 +77,9 @@ export type RouteCollection = { [key: string]: RouteDefinition } export interface RoutedWindow extends Window { /** refers to a template's primary route config; may briefly refer to sub config until a view is fully resolved */ routeConfig: RouteDefinition - /** refers to a template's sub config in the case of child routes under a template (e.g. project-view under project-list) */ + /** refers to a template's sub config in the case of child routes under a template (e.g. blog-view under blog-list) */ routeSubConfig: any - /** refers to content config for various view routes (e.g. {@link GalleryEntry}, {@link ProjectListingInfo}, etc.) */ + /** refers to content config for various view routes (e.g. {@link GalleryEntry}, {@link BlogEntry}, etc.) */ routeContentConfig: any /** vue-router instance */ router?: Router diff --git a/libs/types/src/content/entryTag.d.ts b/libs/types/src/content/entryTag.d.ts index 6ed7d22..14de5e0 100644 --- a/libs/types/src/content/entryTag.d.ts +++ b/libs/types/src/content/entryTag.d.ts @@ -1,5 +1,5 @@ /** - * Defines a tag used by entries in a gallery-list/project-list, + * Defines a tag used by entries in a gallery-list/blog-list, * used for filtering entries from view */ export type EntryTag = { @@ -19,11 +19,11 @@ export type EntryTag = { } /** - * Defines the list of tags in a gallery-list/project-list, + * Defines the list of tags in a gallery-list/blog-list, * a key-value object where the value is the entry, * and the key represents the id of a tag; * the id of a tag must be unique, - * and the ids specified in a gallery/project entry must match + * and the ids specified in a gallery/blog entry must match * the ids specified in `EntryTagCollection` in order for them to work effectively */ export type EntryTagCollection = { [id: string]: EntryTag } diff --git a/libs/types/src/content/templates/project-list.d.ts b/libs/types/src/content/templates/blog-list.d.ts similarity index 54% rename from libs/types/src/content/templates/project-list.d.ts rename to libs/types/src/content/templates/blog-list.d.ts index f9aeab0..e51c5ad 100644 --- a/libs/types/src/content/templates/project-list.d.ts +++ b/libs/types/src/content/templates/blog-list.d.ts @@ -3,22 +3,22 @@ import type { EntryTagCollection } from '../entryTag' import type { EntryWithConfig, EntryWithContent } from './shared' /** - * This describes aditional information about a project. - * to display when listing the project on the portfolio page. + * This describes aditional information about a blog entry + * to display when listing the entry on the blog-list page. * At minimum, the title should be specified. */ -export type ProjectListingInfo = { +export type BlogEntry = { date?: DateRange | string | number /**[Supports Markdown] - * Information to summarize a project + * Information to summarize an entry */ description?: string /** - * Tags that correspond to project filters on the portfolio page if defined + * Tags that correspond to filters on the blog-list page if defined */ tags?: string[] /**[Supports Markdown] - * The title of the project + * The title of the blog entry */ title: string thumbnail?: { @@ -26,13 +26,13 @@ export type ProjectListingInfo = { } } -export type ProjectEntries = { [key: string]: +export type BlogEntries = { [key: string]: & EntryWithContent - & EntryWithConfig + & EntryWithConfig } -export type ProjectList = { - projects: ProjectEntries +export type BlogList = { + entries: BlogEntries tags?: EntryTagCollection removeFromView?: boolean } diff --git a/libs/types/src/content/templates/templateType.d.ts b/libs/types/src/content/templates/templateType.d.ts index aa704e8..480d0b2 100644 --- a/libs/types/src/content/templates/templateType.d.ts +++ b/libs/types/src/content/templates/templateType.d.ts @@ -4,5 +4,5 @@ */ export type TemplateType = | 'markdown' - | 'project-list' + | 'blog-list' | 'gallery-list' diff --git a/libs/types/src/index.d.ts b/libs/types/src/index.d.ts index 52be5cf..ba332e7 100644 --- a/libs/types/src/index.d.ts +++ b/libs/types/src/index.d.ts @@ -8,6 +8,6 @@ export * from './content/dateRange' export * from './content/entryTag' export * from './content/link' +export * from './content/templates/blog-list' export * from './content/templates/gallery-list' -export * from './content/templates/project-list' export * from './content/templates/templateType' diff --git a/projects/frontend/src/routes.ts b/projects/frontend/src/routes.ts index 245296e..a227bc4 100644 --- a/projects/frontend/src/routes.ts +++ b/projects/frontend/src/routes.ts @@ -5,21 +5,21 @@ import type { GalleryListDefinition, HeaderEntry, Link, - ProjectListDefinition, + BlogListDefinition, RouteDefinition, SiteGlobals, TemplateType, } from '@goldenwere/mackenzii-types' const markdownBody = () => import ('./views/markdown/markdown.vue') -const projectListBody = () => import ('./views/project/project-list.vue') -const projectViewBody = () => import ('./views/project/project-view.vue') +const blogListBody = () => import ('./views/blog/blog-list.vue') +const blogViewBody = () => import ('./views/blog/blog-view.vue') const galleryListBody = () => import ('./views/gallery/gallery-list.vue') const galleryViewBody = () => import ('./views/gallery/gallery-view.vue') export const templates: Record Promise> = { 'markdown': markdownBody, - 'project-list': projectListBody, + 'blog-list': blogListBody, 'gallery-list': galleryListBody, } @@ -33,11 +33,11 @@ export const createRoutes = (): RouteRecordRaw[] => { component: templates[routes[route].template], } - if (routes[route].template === 'project-list') { + if (routes[route].template === 'blog-list') { routeRecord.push({ - name: `${routes[route].id}: View Project`, + name: `${routes[route].id}: View Blog`, path: `${route}/view`, - component: projectViewBody, + component: blogViewBody, props: route => ({ id: route.query.id }), }) } else if (routes[route].template === 'gallery-list') { @@ -129,10 +129,10 @@ export const initializeRouteStore = (routerRoutes: readonly RouteRecordRaw[]) => ...routerRoutes.find(other => other.path === route) as RouteRecordRaw, ...routes[route] as RouteDefinition, } - if (routes[route].template === 'project-list' || routes[route].template === 'gallery-list') { + if (routes[route].template === 'blog-list' || routes[route].template === 'gallery-list') { routeStore._routes[`${route}/view`] = { ...routerRoutes.find(other => other.path === `${route}/view`) as RouteRecordRaw, - ...(routes[route] as ProjectListDefinition | GalleryListDefinition).view, + ...(routes[route] as BlogListDefinition | GalleryListDefinition).view, } as any } }) diff --git a/projects/frontend/src/utilities/fetch.ts b/projects/frontend/src/utilities/fetch.ts index a8f86e4..7eeaf23 100644 --- a/projects/frontend/src/utilities/fetch.ts +++ b/projects/frontend/src/utilities/fetch.ts @@ -121,7 +121,7 @@ export const fetchAndParseYaml = async (path: string) => { /** * Fetches, sanitizes, and parses Markdown files * @param path the path of the markdown document to load - * @returns the project parsed from the markdown document + * @returns the content parsed from the markdown document */ export const fetchAndParseMarkdown = async (path: string) => { const document = await fetchAndReturnText(path) diff --git a/projects/frontend/src/views/project/project-list.vue b/projects/frontend/src/views/blog/blog-list.vue similarity index 52% rename from projects/frontend/src/views/project/project-list.vue rename to projects/frontend/src/views/blog/blog-list.vue index 85f9aa1..9c388fd 100644 --- a/projects/frontend/src/views/project/project-list.vue +++ b/projects/frontend/src/views/blog/blog-list.vue @@ -1,9 +1,9 @@