ant-design/components/badge/demo/change.md

74 lines
1.4 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 4
title:
zh-CN: 动态
en-US: Dynamic
2016-03-31 09:40:55 +08:00
---
2015-11-18 17:05:56 +08:00
## zh-CN
2015-11-18 17:05:56 +08:00
展示动态变化的效果。
## en-US
The count will be animated as it changes.
2019-05-07 14:57:32 +08:00
```jsx
use ant design icons 4.0 (#18217) * feat: use @ant-design/icons@4.0 * feat: use createFromIconfontCN to make site works * feat: update doc for Icon * feat: use icon in component Alert * feat: use icon in component Avatar * feat: use icon in component Breadcrumb * feat: use icon in component Button * feat: use icon in component Cascader * feat: use icon in component Collapse * feat: use icon in component Datepicker * feat: use icon in component Dropdown * feat: use icon in component Form * feat: use icon in component Input * feat: use icon in component InputNumber * feat: use icon in component Layout * feat: use icon in component Mention * feat: use icon in component Message * feat: use icon in component Modal * feat: use icon in component Notification * feat: use icon in component PageHeader * feat: use icon in component Pagination * feat: use icon in component Popconfirm * feat: use icon in component Progress * feat: use icon in component Rate * feat: use icon in component Result * feat: use icon in component Select * feat: use icon in component Step * feat: use icon in component Switch * feat: use icon in component Table * feat: use icon in component Tab * feat: use icon in component Tag * feat: handle rest component which using Icon * fix: remove unused vars * feat: use latest alpha ant design icons * fix: failed test in uploadlist.test.js * test: update snapshot for icons * doc: add Icon for site * doc: use @ant-design/icons in site * chore: use latest icons * fix: tslint issue * fix: test cases * fix: types for react * fix: lint rules for import orders * fix: use @ant-design/icons@4.0.0-alpha.5 to avoid insert css in server render * fix: eslint error in demo/**.md * inject antd icons * update snapshot * fix site * doc: update docs * fix: code snippets icon in site * feat: use latest @ant-design/icons * fix: icon props in message
2019-08-13 14:07:17 +08:00
import { Badge, Button, Switch } from 'antd';
import { MinusOutlined, PlusOutlined } from '@ant-design/icons';
2018-06-27 15:55:04 +08:00
2015-11-18 17:05:56 +08:00
const ButtonGroup = Button.Group;
class Demo extends React.Component {
state = {
count: 5,
show: true,
2019-05-07 14:57:32 +08:00
};
increase = () => {
2015-11-23 15:21:52 +08:00
const count = this.state.count + 1;
2015-11-18 17:05:56 +08:00
this.setState({ count });
2019-05-07 14:57:32 +08:00
};
decline = () => {
2015-11-23 15:21:52 +08:00
let count = this.state.count - 1;
2015-11-18 17:05:56 +08:00
if (count < 0) {
count = 0;
}
this.setState({ count });
2019-05-07 14:57:32 +08:00
};
2019-05-07 14:57:32 +08:00
onChange = show => {
2016-12-20 11:06:40 +08:00
this.setState({ show });
2019-05-07 14:57:32 +08:00
};
2015-11-18 17:05:56 +08:00
render() {
return (
<div>
2016-12-20 11:06:40 +08:00
<div>
<Badge count={this.state.count}>
<a href="#" className="head-example" />
</Badge>
<ButtonGroup>
2017-02-04 22:35:33 +08:00
<Button onClick={this.decline}>
<MinusOutlined />
</Button>
2017-02-04 22:35:33 +08:00
<Button onClick={this.increase}>
<PlusOutlined />
</Button>
</ButtonGroup>
2016-12-20 11:06:40 +08:00
</div>
<div style={{ marginTop: 10 }}>
<Badge dot={this.state.show}>
<a href="#" className="head-example" />
</Badge>
2017-07-31 18:03:16 +08:00
<Switch onChange={this.onChange} checked={this.state.show} />
</div>
2015-11-18 17:05:56 +08:00
</div>
);
}
}
2015-11-18 17:05:56 +08:00
ReactDOM.render(<Demo />, mountNode);
2019-05-07 14:57:32 +08:00
```