ant-design/components/locale-provider/demo/all.md

138 lines
3.2 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
title: 所有组件
---
2016-03-03 17:43:38 +08:00
2016-03-07 15:18:39 +08:00
此处列出 Ant Design 中需要国际化支持的组件,你可以在演示里切换语言。
2016-03-03 17:43:38 +08:00
````jsx
import { LocaleProvider, Pagination, DatePicker, TimePicker, Calendar,
Popconfirm, Table, Modal, Button, Select, Transfer } from 'antd';
2016-03-03 17:43:38 +08:00
import enUS from 'antd/lib/locale-provider/en_US';
2016-03-03 21:00:38 +08:00
const Option = Select.Option;
const RangePicker = DatePicker.RangePicker;
2016-03-03 17:43:38 +08:00
const columns = [{
title: 'Name',
dataIndex: 'name',
filters: [{
text: 'filter1',
value: 'filter1',
}],
}, {
title: 'Age',
dataIndex: 'age',
}];
2016-03-03 21:00:38 +08:00
const Page = React.createClass({
2016-03-03 17:43:38 +08:00
getInitialState() {
return {
visible: false,
};
},
showModal() {
this.setState({ visible: true });
},
hideModal() {
this.setState({ visible: false });
},
render() {
const info = () => {
Modal.info({
title: 'some info',
content: 'some info',
});
};
const confirm = () => {
Modal.confirm({
title: 'some info',
content: 'some info',
});
};
2016-03-03 17:43:38 +08:00
return (
<div className="locale-components">
<div className="example">
<Pagination defaultCurrent={1} total={50} showSizeChanger />
</div>
<div className="example">
<DatePicker />
<TimePicker />
<RangePicker style={{ width: 200 }} />
</div>
<div className="example">
<Button type="primary" onClick={this.showModal}>Show Modal</Button>
<Button onClick={info}>Show info</Button>
<Button onClick={confirm}>Show confirm</Button>
<Popconfirm title="Question?">
<a href="#">Click to confirm</a>
</Popconfirm>
</div>
<div className="example">
<Transfer
dataSource={[]}
showSearch
titles={['', '']}
targetKeys={[]}
render={item => item.title} />
</div>
<div style={{ width: 290, border: '1px solid #d9d9d9', borderRadius: 4 }}>
<Calendar fullscreen={false} />
</div>
<div className="example">
<Table dataSource={[]} columns={columns} />
</div>
2016-03-03 17:43:38 +08:00
<Modal title="Locale Modal" visible={this.state.visible} onCancel={this.hideModal}>
<p>Locale Modal</p>
</Modal>
</div>
);
}
});
2016-03-03 21:00:38 +08:00
const App = React.createClass({
getInitialState() {
return {
locale: enUS,
};
},
changeLocale(locale) {
this.setState({ locale });
},
render() {
return (
<div>
<div className="change-locale">
2016-03-07 15:18:39 +08:00
<span>Change locale of components: </span>
2016-03-05 16:39:27 +08:00
<Select defaultValue={enUS} onChange={this.changeLocale} dropdownMatchSelectWidth={false}>
2016-03-03 21:00:38 +08:00
<Option value={enUS}>English</Option>
<Option value={null}>中文</Option>
</Select>
</div>
<LocaleProvider locale={this.state.locale}><Page /></LocaleProvider>
2016-03-03 21:00:38 +08:00
</div>
);
}
});
ReactDOM.render(<App />, mountNode);
2016-03-03 17:43:38 +08:00
````
````css
.locale-components {
border-top: 1px solid #d9d9d9;
padding-top: 16px;
}
.example {
margin: 16px 0;
}
.example > * {
margin-right: 8px;
}
.change-locale {
margin-bottom: 16px;
}
````