forked from jchomaz/Vulture
Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
157
VApp/node_modules/.vite/deps/chunk-YRMIN6NY.js
generated
vendored
Normal file
157
VApp/node_modules/.vite/deps/chunk-YRMIN6NY.js
generated
vendored
Normal file
@@ -0,0 +1,157 @@
|
||||
import {
|
||||
useIntersectionObserver
|
||||
} from "./chunk-44S2JOLY.js";
|
||||
import {
|
||||
makeSizeProps,
|
||||
useSize
|
||||
} from "./chunk-IFUDBK56.js";
|
||||
import {
|
||||
useTextColor
|
||||
} from "./chunk-ZZ55KHRR.js";
|
||||
import {
|
||||
makeTagProps
|
||||
} from "./chunk-DJRL4NAD.js";
|
||||
import {
|
||||
useResizeObserver
|
||||
} from "./chunk-6MYZNPKW.js";
|
||||
import {
|
||||
makeThemeProps,
|
||||
provideTheme
|
||||
} from "./chunk-CYOEVGGH.js";
|
||||
import {
|
||||
convertToUnit,
|
||||
genericComponent,
|
||||
makeComponentProps,
|
||||
propsFactory,
|
||||
useRender
|
||||
} from "./chunk-I4KGD5X4.js";
|
||||
import {
|
||||
computed,
|
||||
createVNode,
|
||||
ref,
|
||||
toRef,
|
||||
watchEffect
|
||||
} from "./chunk-PD2AWGJV.js";
|
||||
|
||||
// node_modules/vuetify/lib/components/VProgressCircular/VProgressCircular.mjs
|
||||
import "C:/Users/Jeremy/Documents/Dev/Projects.cloudsucks.net/Vulture/VApp/node_modules/vuetify/lib/components/VProgressCircular/VProgressCircular.css";
|
||||
var makeVProgressCircularProps = propsFactory({
|
||||
bgColor: String,
|
||||
color: String,
|
||||
indeterminate: [Boolean, String],
|
||||
modelValue: {
|
||||
type: [Number, String],
|
||||
default: 0
|
||||
},
|
||||
rotate: {
|
||||
type: [Number, String],
|
||||
default: 0
|
||||
},
|
||||
width: {
|
||||
type: [Number, String],
|
||||
default: 4
|
||||
},
|
||||
...makeComponentProps(),
|
||||
...makeSizeProps(),
|
||||
...makeTagProps({
|
||||
tag: "div"
|
||||
}),
|
||||
...makeThemeProps()
|
||||
}, "VProgressCircular");
|
||||
var VProgressCircular = genericComponent()({
|
||||
name: "VProgressCircular",
|
||||
props: makeVProgressCircularProps(),
|
||||
setup(props, _ref) {
|
||||
let {
|
||||
slots
|
||||
} = _ref;
|
||||
const MAGIC_RADIUS_CONSTANT = 20;
|
||||
const CIRCUMFERENCE = 2 * Math.PI * MAGIC_RADIUS_CONSTANT;
|
||||
const root = ref();
|
||||
const {
|
||||
themeClasses
|
||||
} = provideTheme(props);
|
||||
const {
|
||||
sizeClasses,
|
||||
sizeStyles
|
||||
} = useSize(props);
|
||||
const {
|
||||
textColorClasses,
|
||||
textColorStyles
|
||||
} = useTextColor(toRef(props, "color"));
|
||||
const {
|
||||
textColorClasses: underlayColorClasses,
|
||||
textColorStyles: underlayColorStyles
|
||||
} = useTextColor(toRef(props, "bgColor"));
|
||||
const {
|
||||
intersectionRef,
|
||||
isIntersecting
|
||||
} = useIntersectionObserver();
|
||||
const {
|
||||
resizeRef,
|
||||
contentRect
|
||||
} = useResizeObserver();
|
||||
const normalizedValue = computed(() => Math.max(0, Math.min(100, parseFloat(props.modelValue))));
|
||||
const width = computed(() => Number(props.width));
|
||||
const size = computed(() => {
|
||||
return sizeStyles.value ? Number(props.size) : contentRect.value ? contentRect.value.width : Math.max(width.value, 32);
|
||||
});
|
||||
const diameter = computed(() => MAGIC_RADIUS_CONSTANT / (1 - width.value / size.value) * 2);
|
||||
const strokeWidth = computed(() => width.value / size.value * diameter.value);
|
||||
const strokeDashOffset = computed(() => convertToUnit((100 - normalizedValue.value) / 100 * CIRCUMFERENCE));
|
||||
watchEffect(() => {
|
||||
intersectionRef.value = root.value;
|
||||
resizeRef.value = root.value;
|
||||
});
|
||||
useRender(() => createVNode(props.tag, {
|
||||
"ref": root,
|
||||
"class": ["v-progress-circular", {
|
||||
"v-progress-circular--indeterminate": !!props.indeterminate,
|
||||
"v-progress-circular--visible": isIntersecting.value,
|
||||
"v-progress-circular--disable-shrink": props.indeterminate === "disable-shrink"
|
||||
}, themeClasses.value, sizeClasses.value, textColorClasses.value, props.class],
|
||||
"style": [sizeStyles.value, textColorStyles.value, props.style],
|
||||
"role": "progressbar",
|
||||
"aria-valuemin": "0",
|
||||
"aria-valuemax": "100",
|
||||
"aria-valuenow": props.indeterminate ? void 0 : normalizedValue.value
|
||||
}, {
|
||||
default: () => [createVNode("svg", {
|
||||
"style": {
|
||||
transform: `rotate(calc(-90deg + ${Number(props.rotate)}deg))`
|
||||
},
|
||||
"xmlns": "http://www.w3.org/2000/svg",
|
||||
"viewBox": `0 0 ${diameter.value} ${diameter.value}`
|
||||
}, [createVNode("circle", {
|
||||
"class": ["v-progress-circular__underlay", underlayColorClasses.value],
|
||||
"style": underlayColorStyles.value,
|
||||
"fill": "transparent",
|
||||
"cx": "50%",
|
||||
"cy": "50%",
|
||||
"r": MAGIC_RADIUS_CONSTANT,
|
||||
"stroke-width": strokeWidth.value,
|
||||
"stroke-dasharray": CIRCUMFERENCE,
|
||||
"stroke-dashoffset": 0
|
||||
}, null), createVNode("circle", {
|
||||
"class": "v-progress-circular__overlay",
|
||||
"fill": "transparent",
|
||||
"cx": "50%",
|
||||
"cy": "50%",
|
||||
"r": MAGIC_RADIUS_CONSTANT,
|
||||
"stroke-width": strokeWidth.value,
|
||||
"stroke-dasharray": CIRCUMFERENCE,
|
||||
"stroke-dashoffset": strokeDashOffset.value
|
||||
}, null)]), slots.default && createVNode("div", {
|
||||
"class": "v-progress-circular__content"
|
||||
}, [slots.default({
|
||||
value: normalizedValue.value
|
||||
})])]
|
||||
}));
|
||||
return {};
|
||||
}
|
||||
});
|
||||
|
||||
export {
|
||||
VProgressCircular
|
||||
};
|
||||
//# sourceMappingURL=chunk-YRMIN6NY.js.map
|
||||
Reference in New Issue
Block a user