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
|
import { useRouter } from 'next/router';
import { NextSeo } from 'next-seo';
const Seo = (props) => {
const router = useRouter();
const {
canonical,
description,
additionalMetaTags = [],
openGraph = {},
...restProps
} = props;
const origin = (process.env.NEXT_PUBLIC_SELF_HOST || '').replace(/\/+$/, '');
const asPath = router.asPath || '';
const [cleanPath] = asPath.split('?');
const queryObj = router.query || {};
const isSearchPage = cleanPath.startsWith('/search');
const buildFallbackCanonical = () => {
if (isSearchPage) {
const q = queryObj.q;
if (q) {
return origin + cleanPath + `?q=${encodeURIComponent(String(q))}`;
}
return origin + cleanPath;
}
return origin + cleanPath;
};
const resolvedCanonical = canonical || buildFallbackCanonical();
const mergedAdditionalMetaTags = [
{
property: 'fb:app_id',
content: '270830718811',
},
{
property: 'fb:page_id',
content: '101759953569',
},
...additionalMetaTags,
];
return (
<NextSeo
defaultTitle='Indoteknik.com: B2B Industrial Supply & Solution'
canonical={resolvedCanonical}
description={description}
{...restProps}
openGraph={{
siteName: 'Indoteknik.com',
...openGraph,
}}
additionalMetaTags={mergedAdditionalMetaTags}
/>
);
};
export default Seo;
|