blob: 44c1d79f98b19c3c129cc682ae31b2687eb92490 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
import { ContentParts, Dates } from './app';
import { Comment, CommentsNode } from './comments';
import { Cover, RawCover } from './cover';
import { SEO } from './seo';
import {
RawSubjectPreview,
SubjectPreview,
ThematicPreview,
} from './taxonomies';
export type ArticleAuthor = {
firstName: string;
lastName: string;
name: string;
};
export type RawACFPosts = {
postsInSubject: RawSubjectPreview[] | null;
postsInThematic: ThematicPreview[] | null;
};
export type ACFPosts = {
postsInSubject: SubjectPreview[] | null;
postsInThematic: ThematicPreview[] | null;
};
export type ArticleMeta = {
author?: ArticleAuthor;
commentCount?: number;
dates?: Dates;
thematics?: ThematicPreview[];
website?: string;
};
export type Article = {
author: ArticleAuthor;
commentCount: number | null;
comments: Comment[];
content: string;
databaseId: number;
dates: Dates;
id: string;
intro: string;
seo: SEO;
subjects: SubjectPreview[] | [];
thematics: ThematicPreview[] | [];
title: string;
};
export type RawArticle = Pick<
Article,
'commentCount' | 'databaseId' | 'id' | 'seo' | 'title'
> & {
acfPosts: RawACFPosts;
author: { node: ArticleAuthor };
comments: CommentsNode;
contentParts: ContentParts;
date: string;
modified: string;
};
export type ArticlePreview = Pick<
Article,
'commentCount' | 'dates' | 'id' | 'intro' | 'thematics' | 'title'
> & { featuredImage: Cover; slug: string };
export type RawArticlePreview = Pick<
Article,
'commentCount' | 'id' | 'title'
> & {
acfPosts: Pick<ACFPosts, 'postsInThematic'>;
contentParts: Pick<ContentParts, 'beforeMore'>;
date: string;
featuredImage: RawCover;
modified: string;
slug: string;
};
export type PostBy = {
postBy: RawArticle;
};
export type ArticleProps = {
post: Article;
};
|