mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
854cdb4352
* type: optimize CompoundedComponent type * chore: fix * type: fix type * chore: fix * type: fix type * type: add ts-ignore * fix: fix * chore: revert
59 lines
1.4 KiB
TypeScript
59 lines
1.4 KiB
TypeScript
import React, { useRef, useState } from 'react';
|
|
import { EllipsisOutlined } from '@ant-design/icons';
|
|
import type { GetRef, TourProps } from 'antd';
|
|
import { Button, Divider, Space, Tour } from 'antd';
|
|
|
|
const App: React.FC = () => {
|
|
const ref1 = useRef<GetRef<typeof Button>>(null);
|
|
const ref2 = useRef<GetRef<typeof Button>>(null);
|
|
const ref3 = useRef<GetRef<typeof Button>>(null);
|
|
|
|
const [open, setOpen] = useState<boolean>(false);
|
|
|
|
const steps: TourProps['steps'] = [
|
|
{
|
|
title: 'Upload File',
|
|
description: 'Put your files here.',
|
|
target: () => ref1.current!,
|
|
},
|
|
{
|
|
title: 'Save',
|
|
description: 'Save your changes.',
|
|
target: () => ref2.current!,
|
|
},
|
|
{
|
|
title: 'Other Actions',
|
|
description: 'Click to see other actions.',
|
|
target: () => ref3.current!,
|
|
},
|
|
];
|
|
|
|
return (
|
|
<>
|
|
<Button type="primary" onClick={() => setOpen(true)}>
|
|
Begin Tour
|
|
</Button>
|
|
<Divider />
|
|
<Space>
|
|
<Button ref={ref1}>Upload</Button>
|
|
<Button ref={ref2} type="primary">
|
|
Save
|
|
</Button>
|
|
<Button ref={ref3} icon={<EllipsisOutlined />} />
|
|
</Space>
|
|
<Tour
|
|
open={open}
|
|
onClose={() => setOpen(false)}
|
|
steps={steps}
|
|
indicatorsRender={(current, total) => (
|
|
<span>
|
|
{current + 1} / {total}
|
|
</span>
|
|
)}
|
|
/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|