mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-29 18:50:00 +08:00
371c10c01f
* site: update dumi type * fix: fix * fix: fix * fix: fix * fix: fix
30 lines
853 B
TypeScript
30 lines
853 B
TypeScript
import React from 'react';
|
|
import { Helmet, useRouteMeta } from 'dumi';
|
|
|
|
const CommonHelmet: React.FC = () => {
|
|
const meta = useRouteMeta();
|
|
|
|
const [title, description] = React.useMemo<[string, string]>(() => {
|
|
let helmetTitle: string;
|
|
if (!meta.frontmatter.subtitle && !meta.frontmatter.title) {
|
|
helmetTitle = '404 Not Found - Ant Design';
|
|
} else {
|
|
helmetTitle = `${meta.frontmatter.subtitle || ''} ${
|
|
meta.frontmatter?.title || ''
|
|
} - Ant Design`;
|
|
}
|
|
const helmetDescription = meta.frontmatter.description || '';
|
|
return [helmetTitle, helmetDescription];
|
|
}, [meta]);
|
|
|
|
return (
|
|
<Helmet>
|
|
<title>{title}</title>
|
|
<meta property="og:title" content={title} />
|
|
{description && <meta name="description" content={description} />}
|
|
</Helmet>
|
|
);
|
|
};
|
|
|
|
export default CommonHelmet;
|