mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 07:39:36 +08:00
91 lines
2.4 KiB
TypeScript
91 lines
2.4 KiB
TypeScript
|
import React, { useState } from 'react';
|
||
|
import { DownOutlined, UpOutlined } from '@ant-design/icons';
|
||
|
import { Button, Col, Form, Input, Row, Select } from 'antd';
|
||
|
|
||
|
const { Option } = Select;
|
||
|
|
||
|
const AdvancedSearchForm = () => {
|
||
|
const [expand, setExpand] = useState(false);
|
||
|
const [form] = Form.useForm();
|
||
|
|
||
|
const getFields = () => {
|
||
|
const count = expand ? 10 : 6;
|
||
|
const children = [];
|
||
|
for (let i = 0; i < count; i++) {
|
||
|
children.push(
|
||
|
<Col span={8} key={i}>
|
||
|
<Form.Item
|
||
|
name={`field-${i}`}
|
||
|
label={`Field ${i}`}
|
||
|
rules={[
|
||
|
{
|
||
|
required: true,
|
||
|
message: 'Input something!',
|
||
|
},
|
||
|
]}
|
||
|
>
|
||
|
{i % 3 !== 1 ? (
|
||
|
<Input placeholder="placeholder" />
|
||
|
) : (
|
||
|
<Select defaultValue="2">
|
||
|
<Option value="1">1</Option>
|
||
|
<Option value="2">
|
||
|
longlonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglong
|
||
|
</Option>
|
||
|
</Select>
|
||
|
)}
|
||
|
</Form.Item>
|
||
|
</Col>,
|
||
|
);
|
||
|
}
|
||
|
return children;
|
||
|
};
|
||
|
|
||
|
const onFinish = (values: any) => {
|
||
|
console.log('Received values of form: ', values);
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<Form
|
||
|
form={form}
|
||
|
name="advanced_search"
|
||
|
className="ant-advanced-search-form"
|
||
|
onFinish={onFinish}
|
||
|
>
|
||
|
<Row gutter={24}>{getFields()}</Row>
|
||
|
<Row>
|
||
|
<Col span={24} style={{ textAlign: 'right' }}>
|
||
|
<Button type="primary" htmlType="submit">
|
||
|
Search
|
||
|
</Button>
|
||
|
<Button
|
||
|
style={{ margin: '0 8px' }}
|
||
|
onClick={() => {
|
||
|
form.resetFields();
|
||
|
}}
|
||
|
>
|
||
|
Clear
|
||
|
</Button>
|
||
|
<a
|
||
|
style={{ fontSize: 12 }}
|
||
|
onClick={() => {
|
||
|
setExpand(!expand);
|
||
|
}}
|
||
|
>
|
||
|
{expand ? <UpOutlined /> : <DownOutlined />} Collapse
|
||
|
</a>
|
||
|
</Col>
|
||
|
</Row>
|
||
|
</Form>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<div>
|
||
|
<AdvancedSearchForm />
|
||
|
<div className="search-result-list">Search Result List</div>
|
||
|
</div>
|
||
|
);
|
||
|
|
||
|
export default App;
|