mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 02:59:04 +08:00
e8fa5938ab
* site: use CSS logical properties * Update components/anchor/demo/targetOffset.tsx Co-authored-by: afc163 <afc163@gmail.com> Signed-off-by: lijianan <574980606@qq.com> * fix: fix * fix: fix * chore: fix * fix: add more * fix: add more --------- Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: afc163 <afc163@gmail.com>
68 lines
1.9 KiB
TypeScript
68 lines
1.9 KiB
TypeScript
import React, { useState } from 'react';
|
|
import type { RadioChangeEvent, SelectProps } from 'antd';
|
|
import { Button, Radio, Select, Space, Switch } from 'antd';
|
|
|
|
type SelectCommonPlacement = SelectProps['placement'];
|
|
|
|
const randomOptions = (count?: number) => {
|
|
const length = count ?? Math.floor(Math.random() * 5) + 1;
|
|
|
|
// Random 1 ~ 5 options
|
|
return Array.from({ length }).map((_, index) => ({
|
|
value: index,
|
|
label: `Option ${index}`,
|
|
}));
|
|
};
|
|
|
|
const App: React.FC = () => {
|
|
const [placement, SetPlacement] = useState<SelectCommonPlacement>('topLeft');
|
|
const [open, setOpen] = useState(false);
|
|
const [options, setOptions] = useState(() => randomOptions(3));
|
|
|
|
const placementChange = (e: RadioChangeEvent) => {
|
|
SetPlacement(e.target.value);
|
|
};
|
|
|
|
return (
|
|
<div
|
|
style={{
|
|
height: '100%',
|
|
minHeight: 500,
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
position: 'relative',
|
|
}}
|
|
>
|
|
<Space
|
|
style={{
|
|
position: 'absolute',
|
|
top: 0,
|
|
insetInlineStart: '50%',
|
|
transform: 'translateX(-50%)',
|
|
}}
|
|
>
|
|
<Radio.Group value={placement} onChange={placementChange}>
|
|
<Radio.Button value="topLeft">TL</Radio.Button>
|
|
<Radio.Button value="topRight">TR</Radio.Button>
|
|
<Radio.Button value="bottomLeft">BL</Radio.Button>
|
|
<Radio.Button value="bottomRight">BR</Radio.Button>
|
|
</Radio.Group>
|
|
|
|
<Switch checked={open} onChange={() => setOpen((o) => !o)} />
|
|
<Button onClick={() => setOptions(randomOptions())}>Random</Button>
|
|
</Space>
|
|
<Select
|
|
open={open}
|
|
style={{ width: 120 }}
|
|
placement={placement}
|
|
options={options}
|
|
popupMatchSelectWidth={200}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default App;
|