You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/vc-progress/demo/gap.jsx

81 lines
2.1 KiB

import { Circle } from '../index';
import '../assets/index.less';
7 years ago
const colorMap = ['#3FC7FA', '#85D262', '#FE8C6A'];
function getColor(index) {
return colorMap[(index + colorMap.length) % colorMap.length];
}
7 years ago
export default {
data() {
7 years ago
return {
percent: 30,
colorIndex: 0,
};
7 years ago
},
methods: {
changeState() {
const value = parseInt(Math.random() * 100, 10);
const colorIndex = parseInt(Math.random() * 3, 10);
this.percent = value;
this.colorIndex = colorIndex;
7 years ago
},
},
render() {
7 years ago
const circleContainerStyle = {
width: '200px',
height: '200px',
};
const { percent, colorIndex } = this;
const color = getColor(colorIndex);
7 years ago
return (
<div>
<p>
<button onClick={this.changeState}>Change State [{percent}]</button>
</p>
7 years ago
<div style={circleContainerStyle}>
<Circle
percent={this.percent}
gapDegree="70"
gapPosition="bottom"
strokeWidth="6"
strokeLinecap="square"
7 years ago
strokeColor={this.color}
/>
</div>
<div style={circleContainerStyle}>
<Circle
percent={[percent / 3, percent / 3, percent / 3]}
gapDegree="70"
gapPosition="bottom"
strokeWidth="6"
trailWidth="6"
strokeLinecap="round"
strokeColor={[color, getColor(colorIndex + 1), getColor(colorIndex + 2)]}
7 years ago
/>
</div>
<div style={circleContainerStyle}>
<Circle
percent={this.percent}
gapDegree="70"
gapPosition="left"
strokeWidth="6"
strokeLinecap="square"
7 years ago
strokeColor={this.color}
/>
</div>
<div style={circleContainerStyle}>
<Circle
percent={this.percent}
gapDegree="70"
gapPosition="right"
strokeWidth="6"
strokeLinecap="square"
7 years ago
strokeColor={this.color}
/>
</div>
</div>
);
7 years ago
},
};