import { MetaKind } from '@ts/types/app'; import { useRouter } from 'next/router'; import { useIntl } from 'react-intl'; import { MetaItem } from '..'; const CommentsCount = ({ total, kind }: { total: number; kind: MetaKind }) => { const intl = useIntl(); const { asPath } = useRouter(); const isArticle = () => asPath.includes('/article/'); const getCommentsCount = () => { return intl.formatMessage( { defaultMessage: '{total, plural, =0 {No comments} one {# comment} other {# comments}}', description: 'CommentsCount: comment count value', id: 'lKGNKx', }, { total } ); }; return ( {getCommentsCount()} ) : ( getCommentsCount() ) } kind={kind} /> ); }; export default CommentsCount; The frontend of my personal website.Armand Philippot
aboutsummaryrefslogtreecommitdiffstats
path: root/public/prism/prism-cfscript.js
blob: da8353756b077e64b9aba6a7d803911678015296 (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