mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 07:09:55 +08:00
0051a877e2
* fix(site): fix the failure of website code folding function * remove * chore: update
84 lines
2.6 KiB
TypeScript
84 lines
2.6 KiB
TypeScript
import React, { useContext, useState } from 'react';
|
|
import { DumiDemoGrid, FormattedMessage } from 'dumi';
|
|
import { Tooltip } from 'antd';
|
|
import { BugFilled, BugOutlined, CodeFilled, CodeOutlined } from '@ant-design/icons';
|
|
import classNames from 'classnames';
|
|
import DemoContext from '../../slots/DemoContext';
|
|
|
|
const DemoWrapper: typeof DumiDemoGrid = ({ items }) => {
|
|
const { showDebug, setShowDebug } = useContext(DemoContext);
|
|
|
|
const [expandAll, setExpandAll] = useState(false);
|
|
|
|
const expandTriggerClass = classNames('code-box-expand-trigger', {
|
|
'code-box-expand-trigger-active': expandAll,
|
|
});
|
|
|
|
const handleVisibleToggle = () => {
|
|
setShowDebug?.(!showDebug);
|
|
};
|
|
|
|
const handleExpandToggle = () => {
|
|
setExpandAll(!expandAll);
|
|
};
|
|
|
|
const demos = React.useMemo(
|
|
() =>
|
|
items.reduce((acc, item) => {
|
|
const { previewerProps } = item;
|
|
const { debug } = previewerProps;
|
|
|
|
if (debug && !showDebug) return acc;
|
|
|
|
return acc.concat({
|
|
...item,
|
|
previewerProps: {
|
|
...previewerProps,
|
|
expand: expandAll,
|
|
// always override debug property, because dumi will hide debug demo in production
|
|
debug: false,
|
|
/**
|
|
* antd extra marker for the original debug
|
|
* @see https://github.com/ant-design/ant-design/pull/40130#issuecomment-1380208762
|
|
*/
|
|
originDebug: debug,
|
|
},
|
|
});
|
|
}, [] as typeof items),
|
|
[expandAll, showDebug],
|
|
);
|
|
|
|
return (
|
|
<div className="demo-wrapper">
|
|
<span className="all-code-box-controls">
|
|
<Tooltip
|
|
title={
|
|
<FormattedMessage id={`app.component.examples.${expandAll ? 'collapse' : 'expand'}`} />
|
|
}
|
|
>
|
|
{expandAll ? (
|
|
<CodeFilled className={expandTriggerClass} onClick={handleExpandToggle} />
|
|
) : (
|
|
<CodeOutlined className={expandTriggerClass} onClick={handleExpandToggle} />
|
|
)}
|
|
</Tooltip>
|
|
<Tooltip
|
|
title={
|
|
<FormattedMessage id={`app.component.examples.${showDebug ? 'hide' : 'visible'}`} />
|
|
}
|
|
>
|
|
{showDebug ? (
|
|
<BugFilled className={expandTriggerClass} onClick={handleVisibleToggle} />
|
|
) : (
|
|
<BugOutlined className={expandTriggerClass} onClick={handleVisibleToggle} />
|
|
)}
|
|
</Tooltip>
|
|
</span>
|
|
{/* FIXME: find a new way instead of `key` to trigger re-render */}
|
|
<DumiDemoGrid items={demos} key={`${expandAll}${showDebug}`} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default DemoWrapper;
|