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

73 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
import React, { useState } from 'react';
import { Badge, Button, Switch, Divider, Avatar } from 'antd';
import { MinusOutlined, PlusOutlined, QuestionOutlined } from '@ant-design/icons';
2018-06-27 15:55:04 +08:00
2015-11-18 17:05:56 +08:00
const ButtonGroup = Button.Group;
export default () => {
const [count, setCount] = useState(5);
const [show, setShow] = useState(true);
const increase = () => {
setCount(count + 1);
2019-05-07 14:57:32 +08:00
};
const decline = () => {
let countValue = count - 1;
if (countValue < 0) {
countValue = 0;
2015-11-18 17:05:56 +08:00
}
setCount(countValue);
2019-05-07 14:57:32 +08:00
};
const random = () => {
const countValue = Math.floor(Math.random() * 100);
setCount(countValue);
};
const onChange = isShow => {
setShow(isShow);
2019-05-07 14:57:32 +08:00
};
return (
<>
<Badge count={count}>
<Avatar shape="square" size="large" />
</Badge>
<ButtonGroup>
<Button onClick={decline}>
<MinusOutlined />
</Button>
<Button onClick={increase}>
<PlusOutlined />
</Button>
<Button onClick={random}>
<QuestionOutlined />
</Button>
</ButtonGroup>
<Divider />
<Badge dot={show}>
<Avatar shape="square" size="large" />
</Badge>
<Switch onChange={onChange} checked={show} />
</>
);
};
2019-05-07 14:57:32 +08:00
```