2022-11-30 11:05:41 +08:00
|
|
|
import type { FC } from 'react';
|
|
|
|
import React, { useMemo } from 'react';
|
|
|
|
/* eslint import/no-unresolved: 0 */
|
|
|
|
// @ts-ignore
|
2022-11-25 14:23:11 +08:00
|
|
|
import tokenMeta from 'antd/es/version/token-meta.json';
|
|
|
|
import { getDesignToken } from 'antd-token-previewer';
|
2022-11-30 11:05:41 +08:00
|
|
|
import { Table } from 'antd';
|
2022-11-30 11:48:47 +08:00
|
|
|
import type { TableProps } from 'antd';
|
2022-11-30 11:05:41 +08:00
|
|
|
import { css } from '@emotion/react';
|
2022-11-25 14:23:11 +08:00
|
|
|
import useLocale from '../../../hooks/useLocale';
|
|
|
|
import useSiteToken from '../../../hooks/useSiteToken';
|
|
|
|
|
|
|
|
type TokenTableProps = {
|
|
|
|
type: 'seed' | 'map' | 'alias';
|
|
|
|
lang: 'zh' | 'en';
|
|
|
|
};
|
|
|
|
|
|
|
|
type TokenData = {
|
|
|
|
name: string;
|
|
|
|
desc: string;
|
|
|
|
type: string;
|
|
|
|
value: any;
|
|
|
|
};
|
|
|
|
|
|
|
|
const defaultToken = getDesignToken();
|
|
|
|
|
|
|
|
const locales = {
|
|
|
|
cn: {
|
|
|
|
token: 'Token 名称',
|
|
|
|
description: '描述',
|
|
|
|
type: '类型',
|
|
|
|
value: '默认值',
|
|
|
|
},
|
|
|
|
en: {
|
|
|
|
token: 'Token Name',
|
|
|
|
description: 'Description',
|
|
|
|
type: 'Type',
|
|
|
|
value: 'Default Value',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
const useStyle = () => {
|
|
|
|
const { token } = useSiteToken();
|
|
|
|
|
|
|
|
return {
|
|
|
|
codeSpan: css`
|
|
|
|
margin: 0 1px;
|
|
|
|
padding: 0.2em 0.4em;
|
|
|
|
font-size: 0.9em;
|
|
|
|
background: ${token.siteMarkdownCodeBg};
|
|
|
|
border: 1px solid ${token.colorSplit};
|
|
|
|
border-radius: 3px;
|
|
|
|
font-family: monospace;
|
|
|
|
`,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const TokenTable: FC<TokenTableProps> = ({ type }) => {
|
|
|
|
const styles = useStyle();
|
|
|
|
const [locale, lang] = useLocale(locales);
|
|
|
|
const columns: Exclude<TableProps<TokenData>['columns'], undefined> = [
|
|
|
|
{
|
|
|
|
title: locale.token,
|
|
|
|
key: 'name',
|
|
|
|
dataIndex: 'name',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: locale.description,
|
|
|
|
key: 'desc',
|
|
|
|
dataIndex: 'desc',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: locale.type,
|
|
|
|
key: 'type',
|
|
|
|
dataIndex: 'type',
|
|
|
|
render: (_, record) => <span css={styles.codeSpan}>{record.type}</span>,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: locale.value,
|
|
|
|
key: 'value',
|
|
|
|
render: (_, record) => (
|
|
|
|
<span style={{ display: 'inline-flex', alignItems: 'center' }}>
|
|
|
|
{typeof record.value === 'string' &&
|
|
|
|
(record.value.startsWith('#') || record.value.startsWith('rgb')) && (
|
|
|
|
<span
|
|
|
|
style={{
|
|
|
|
background: record.value,
|
|
|
|
display: 'inline-block',
|
|
|
|
width: 6,
|
|
|
|
height: 6,
|
|
|
|
borderRadius: '50%',
|
|
|
|
boxShadow: 'inset 0 0 0 1px rgba(0, 0, 0, 0.06)',
|
|
|
|
marginRight: 4,
|
|
|
|
}}
|
2022-11-30 11:05:41 +08:00
|
|
|
/>
|
2022-11-25 14:23:11 +08:00
|
|
|
)}
|
|
|
|
{typeof record.value !== 'string' ? JSON.stringify(record.value) : record.value}
|
|
|
|
</span>
|
|
|
|
),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2022-11-30 11:05:41 +08:00
|
|
|
const data = useMemo<TokenData[]>(
|
|
|
|
() =>
|
2022-12-01 20:52:35 +08:00
|
|
|
Object.entries(tokenMeta)
|
|
|
|
.filter(([, meta]) => meta.source === type)
|
|
|
|
.map(([token, meta]) => ({
|
|
|
|
name: token,
|
|
|
|
desc: lang === 'cn' ? meta.desc : meta.descEn,
|
|
|
|
type: meta.type,
|
|
|
|
value: (defaultToken as any)[token],
|
|
|
|
})),
|
2022-11-30 11:05:41 +08:00
|
|
|
[type, lang],
|
|
|
|
);
|
2022-11-25 14:23:11 +08:00
|
|
|
|
|
|
|
return <Table dataSource={data} columns={columns} pagination={false} bordered />;
|
|
|
|
};
|
|
|
|
|
|
|
|
export default TokenTable;
|