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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
|
import Heading, { HeadingProps } from '@components/atoms/headings/heading';
import Link, { LinkProps } from '@components/atoms/links/link';
import List from '@components/atoms/lists/list';
import ImageWidget from '@components/organisms/widgets/image-widget';
import SocialMedia from '@components/organisms/widgets/social-media';
import { getLayout } from '@components/templates/layout/layout';
import PageLayout, {
type PageLayoutProps,
} from '@components/templates/page/page-layout';
import CVContent, { data, meta } from '@content/pages/cv.mdx';
import styles from '@styles/pages/cv.module.scss';
import { type NextPageWithLayout } from '@ts/types/app';
import { loadTranslation } from '@utils/helpers/i18n';
import {
getSchemaJson,
getSinglePageSchema,
getWebPageSchema,
} from '@utils/helpers/schema-org';
import useBreadcrumb from '@utils/hooks/use-breadcrumb';
import useSettings from '@utils/hooks/use-settings';
import { NestedMDXComponents } from 'mdx/types';
import { GetStaticProps } from 'next';
import Head from 'next/head';
import { useRouter } from 'next/router';
import Script from 'next/script';
import React, { ReactNode } from 'react';
import { useIntl } from 'react-intl';
const ExternalLink = (props: LinkProps) => <Link external={true} {...props} />;
const H1 = (props: Omit<HeadingProps, 'level'>) => {
return <Heading level={1} {...props} />;
};
const H2 = (props: Omit<HeadingProps, 'level'>) => {
return <Heading level={2} {...props} />;
};
const H3 = (props: Omit<HeadingProps, 'level'>) => {
return <Heading level={3} {...props} />;
};
const H4 = (props: Omit<HeadingProps, 'level'>) => {
return <Heading level={4} {...props} />;
};
const H5 = (props: Omit<HeadingProps, 'level'>) => {
return <Heading level={5} {...props} />;
};
const H6 = (props: Omit<HeadingProps, 'level'>) => {
return <Heading level={6} {...props} />;
};
/**
* CV page.
*/
const CVPage: NextPageWithLayout = () => {
const intl = useIntl();
const { file, image } = data;
const { dates, intro, seo, title } = meta;
const { items: breadcrumbItems, schema: breadcrumbSchema } = useBreadcrumb({
title,
url: `/cv`,
});
const imageWidgetTitle = intl.formatMessage({
defaultMessage: 'Others formats',
description: 'CVPage: cv preview widget title',
id: 'B9OCyV',
});
const socialMediaTitle = intl.formatMessage({
defaultMessage: 'Open-source projects',
description: 'CVPage: social media widget title',
id: '+Dre5J',
});
const headerMeta: PageLayoutProps['headerMeta'] = {
publication: {
date: dates.publication,
},
update: dates.update
? {
date: dates.update,
}
: undefined,
};
const { website } = useSettings();
const cvCaption = intl.formatMessage(
{
defaultMessage: '<link>Download the CV in PDF</link>',
id: 'fN04AJ',
description: 'CVPage: download CV in PDF text',
},
{
link: (chunks: ReactNode) => (
<Link download={true} href={file}>
{chunks}
</Link>
),
}
);
const widgets = [
<ImageWidget
key="image-widget"
expanded={true}
title={imageWidgetTitle}
level={2}
image={image}
description={cvCaption}
imageClassName={styles.image}
/>,
<SocialMedia
key="social-media"
title={socialMediaTitle}
level={2}
media={[
{ name: 'Github', url: 'https://github.com/ArmandPhilippot' },
{ name: 'Gitlab', url: 'https://gitlab.com/ArmandPhilippot' },
{
name: 'LinkedIn',
url: 'https://www.linkedin.com/in/armandphilippot',
},
]}
/>,
];
const { asPath } = useRouter();
const webpageSchema = getWebPageSchema({
description: seo.description,
locale: website.locales.default,
slug: asPath,
title: seo.title,
updateDate: dates.update,
});
const cvSchema = getSinglePageSchema({
cover: image.src,
dates,
description: intro,
id: 'cv',
kind: 'about',
locale: website.locales.default,
slug: asPath,
title: title,
});
const schemaJsonLd = getSchemaJson([webpageSchema, cvSchema]);
const components: NestedMDXComponents = {
a: ExternalLink,
h1: H1,
h2: H2,
h3: H3,
h4: H4,
h5: H5,
h6: H6,
Link: Link,
List: List,
};
return (
<PageLayout
breadcrumb={breadcrumbItems}
breadcrumbSchema={breadcrumbSchema}
headerMeta={headerMeta}
intro={intro}
title={title}
widgets={widgets}
withToC={true}
>
<Head>
<title>{`${seo.title} - ${website.name}`}</title>
<meta name="description" content={seo.description} />
<meta property="og:url" content={`${website.url}${asPath}`} />
<meta property="og:type" content="article" />
<meta property="og:title" content={title} />
<meta property="og:description" content={intro} />
<meta property="og:image" content={image.src} />
<meta property="og:image:alt" content={title} />
</Head>
<Script
id="schema-cv"
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(schemaJsonLd) }}
/>
<CVContent components={components} />
</PageLayout>
);
};
CVPage.getLayout = (page) =>
getLayout(page, { useGrid: true, withExtraPadding: true });
export const getStaticProps: GetStaticProps = async ({ locale }) => {
const translation = await loadTranslation(locale);
return {
props: {
translation,
},
};
};
export default CVPage;
|