124 lines
4.1 KiB
JavaScript
124 lines
4.1 KiB
JavaScript
import { createContext } from "../shared/createContext.js";
|
|
import { isNullish } from "../shared/nullish.js";
|
|
import { useForwardExpose } from "../shared/useForwardExpose.js";
|
|
import { Primitive } from "../Primitive/Primitive.js";
|
|
import { computed, createBlock, defineComponent, nextTick, openBlock, renderSlot, unref, watch, withCtx } from "vue";
|
|
import { useVModel } from "@vueuse/core";
|
|
|
|
//#region src/Progress/ProgressRoot.vue?vue&type=script&setup=true&lang.ts
|
|
const DEFAULT_MAX = 100;
|
|
const [injectProgressRootContext, provideProgressRootContext] = createContext("ProgressRoot");
|
|
const isNumber = (v) => typeof v === "number";
|
|
function validateValue(value, max) {
|
|
const isValidValueError = isNullish(value) || isNumber(value) && !Number.isNaN(value) && value <= max && value >= 0;
|
|
if (isValidValueError) return value;
|
|
console.error(`Invalid prop \`value\` of value \`${value}\` supplied to \`ProgressRoot\`. The \`value\` prop must be:
|
|
- a positive number
|
|
- less than the value passed to \`max\` (or ${DEFAULT_MAX} if no \`max\` prop is set)
|
|
- \`null\` or \`undefined\` if the progress is indeterminate.
|
|
|
|
Defaulting to \`null\`.`);
|
|
return null;
|
|
}
|
|
function validateMax(max) {
|
|
const isValidMaxError = isNumber(max) && !Number.isNaN(max) && max > 0;
|
|
if (isValidMaxError) return max;
|
|
console.error(`Invalid prop \`max\` of value \`${max}\` supplied to \`ProgressRoot\`. Only numbers greater than 0 are valid max values. Defaulting to \`${DEFAULT_MAX}\`.`);
|
|
return DEFAULT_MAX;
|
|
}
|
|
var ProgressRoot_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineComponent({
|
|
__name: "ProgressRoot",
|
|
props: {
|
|
modelValue: {
|
|
type: [Number, null],
|
|
required: false
|
|
},
|
|
max: {
|
|
type: Number,
|
|
required: false,
|
|
default: DEFAULT_MAX
|
|
},
|
|
getValueLabel: {
|
|
type: Function,
|
|
required: false,
|
|
default: (value, max) => isNumber(value) ? `${Math.round(value / max * DEFAULT_MAX)}%` : void 0
|
|
},
|
|
getValueText: {
|
|
type: Function,
|
|
required: false
|
|
},
|
|
asChild: {
|
|
type: Boolean,
|
|
required: false
|
|
},
|
|
as: {
|
|
type: null,
|
|
required: false
|
|
}
|
|
},
|
|
emits: ["update:modelValue", "update:max"],
|
|
setup(__props, { emit: __emit }) {
|
|
const props = __props;
|
|
const emit = __emit;
|
|
useForwardExpose();
|
|
const modelValue = useVModel(props, "modelValue", emit, { passive: props.modelValue === void 0 });
|
|
const max = useVModel(props, "max", emit, { passive: props.max === void 0 });
|
|
watch(() => modelValue.value, async (value) => {
|
|
const correctedValue = validateValue(value, props.max);
|
|
if (correctedValue !== value) {
|
|
await nextTick();
|
|
modelValue.value = correctedValue;
|
|
}
|
|
}, { immediate: true });
|
|
watch(() => props.max, (newMax) => {
|
|
const correctedMax = validateMax(props.max);
|
|
if (correctedMax !== newMax) max.value = correctedMax;
|
|
}, { immediate: true });
|
|
const progressState = computed(() => {
|
|
if (isNullish(modelValue.value)) return "indeterminate";
|
|
if (modelValue.value === max.value) return "complete";
|
|
return "loading";
|
|
});
|
|
provideProgressRootContext({
|
|
modelValue,
|
|
max,
|
|
progressState
|
|
});
|
|
return (_ctx, _cache) => {
|
|
return openBlock(), createBlock(unref(Primitive), {
|
|
"as-child": _ctx.asChild,
|
|
as: _ctx.as,
|
|
"aria-valuemax": unref(max),
|
|
"aria-valuemin": 0,
|
|
"aria-valuenow": isNumber(unref(modelValue)) ? unref(modelValue) : void 0,
|
|
"aria-valuetext": _ctx.getValueText?.(unref(modelValue), unref(max)),
|
|
"aria-label": _ctx.getValueLabel(unref(modelValue), unref(max)),
|
|
role: "progressbar",
|
|
"data-state": progressState.value,
|
|
"data-value": unref(modelValue) ?? void 0,
|
|
"data-max": unref(max)
|
|
}, {
|
|
default: withCtx(() => [renderSlot(_ctx.$slots, "default", { modelValue: unref(modelValue) })]),
|
|
_: 3
|
|
}, 8, [
|
|
"as-child",
|
|
"as",
|
|
"aria-valuemax",
|
|
"aria-valuenow",
|
|
"aria-valuetext",
|
|
"aria-label",
|
|
"data-state",
|
|
"data-value",
|
|
"data-max"
|
|
]);
|
|
};
|
|
}
|
|
});
|
|
|
|
//#endregion
|
|
//#region src/Progress/ProgressRoot.vue
|
|
var ProgressRoot_default = ProgressRoot_vue_vue_type_script_setup_true_lang_default;
|
|
|
|
//#endregion
|
|
export { ProgressRoot_default, injectProgressRootContext };
|
|
//# sourceMappingURL=ProgressRoot.js.map
|