mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-18 19:39:51 +08:00
59ad48476b
* chore: add boime lint * fix lint * use files ignore * revert change * ignore clarity.js * fix some errors * fix some errors * fix some errors * fix some errors * add yml file * Update clarity.js Signed-off-by: afc163 <afc163@gmail.com> * add npm run lint:biome * add npm run lint:biome * fix test case * fix ts errors * fix ts errors * fix lint and add .lintstagedrc * shorten prop name * chore: update package.json * update biome.json * chore: remove stylelint * chore: useOptionalChain * fix lint * biome format * prettier all code * prettier all code * fix site test --------- Signed-off-by: afc163 <afc163@gmail.com>
127 lines
3.4 KiB
TypeScript
127 lines
3.4 KiB
TypeScript
import type { PropsWithChildren } from 'react';
|
|
import React from 'react';
|
|
import { ConfigProvider, Layout, Typography } from 'antd';
|
|
import { createStyles } from 'antd-style';
|
|
import { FormattedMessage, useRouteMeta } from 'dumi';
|
|
|
|
import useDark from '../../../hooks/useDark';
|
|
import CommonHelmet from '../../common/CommonHelmet';
|
|
import EditButton from '../../common/EditButton';
|
|
import Footer from '../../slots/Footer';
|
|
import AffixTabs from './AffixTabs';
|
|
|
|
export type ResourceLayoutProps = PropsWithChildren<NonNullable<any>>;
|
|
|
|
const resourcePadding = 40;
|
|
const articleMaxWidth = 1208;
|
|
const resourcePaddingXS = 24;
|
|
|
|
const useStyle = () => {
|
|
const isRootDark = useDark();
|
|
|
|
return createStyles((config) => {
|
|
const { token, css } = config;
|
|
const { antCls } = token;
|
|
|
|
return {
|
|
resourcePage: css`
|
|
footer {
|
|
margin-top: 176px;
|
|
|
|
.rc-footer-container {
|
|
max-width: ${articleMaxWidth}px;
|
|
margin: 0 auto;
|
|
padding-inline-end: 0;
|
|
padding-inline-start: 0;
|
|
}
|
|
}
|
|
`,
|
|
resourceContent: css`
|
|
padding: 0 ${resourcePadding}px;
|
|
max-width: ${articleMaxWidth}px;
|
|
margin: 0 auto;
|
|
box-sizing: content-box;
|
|
min-height: 100vh;
|
|
|
|
@media only screen and (max-width: 767.99px) {
|
|
& {
|
|
article {
|
|
padding: 0 ${resourcePaddingXS}px;
|
|
}
|
|
${antCls}-col {
|
|
padding-top: ${token.padding}px !important;
|
|
padding-bottom: ${token.padding}px !important;
|
|
}
|
|
}
|
|
}
|
|
`,
|
|
banner: css`
|
|
padding: 0 ${resourcePadding}px;
|
|
overflow: hidden;
|
|
${
|
|
isRootDark
|
|
? ``
|
|
: `background: url('https://gw.alipayobjects.com/mdn/rms_08e378/afts/img/A*y_r7RogIG1wAAAAAAAAAAABkARQnAQ');`
|
|
}
|
|
background-size: cover;
|
|
|
|
h1 {
|
|
box-sizing: content-box;
|
|
max-width: ${articleMaxWidth}px;
|
|
margin: 56px auto 16px;
|
|
}
|
|
|
|
section {
|
|
max-width: ${articleMaxWidth}px;
|
|
margin: 0 auto 56px;
|
|
font-weight: 200;
|
|
font-size: ${token.fontSizeLG}px;
|
|
line-height: 24px;
|
|
}
|
|
|
|
@media only screen and (max-width: 767.99px) {
|
|
& {
|
|
margin: 0 -${resourcePaddingXS}px;
|
|
padding: 0 ${resourcePaddingXS}px;
|
|
}
|
|
}
|
|
`,
|
|
};
|
|
})();
|
|
};
|
|
|
|
const ResourceLayout: React.FC<ResourceLayoutProps> = ({ children }) => {
|
|
const { styles } = useStyle();
|
|
const meta = useRouteMeta();
|
|
const isRootDark = useDark();
|
|
|
|
const node = (
|
|
<Layout>
|
|
<CommonHelmet />
|
|
<div id="resources-page" className={styles.resourcePage}>
|
|
<AffixTabs />
|
|
<div className={styles.banner}>
|
|
<Typography.Title style={{ fontSize: 30 }}>
|
|
{meta.frontmatter?.title}
|
|
<EditButton
|
|
title={<FormattedMessage id="app.content.edit-page" />}
|
|
filename={meta.frontmatter.filename}
|
|
/>
|
|
</Typography.Title>
|
|
<section>{meta.frontmatter.description}</section>
|
|
</div>
|
|
<div className={styles.resourceContent}>{children}</div>
|
|
<Footer />
|
|
</div>
|
|
</Layout>
|
|
);
|
|
|
|
if (!isRootDark) {
|
|
return <ConfigProvider theme={{ token: { colorBgLayout: '#fff' } }}>{node}</ConfigProvider>;
|
|
}
|
|
|
|
return node;
|
|
};
|
|
|
|
export default ResourceLayout;
|