ant-design/site/theme/template/Home/index.tsx

95 lines
2.4 KiB
TypeScript
Raw Normal View History

2019-12-26 15:27:52 +08:00
import * as React from 'react';
import { FormattedMessage, useIntl } from 'react-intl';
import { Typography } from 'antd';
import { Link } from 'bisheng/router';
import Banner from './Banner';
import RecommendPage from './RecommendPage';
import DesignPage from './DesignPage';
import MorePage from './MorePage';
import Footer from '../Layout/Footer';
import { getLocalizedPathname } from '../utils';
import './index.less';
const { Title } = Typography;
function getStyle() {
return `
.rc-footer-container {
padding-left: 0;
padding-right: 0;
}
.rc-footer-columns {
max-width: 1208px;
margin: 0 auto;
}
`;
}
interface BlockContentProps {
title: React.ReactNode;
extra?: React.ReactNode;
}
const BlockContent: React.FC<BlockContentProps> = ({ title, children, extra }) => (
<div className="home-block-content">
<Title level={2} style={{ fontWeight: 'lighter', color: '#314659' }}>
{title}
2020-01-03 15:20:10 +08:00
{extra && <div className="home-block-content-extra">{extra}</div>}
2019-12-26 15:27:52 +08:00
</Title>
{children}
</div>
);
const Home = (props: { location: any }) => {
const { location } = props;
2019-12-26 15:27:52 +08:00
const { locale } = useIntl();
const isZhCN = locale === 'zh-CN';
const getLink = () => {
const path = getLocalizedPathname('/docs/resources', isZhCN, location.query, {
zhCN: '文章',
enUS: 'Articles',
});
const { pathname, query } = path;
const pathnames = pathname.split('#');
if ('direction' in query) {
return `${pathnames[0]}?direction=rtl#${pathnames[1]}`;
}
return path;
};
2019-12-26 15:27:52 +08:00
return (
<div className="home-container">
<style dangerouslySetInnerHTML={{ __html: getStyle() }} />
<Banner location={location} />
2019-12-26 15:27:52 +08:00
<div style={{ maxWidth: 1256, margin: '0 auto' }}>
<BlockContent title={<FormattedMessage id="app.home.recommend" />}>
<RecommendPage />
</BlockContent>
<BlockContent title={<FormattedMessage id="app.home.design-and-framework" />}>
<DesignPage location={location} />
2019-12-26 15:27:52 +08:00
</BlockContent>
{isZhCN ? (
<BlockContent
title={<FormattedMessage id="app.home.more" />}
extra={
<Link to={getLink()}>
<FormattedMessage id="app.home.view-more" />
</Link>
}
>
<MorePage />
</BlockContent>
) : null}
2019-12-26 15:27:52 +08:00
</div>
<Footer location={location} />
2019-12-26 15:27:52 +08:00
</div>
);
};
export default Home;