This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/vuetify/lib/components/VProgressCircular/VProgressCircular.js

143 lines
3.2 KiB
JavaScript
Raw Normal View History

2019-08-11 18:48:02 +00:00
// Styles
import "../../../src/components/VProgressCircular/VProgressCircular.sass"; // Mixins
import Colorable from '../../mixins/colorable'; // Utils
import { convertToUnit } from '../../util/helpers';
/* @vue/component */
export default Colorable.extend({
name: 'v-progress-circular',
props: {
button: Boolean,
indeterminate: Boolean,
rotate: {
type: [Number, String],
default: 0
},
size: {
type: [Number, String],
default: 32
},
width: {
type: [Number, String],
default: 4
},
value: {
type: [Number, String],
default: 0
}
},
data: () => ({
radius: 20
}),
computed: {
calculatedSize() {
return Number(this.size) + (this.button ? 8 : 0);
},
circumference() {
return 2 * Math.PI * this.radius;
},
classes() {
return {
'v-progress-circular--indeterminate': this.indeterminate,
'v-progress-circular--button': this.button
};
},
normalizedValue() {
if (this.value < 0) {
return 0;
}
if (this.value > 100) {
return 100;
}
return parseFloat(this.value);
},
strokeDashArray() {
return Math.round(this.circumference * 1000) / 1000;
},
strokeDashOffset() {
return (100 - this.normalizedValue) / 100 * this.circumference + 'px';
},
strokeWidth() {
return Number(this.width) / +this.size * this.viewBoxSize * 2;
},
styles() {
return {
height: convertToUnit(this.calculatedSize),
width: convertToUnit(this.calculatedSize)
};
},
svgStyles() {
return {
transform: `rotate(${Number(this.rotate)}deg)`
};
},
viewBoxSize() {
return this.radius / (1 - Number(this.width) / +this.size);
}
},
methods: {
genCircle(name, offset) {
return this.$createElement('circle', {
class: `v-progress-circular__${name}`,
attrs: {
fill: 'transparent',
cx: 2 * this.viewBoxSize,
cy: 2 * this.viewBoxSize,
r: this.radius,
'stroke-width': this.strokeWidth,
'stroke-dasharray': this.strokeDashArray,
'stroke-dashoffset': offset
}
});
},
genSvg() {
const children = [this.indeterminate || this.genCircle('underlay', 0), this.genCircle('overlay', this.strokeDashOffset)];
return this.$createElement('svg', {
style: this.svgStyles,
attrs: {
xmlns: 'http://www.w3.org/2000/svg',
viewBox: `${this.viewBoxSize} ${this.viewBoxSize} ${2 * this.viewBoxSize} ${2 * this.viewBoxSize}`
}
}, children);
},
genInfo() {
return this.$createElement('div', {
staticClass: 'v-progress-circular__info'
}, this.$slots.default);
}
},
render(h) {
return h('div', this.setTextColor(this.color, {
staticClass: 'v-progress-circular',
attrs: {
role: 'progressbar',
'aria-valuemin': 0,
'aria-valuemax': 100,
'aria-valuenow': this.indeterminate ? undefined : this.normalizedValue
},
class: this.classes,
style: this.styles,
on: this.$listeners
}), [this.genSvg(), this.genInfo()]);
}
});
//# sourceMappingURL=VProgressCircular.js.map