File size: 3,155 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
import * as React from 'react';
import { BugOutlined } from '@ant-design/icons';
import { Button, Flex, Popover, theme } from 'antd';
import { createStyles } from 'antd-style';
import dayjs, { Dayjs } from 'dayjs';
import useLocale from '../../../hooks/useLocale';
import { matchDeprecated } from '../../utils';
interface RefinedChangelogProps {
version?: string;
date?: string;
}
interface ContextProps {
version: string;
date?: Dayjs;
isDeprecated?: boolean;
reason?: string[];
}
const ChangelogContext = React.createContext<ContextProps>({
version: '0.0.0',
});
const locales = {
cn: {
deprecatedTitle: '🚨 该版本存在缺陷, 请升级至下一个新版本',
},
en: {
deprecatedTitle: '🚨 This version has defects, please upgrade to the next version',
},
};
const useStyle = createStyles(({ token, css }) => ({
container: css`
margin-block: ${token.margin}px;
padding: ${token.padding}px;
.changelog-version {
line-height: ${token.lineHeight} !important;
margin: 0 !important;
}
`,
isDeprecated: css``,
}));
const RefinedChangelog: React.FC<React.PropsWithChildren<RefinedChangelogProps>> = (props) => {
const { version, date, children } = props;
const { styles, cx } = useStyle();
const memoizedValue = React.useMemo<ContextProps>(() => {
const realVersion = version || '0.0.0';
const bugVersionInfo = matchDeprecated(realVersion);
return {
version: realVersion,
isDeprecated: !!bugVersionInfo?.match,
reason: bugVersionInfo?.reason,
date: date ? dayjs(date) : undefined,
};
}, [version, date]);
return (
<ChangelogContext value={memoizedValue}>
<div
className={cx('refined-changelog', styles.container, {
[styles.isDeprecated]: memoizedValue.isDeprecated,
})}
>
{children}
</div>
</ChangelogContext>
);
};
const Version: React.FC<React.PropsWithChildren> = ({ children }) => {
const { isDeprecated, reason } = React.use(ChangelogContext);
const { token } = theme.useToken();
const [locale] = useLocale(locales);
if (!isDeprecated) {
return children;
}
const reasonContent = (
<Flex vertical align="start">
{reason?.map((item, index) => (
<Button
key={index}
type="link"
target="_blank"
rel="noreferrer"
href={item}
icon={<BugOutlined />}
>
{item}
</Button>
))}
</Flex>
);
return (
<Flex align="center" gap="small">
{children}
<Popover placement="right" title={locale.deprecatedTitle} content={reasonContent}>
<BugOutlined
style={{
lineHeight: token.lineHeight,
fontSize: token.fontSize,
color: token.colorErrorText,
}}
/>
</Popover>
</Flex>
);
};
const DateComp: React.FC<React.PropsWithChildren> = (props) => props.children;
const DetailsComp: React.FC<React.PropsWithChildren> = (props) => props.children;
export default Object.assign(RefinedChangelog, {
Version,
Date: DateComp,
Details: DetailsComp,
});
|