diff options
| author | Armand Philippot <git@armandphilippot.com> | 2021-12-15 12:16:34 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2021-12-15 17:06:55 +0100 |
| commit | 0fa8ae55c52852c34c9143a6ec43c954c6404df1 (patch) | |
| tree | 32c5421025591386632c50200ce6bed3ce6e62b7 /src/ts/types/articles.ts | |
| parent | 15d247cb0d52d9c091fa040fe1d9d45e9e506050 (diff) | |
chore: retrieve posts list on blog page
Diffstat (limited to 'src/ts/types/articles.ts')
| -rw-r--r-- | src/ts/types/articles.ts | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/ts/types/articles.ts b/src/ts/types/articles.ts new file mode 100644 index 0000000..5d5fbc5 --- /dev/null +++ b/src/ts/types/articles.ts @@ -0,0 +1,38 @@ +import { Cover, CoverResponse } from './cover'; +import { SubjectPreview, ThematicPreview } from './taxonomies'; + +export type ArticleDates = { + publication: string; + update: string; +}; + +export type ArticlePreviewResponse = { + acfPosts: { + postsInSubject: SubjectPreview[] | null; + postsInThematics: ThematicPreview[] | null; + }; + commentCount: number; + contentParts: { + beforeMore: string; + }; + databaseId: number; + date: string; + featuredImage: CoverResponse | null; + id: string; + modified: string; + slug: string; + title: string; +}; + +export type ArticlePreview = { + commentCount: number; + content: string; + databaseId: number; + date: ArticleDates; + featuredImage?: Cover | object; + id: string; + slug: string; + subjects: SubjectPreview[] | []; + thematics: ThematicPreview[] | []; + title: string; +}; |
