migrate types to lib/types
This commit is contained in:
parent
531fb2fc4b
commit
f48118122b
20 changed files with 60 additions and 32 deletions
|
@ -81,17 +81,6 @@ export type GalleryEntry = GalleryEntryInheritedProperties & {
|
||||||
*/
|
*/
|
||||||
export type GalleryEntries = { [idOrTitle: string]: GalleryEntry }
|
export type GalleryEntries = { [idOrTitle: string]: GalleryEntry }
|
||||||
|
|
||||||
/**
|
|
||||||
* A wrapper around {@link GalleryEntries} for the app's use only which adds additional fields
|
|
||||||
* in order for the app to effectively display the entries.
|
|
||||||
*/
|
|
||||||
export type GalleryDisplayedEntries = { [idOrTitle: string]: GalleryEntry & {
|
|
||||||
/**
|
|
||||||
* specifies whether the entry is hidden by the tags selected by a visitor
|
|
||||||
*/
|
|
||||||
hidden?: boolean
|
|
||||||
}}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines a tag used by entries in a gallery
|
* Defines a tag used by entries in a gallery
|
||||||
* used for filtering entries from view
|
* used for filtering entries from view
|
16
libs/types/src/index.d.ts
vendored
16
libs/types/src/index.d.ts
vendored
|
@ -1,5 +1,11 @@
|
||||||
export * from './content/globals'
|
export * from './config/globals'
|
||||||
export * from './content/navigation'
|
export * from './config/navigation'
|
||||||
export * from './content/routing'
|
export * from './config/routing'
|
||||||
export * from './content/themes'
|
export * from './config/themes'
|
||||||
export * from './content/warnings'
|
export * from './config/warnings'
|
||||||
|
|
||||||
|
export * from './content/dateRange'
|
||||||
|
export * from './content/link'
|
||||||
|
|
||||||
|
export * from './content/templates/gallery'
|
||||||
|
export * from './content/templates/project'
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import type { ProjectListingInfo } from 'src/views/project/project'
|
import type { ProjectListingInfo } from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
import { getFormattedPeriod } from 'src/utilities/dom'
|
import { getFormattedPeriod } from 'src/utilities/dom'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
|
import type { ProjectListingInfo } from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
import { inflateDescriptionListEmbeds } from './descriptionList'
|
import { inflateDescriptionListEmbeds } from './descriptionList'
|
||||||
import { inflateDetailsElements } from './details'
|
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/views/project/project'
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Inflates various supported embeds
|
* Inflates various supported embeds
|
||||||
* @param _window the reference to the window
|
* @param _window the reference to the window
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
import rfdc from 'rfdc'
|
import rfdc from 'rfdc'
|
||||||
|
|
||||||
import { type DateRange } from 'src/types/shared/dateRange'
|
import type {
|
||||||
|
DateRange,
|
||||||
|
} from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
export const deepCopy = rfdc()
|
export const deepCopy = rfdc()
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { onMounted, ref } from 'vue'
|
import { onMounted, ref } from 'vue'
|
||||||
import { type GalleryListDefinition } from '@goldenwere/static-web-templates-types'
|
import type {
|
||||||
|
GalleryEntry,
|
||||||
|
GalleryList,
|
||||||
|
GalleryListDefinition,
|
||||||
|
} from '@goldenwere/static-web-templates-types'
|
||||||
import { type RouteRecordRaw, useRouter } from 'vue-router'
|
import { type RouteRecordRaw, useRouter } from 'vue-router'
|
||||||
|
|
||||||
import type { GalleryDisplayedEntries, GalleryList } from './gallery'
|
|
||||||
import { amendVariantsWithDefaults } from './gallery-utilities'
|
import { amendVariantsWithDefaults } from './gallery-utilities'
|
||||||
import { fetchAndParseYaml, storage } from 'src/utilities/fetch'
|
import { fetchAndParseYaml, storage } from 'src/utilities/fetch'
|
||||||
import { getCurrentRoute } from 'src/utilities/vuetils'
|
import { getCurrentRoute } from 'src/utilities/vuetils'
|
||||||
|
@ -11,6 +14,17 @@ import { useRouteStore } from 'src/routes'
|
||||||
|
|
||||||
import GalleryTile from './gallery-tile.vue'
|
import GalleryTile from './gallery-tile.vue'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A wrapper around {@link GalleryEntries} for the app's use only which adds additional fields
|
||||||
|
* in order for the app to effectively display the entries.
|
||||||
|
*/
|
||||||
|
type GalleryDisplayedEntries = { [idOrTitle: string]: GalleryEntry & {
|
||||||
|
/**
|
||||||
|
* specifies whether the entry is hidden by the tags selected by a visitor
|
||||||
|
*/
|
||||||
|
hidden?: boolean
|
||||||
|
}}
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
variants: string[]
|
variants: string[]
|
||||||
}>()
|
}>()
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed } from 'vue'
|
import { computed } from 'vue'
|
||||||
|
import type {
|
||||||
|
GalleryEntry,
|
||||||
|
} from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
import type { GalleryEntry } from './gallery'
|
|
||||||
import { getTitleFromEntryOrId } from './gallery-utilities'
|
import { getTitleFromEntryOrId } from './gallery-utilities'
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
import { deepCopy } from 'src/utilities/dom'
|
import type {
|
||||||
|
GalleryEntry,
|
||||||
|
GalleryEntryInheritedProperties,
|
||||||
|
} from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
import type { GalleryEntry, GalleryEntryInheritedProperties } from './gallery'
|
import { deepCopy } from 'src/utilities/dom'
|
||||||
|
|
||||||
export const getTitleFromEntryOrId = (entry: GalleryEntry, id: string) => (
|
export const getTitleFromEntryOrId = (entry: GalleryEntry, id: string) => (
|
||||||
entry.title !== undefined
|
entry.title !== undefined
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, onMounted, ref } from 'vue'
|
import { computed, onMounted, ref } from 'vue'
|
||||||
import { type GalleryListDefinition } from '@goldenwere/static-web-templates-types'
|
import type {
|
||||||
|
GalleryEntry,
|
||||||
|
GalleryList,
|
||||||
|
GalleryListDefinition,
|
||||||
|
} from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
import type { GalleryEntry, GalleryList } from './gallery'
|
|
||||||
import { amendVariantsWithDefaults, getTitleFromEntryOrId } from './gallery-utilities'
|
import { amendVariantsWithDefaults, getTitleFromEntryOrId } from './gallery-utilities'
|
||||||
import { fetchAndParseYaml } from 'src/utilities/fetch'
|
import { fetchAndParseYaml } from 'src/utilities/fetch'
|
||||||
import { getCurrentRoute } from 'src/utilities/vuetils'
|
import { getCurrentRoute } from 'src/utilities/vuetils'
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { onMounted, ref } from 'vue'
|
import { onMounted, ref } from 'vue'
|
||||||
import { type ProjectListDefinition } from '@goldenwere/static-web-templates-types'
|
import type {
|
||||||
|
ProjectList,
|
||||||
|
ProjectListingInfo,
|
||||||
|
ProjectListDefinition,
|
||||||
|
} from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
import type { ProjectList, ProjectListingInfo } from './project'
|
|
||||||
import { fetchAndParseYaml } from 'src/utilities/fetch'
|
import { fetchAndParseYaml } from 'src/utilities/fetch'
|
||||||
import { getCurrentRoute } from 'src/utilities/vuetils'
|
import { getCurrentRoute } from 'src/utilities/vuetils'
|
||||||
import { useRouteStore } from 'src/routes'
|
import { useRouteStore } from 'src/routes'
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
<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 type {
|
||||||
|
ProjectListingInfo,
|
||||||
|
} from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
import { getFormattedPeriod } from 'src/utilities/dom'
|
import { getFormattedPeriod } from 'src/utilities/dom'
|
||||||
import type { ProjectListingInfo } from './project'
|
|
||||||
import { getCurrentRoute } from 'src/utilities/vuetils'
|
import { getCurrentRoute } from 'src/utilities/vuetils'
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { onMounted, ref } from 'vue'
|
import { onMounted, ref } from 'vue'
|
||||||
import { type ProjectListDefinition } from '@goldenwere/static-web-templates-types'
|
import type {
|
||||||
|
ProjectList,
|
||||||
|
ProjectListingInfo,
|
||||||
|
ProjectListDefinition,
|
||||||
|
} from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
import type { ProjectList, ProjectListingInfo } from './project'
|
|
||||||
import { fetchAndParseMarkdown, fetchAndParseYaml } from 'src/utilities/fetch'
|
import { fetchAndParseMarkdown, fetchAndParseYaml } from 'src/utilities/fetch'
|
||||||
import { getCurrentRoute } from 'src/utilities/vuetils'
|
import { getCurrentRoute } from 'src/utilities/vuetils'
|
||||||
import { useRouteStore } from 'src/routes'
|
import { useRouteStore } from 'src/routes'
|
||||||
|
|
Loading…
Add table
Reference in a new issue