mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 15:19:58 +08:00
159 lines
5.2 KiB
TypeScript
159 lines
5.2 KiB
TypeScript
import React, { type FC, useEffect, useMemo, useRef, useLayoutEffect } from 'react';
|
|
import 'dayjs/locale/zh-cn';
|
|
import dayjs from 'dayjs';
|
|
import { useOutlet, useSearchParams, Helmet } from 'dumi';
|
|
import Header from 'dumi/theme/slots/Header';
|
|
import Footer from 'dumi/theme/slots/Footer';
|
|
import '../../static/style';
|
|
import useLocation from '../../../hooks/useLocation';
|
|
import SiteContext from '../../slots/SiteContext';
|
|
import ConfigProvider, { DirectionType } from 'antd/es/config-provider';
|
|
import classNames from 'classnames';
|
|
import useLocale from '../../../hooks/useLocale';
|
|
import zhCN from 'antd/es/locale/zh_CN';
|
|
import { createCache, StyleProvider } from '@ant-design/cssinjs';
|
|
import ResourceLayout from '../ResourceLayout';
|
|
import GlobalStyles from '../../common/GlobalStyles';
|
|
import SidebarLayout from '../SidebarLayout';
|
|
|
|
const styleCache = createCache();
|
|
if (typeof global !== 'undefined') {
|
|
(global as any).styleCache = styleCache;
|
|
}
|
|
|
|
const locales = {
|
|
cn: {
|
|
title: 'Ant Design - 一套企业级 UI 设计语言和 React 组件库',
|
|
description: '基于 Ant Design 设计体系的 React UI 组件库,用于研发企业级中后台产品。',
|
|
},
|
|
en: {
|
|
title: "Ant Design - The world's second most popular React UI framework",
|
|
description:
|
|
'An enterprise-class UI design language and React UI library with a set of high-quality React components, one of best React UI library for enterprises',
|
|
},
|
|
};
|
|
|
|
const RESPONSIVE_MOBILE = 768;
|
|
|
|
const DocLayout: FC = () => {
|
|
const outlet = useOutlet();
|
|
const location = useLocation();
|
|
const { pathname, search } = location;
|
|
const [searchParams, setSearchParams] = useSearchParams();
|
|
const [locale, lang] = useLocale(locales);
|
|
|
|
// TODO: place doc layout here, apply for all docs route paths
|
|
// migrate from: https://github.com/ant-design/ant-design/blob/eb9179464b9c4a93c856e1e70ddbdbaaf3f3371f/site/theme/template/Layout/index.tsx
|
|
|
|
const [isMobile, setIsMobile] = React.useState<boolean>(false);
|
|
const [direction, setDirection] = React.useState<DirectionType>('ltr');
|
|
|
|
const timerRef = useRef<NodeJS.Timeout | null>(null);
|
|
|
|
const updateMobileMode = () => {
|
|
setIsMobile(window.innerWidth < RESPONSIVE_MOBILE);
|
|
};
|
|
|
|
useLayoutEffect(() => {
|
|
if (lang === 'cn') {
|
|
dayjs.locale('zh-cn');
|
|
} else {
|
|
dayjs.locale('en');
|
|
}
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
const nprogressHiddenStyle = document.getElementById('nprogress-style');
|
|
if (nprogressHiddenStyle) {
|
|
timerRef.current = setTimeout(() => {
|
|
nprogressHiddenStyle.parentNode?.removeChild(nprogressHiddenStyle);
|
|
}, 0);
|
|
}
|
|
|
|
// Handle direction
|
|
const queryDirection = searchParams.get('direction');
|
|
setDirection(queryDirection === 'rtl' ? 'rtl' : 'ltr');
|
|
|
|
// Handle mobile mode
|
|
updateMobileMode();
|
|
window.addEventListener('resize', updateMobileMode);
|
|
return () => {
|
|
window.removeEventListener('resize', updateMobileMode);
|
|
if (timerRef.current) {
|
|
clearTimeout(timerRef.current);
|
|
}
|
|
};
|
|
}, []);
|
|
|
|
React.useEffect(() => {
|
|
if (typeof (window as any).ga !== 'undefined') {
|
|
(window as any).ga('send', 'pageview', pathname + search);
|
|
}
|
|
if (typeof (window as any)._hmt !== 'undefined') {
|
|
(window as any)._hmt.push(['_trackPageview', pathname + search]);
|
|
}
|
|
}, [location]);
|
|
|
|
const changeDirection = (direction: DirectionType): void => {
|
|
setDirection(direction);
|
|
if (direction === 'ltr') {
|
|
searchParams.delete('direction');
|
|
} else {
|
|
searchParams.set('direction', 'rtl');
|
|
}
|
|
setSearchParams(searchParams);
|
|
};
|
|
|
|
const content = useMemo(() => {
|
|
if (
|
|
['', '/'].some((path) => path === pathname) ||
|
|
['/index'].some((path) => pathname.startsWith(path))
|
|
) {
|
|
return (
|
|
<>
|
|
{outlet}
|
|
<Footer />
|
|
</>
|
|
);
|
|
} else if (pathname.startsWith('/docs/resource')) {
|
|
return <ResourceLayout>{outlet}</ResourceLayout>;
|
|
} else if (pathname.startsWith('/theme-editor')) {
|
|
return <>{outlet}</>;
|
|
}
|
|
return <SidebarLayout>{outlet}</SidebarLayout>;
|
|
}, [pathname, outlet]);
|
|
|
|
return (
|
|
<StyleProvider cache={styleCache}>
|
|
<SiteContext.Provider value={{ isMobile, direction }}>
|
|
<Helmet encodeSpecialCharacters={false}>
|
|
<html
|
|
lang={lang}
|
|
data-direction={direction}
|
|
className={classNames({ [`rtl`]: direction === 'rtl' })}
|
|
/>
|
|
<title>{locale.title}</title>
|
|
<link
|
|
sizes="144x144"
|
|
href="https://gw.alipayobjects.com/zos/antfincdn/UmVnt3t4T0/antd.png"
|
|
/>
|
|
<meta name="description" content={locale.description} />
|
|
<meta property="og:title" content={locale.title} />
|
|
<meta property="og:type" content="website" />
|
|
<meta
|
|
property="og:image"
|
|
content="https://gw.alipayobjects.com/zos/rmsportal/rlpTLlbMzTNYuZGGCVYM.png"
|
|
/>
|
|
</Helmet>
|
|
<ConfigProvider locale={lang === 'cn' ? zhCN : undefined} direction={direction}>
|
|
<GlobalStyles />
|
|
<Header changeDirection={changeDirection} />
|
|
{content}
|
|
</ConfigProvider>
|
|
</SiteContext.Provider>
|
|
</StyleProvider>
|
|
);
|
|
};
|
|
|
|
export default DocLayout;
|