From 77a1ec1057feb9d64b56e0b2df5387cf2bac5658 Mon Sep 17 00:00:00 2001 From: Lightling Date: Thu, 14 Mar 2024 18:55:34 -0400 Subject: [PATCH] setup project-list view with project-tile --- src/components/projects/project-tile.vue | 47 ++++++++++++++++++++++++ src/content-env.d.ts | 16 ++++++++ src/main.vue | 7 ++-- src/routes.ts | 2 + src/types/{shared => projects}/filter.ts | 0 src/types/projects/projectList.ts | 9 +++++ src/utilities/vuetils.ts | 10 +++++ src/views/markdown.vue | 7 ++-- src/views/project-list.vue | 45 +++++++++++++++++++++++ 9 files changed, 137 insertions(+), 6 deletions(-) create mode 100644 src/components/projects/project-tile.vue rename src/types/{shared => projects}/filter.ts (100%) create mode 100644 src/types/projects/projectList.ts create mode 100644 src/utilities/vuetils.ts create mode 100644 src/views/project-list.vue diff --git a/src/components/projects/project-tile.vue b/src/components/projects/project-tile.vue new file mode 100644 index 0000000..2c863a1 --- /dev/null +++ b/src/components/projects/project-tile.vue @@ -0,0 +1,47 @@ + + + + + + diff --git a/src/content-env.d.ts b/src/content-env.d.ts index be146f5..c9c905c 100644 --- a/src/content-env.d.ts +++ b/src/content-env.d.ts @@ -5,6 +5,7 @@ declare module 'content/routes.js' { */ type Template = | 'markdown' + | 'project-list' /** * Defines the shared options for a route @@ -22,6 +23,13 @@ declare module 'content/routes.js' { content: string } + /** + * Defines a config-based route + */ + type ConfigfulRouteDefinition = SharedRouteDefinition & { + config: string + } + /** * Defines the config for a route using the `markdown` {@link Template} */ @@ -29,11 +37,19 @@ declare module 'content/routes.js' { template: 'markdown' } + /** + * Defines the config for a route using the `project-list` {@link Template} + */ + type ProjectListDefinition = ConfigfulRouteDefinition & { + template: 'project-list' + } + /** * Defines all available route definitions */ type RouteDefinition = | MarkdownDefinition + | ProjectListDefinition /** * Defines the collection of routes the app uses diff --git a/src/main.vue b/src/main.vue index 24026ef..696446d 100644 --- a/src/main.vue +++ b/src/main.vue @@ -1,17 +1,18 @@ + + + +