forgot to commit types
This commit is contained in:
parent
397380ca39
commit
32162b5386
7 changed files with 119 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
import { type ProjectListingInfo } from 'src/types/shared/project'
|
import { type ProjectListingInfo } from 'src/types/projects/project'
|
||||||
import { getFormattedPeriod } from 'src/utilities/dom'
|
import { getFormattedPeriod } from 'src/utilities/dom'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { inflateDetailsElements } from './details'
|
||||||
import { inflateImageEmbeds } from './image'
|
import { inflateImageEmbeds } from './image'
|
||||||
import { inflateVideoEmbeds } from './video'
|
import { inflateVideoEmbeds } from './video'
|
||||||
|
|
||||||
import { type ProjectListingInfo } from 'src/types/shared/project'
|
import { type ProjectListingInfo } from 'src/types/projects/project'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Inflates various supported embeds
|
* Inflates various supported embeds
|
||||||
|
|
52
src/types/projects/project.ts
Normal file
52
src/types/projects/project.ts
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
import { DateRange } from 'src/types/shared/dateRange'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This describes aditional information about a project.
|
||||||
|
* to display when listing the project on the portfolio page.
|
||||||
|
* At minimum, the title should be specified.
|
||||||
|
*/
|
||||||
|
export type ProjectListingInfo = {
|
||||||
|
/**[Supports Markdown]
|
||||||
|
* Caption displayed below the title of the project on the projects page
|
||||||
|
*/
|
||||||
|
caption?: string
|
||||||
|
/**
|
||||||
|
* When defined, the period will be displayed as {from} - {to}
|
||||||
|
*/
|
||||||
|
period?: DateRange
|
||||||
|
/**[Supports Markdown]
|
||||||
|
* Information to summarize a project
|
||||||
|
*/
|
||||||
|
summary?: string
|
||||||
|
/**
|
||||||
|
* Tags that correspond to project filters on the portfolio page if defined
|
||||||
|
*/
|
||||||
|
tags?: string[]
|
||||||
|
/**[Supports Markdown]
|
||||||
|
* The title of the project
|
||||||
|
*/
|
||||||
|
title: string
|
||||||
|
/**[CSS:background]
|
||||||
|
* Background image, repeat, attachment, and position for the project
|
||||||
|
*/
|
||||||
|
thumbnailBackground?: string
|
||||||
|
/**[CSS:background-size]
|
||||||
|
* Background image size
|
||||||
|
*/
|
||||||
|
thumbnailBackgroundSize?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This concatenates project files for entry within the store.
|
||||||
|
*/
|
||||||
|
export type ProjectStoreEntry = {
|
||||||
|
/**
|
||||||
|
* Content pulled from the projects' markdown (.md) file
|
||||||
|
*/
|
||||||
|
content?: string
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Listing information pulled from the projects' yaml (.yml) file
|
||||||
|
*/
|
||||||
|
listing?: ProjectListingInfo
|
||||||
|
}
|
8
src/types/projects/tag.ts
Normal file
8
src/types/projects/tag.ts
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
export type TagDefinition = {
|
||||||
|
displayName: string
|
||||||
|
className: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export type Tag =
|
||||||
|
| TagDefinition
|
||||||
|
| string
|
4
src/types/shared/dateRange.ts
Normal file
4
src/types/shared/dateRange.ts
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
export type DateRange = {
|
||||||
|
from: string
|
||||||
|
to: string
|
||||||
|
}
|
48
src/types/shared/filter.ts
Normal file
48
src/types/shared/filter.ts
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
import { type ProjectListingInfo } from 'src/types/projects/project'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines a filter category in the filters panel
|
||||||
|
*/
|
||||||
|
export type ProjectFilterCategory = {
|
||||||
|
/**
|
||||||
|
* The heading of the category
|
||||||
|
*/
|
||||||
|
heading: string
|
||||||
|
/**
|
||||||
|
* The filters associated with the category, or more categories
|
||||||
|
*/
|
||||||
|
filters: FilterDefinition[] | ProjectFilterCategory[]
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines a filter for a project
|
||||||
|
*/
|
||||||
|
export type FilterDefinition = {
|
||||||
|
/**
|
||||||
|
* The name to display in the filters panel
|
||||||
|
*/
|
||||||
|
displayName: string
|
||||||
|
/**
|
||||||
|
* The tag which the filter corresponds to for when defined in {@link ProjectListingInfo.tags}
|
||||||
|
*/
|
||||||
|
tag: string
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whenever a filter is toggled in the filters panel, this holds the data regarding that change
|
||||||
|
*/
|
||||||
|
export type FilterChangeEvent = {
|
||||||
|
/**
|
||||||
|
* The tag that the filter is associated with
|
||||||
|
*/
|
||||||
|
tag: string
|
||||||
|
/**
|
||||||
|
* The toggle state of the filter
|
||||||
|
*/
|
||||||
|
value: boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Defines the state of the filters panel
|
||||||
|
*/
|
||||||
|
export type FilterState = { [tag: string]: boolean }
|
5
src/types/shared/link.ts
Normal file
5
src/types/shared/link.ts
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
export interface Link {
|
||||||
|
caption?: string
|
||||||
|
href: string
|
||||||
|
target?: '_blank' | '_parent' | '_self' | '_top'
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue