mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-17 23:50:52 +08:00

* basic flex * chore: style basic * chore: status style * chore: small size * chore: label vertical * chore: more style * chore: hover disabled * chore: variant * chore: dot variant * chore: max width * chore: hover dot * chore: update style * chore: click style * chore: init percent * chore: pass detail * chore: for progress * chore: clean up * chore: clean up * chore: multiple css var * chore: status text * chore: status use var * chore: fix nest * chore: use svg * chore: type of panel * chore: offset support * chore: inline offset * chore: warning of steps * docs: add semantic preview * chore: semantic transition * chore: hover * chore: adjust style * chore: update semantic preview * chore: fix nav style * chore: patch panel motion * chore: update semantic preview * docs: update config provider doc * chore: fix part ts def * chore: fix test ts * test: update test case * test: coverage * chore: fix lint * test: update test case * test: update snapshot * chore: adjust style * chore: fix rtl * docs: update design * chore: update sctructure * chore: update comment * chore: clean up * chore: clean up * chore: cursor style * chore: coverage * docs: add missing part * chore: order * test: add test case * chore: fix ts * chore: clean up
69 lines
1.9 KiB
TypeScript
69 lines
1.9 KiB
TypeScript
import React, { useState } from 'react';
|
|
import type { StepsProps } from 'antd';
|
|
import { Button, Space, Steps } from 'antd';
|
|
|
|
const App: React.FC = () => {
|
|
const [percent, setPercentage] = useState<number | undefined>(0);
|
|
const [current, setCurrent] = useState(1);
|
|
const [status, setStatus] = useState<StepsProps['status']>('process');
|
|
const content = 'This is a content.';
|
|
const items = [
|
|
{
|
|
title: 'Finished',
|
|
content,
|
|
},
|
|
{
|
|
title: 'In Progress',
|
|
subTitle: 'Left 00:00:08',
|
|
content,
|
|
},
|
|
{
|
|
title: 'Waiting',
|
|
content,
|
|
},
|
|
];
|
|
return (
|
|
<>
|
|
<Space.Compact block>
|
|
<Button onClick={() => setPercentage(undefined)}>Percentage to undefined</Button>
|
|
<Button
|
|
onClick={() =>
|
|
setPercentage((prev) => {
|
|
const next = (prev ?? 0) + 10;
|
|
return next > 100 ? 0 : next;
|
|
})
|
|
}
|
|
>
|
|
Percentage +
|
|
</Button>
|
|
<Button onClick={() => setCurrent((prev) => (prev + 1) % 3)}>Current +</Button>
|
|
<Button onClick={() => setStatus('wait')}>Status Wait</Button>
|
|
<Button onClick={() => setStatus('process')}>Status Process</Button>
|
|
<Button onClick={() => setStatus('finish')}>Status Finish</Button>
|
|
<Button onClick={() => setStatus('error')}>Status Error</Button>
|
|
</Space.Compact>
|
|
<br />
|
|
<Steps current={current} percent={percent} status={status} items={items} />
|
|
<Steps current={current} percent={percent} status={status} size="small" items={items} />
|
|
<Steps
|
|
current={current}
|
|
percent={percent}
|
|
status={status}
|
|
orientation="vertical"
|
|
items={items}
|
|
/>
|
|
<Steps
|
|
current={current}
|
|
percent={percent}
|
|
status={status}
|
|
size="small"
|
|
orientation="vertical"
|
|
items={items}
|
|
/>
|
|
{percent}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|