172 lines
5.4 KiB
JavaScript
172 lines
5.4 KiB
JavaScript
import { createContext } from "../shared/createContext.js";
|
|
import { useDirection } from "../shared/useDirection.js";
|
|
import { useForwardExpose } from "../shared/useForwardExpose.js";
|
|
import { Primitive } from "../Primitive/Primitive.js";
|
|
import { computed, createBlock, createElementVNode, defineComponent, nextTick, openBlock, ref, renderSlot, toDisplayString, toRefs, unref, watch, withCtx } from "vue";
|
|
import { useVModel } from "@vueuse/core";
|
|
|
|
//#region src/Stepper/StepperRoot.vue?vue&type=script&setup=true&lang.ts
|
|
const _hoisted_1 = {
|
|
"aria-live": "polite",
|
|
"aria-atomic": "true",
|
|
role: "status",
|
|
style: {
|
|
transform: "translateX(-100%)",
|
|
position: "absolute",
|
|
pointerEvents: "none",
|
|
opacity: 0,
|
|
margin: 0
|
|
}
|
|
};
|
|
const [injectStepperRootContext, provideStepperRootContext] = createContext("StepperRoot");
|
|
var StepperRoot_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineComponent({
|
|
__name: "StepperRoot",
|
|
props: {
|
|
defaultValue: {
|
|
type: Number,
|
|
required: false,
|
|
default: 1
|
|
},
|
|
orientation: {
|
|
type: String,
|
|
required: false,
|
|
default: "horizontal"
|
|
},
|
|
dir: {
|
|
type: String,
|
|
required: false
|
|
},
|
|
modelValue: {
|
|
type: Number,
|
|
required: false
|
|
},
|
|
linear: {
|
|
type: Boolean,
|
|
required: false,
|
|
default: true
|
|
},
|
|
asChild: {
|
|
type: Boolean,
|
|
required: false
|
|
},
|
|
as: {
|
|
type: null,
|
|
required: false
|
|
}
|
|
},
|
|
emits: ["update:modelValue"],
|
|
setup(__props, { expose: __expose, emit: __emit }) {
|
|
const props = __props;
|
|
const emits = __emit;
|
|
const { dir: propDir, orientation: propOrientation, linear } = toRefs(props);
|
|
const dir = useDirection(propDir);
|
|
const totalStepperItems = ref(/* @__PURE__ */ new Set());
|
|
const modelValue = useVModel(props, "modelValue", emits, {
|
|
defaultValue: props.defaultValue,
|
|
passive: props.modelValue === void 0
|
|
});
|
|
const totalStepperItemsArray = computed(() => Array.from(totalStepperItems.value));
|
|
const isFirstStep = computed(() => modelValue.value === 1);
|
|
const isLastStep = computed(() => modelValue.value === totalStepperItemsArray.value.length);
|
|
const totalSteps = computed(() => totalStepperItems.value.size);
|
|
function goToStep(step) {
|
|
if (step > totalSteps.value) return;
|
|
if (step < 1) return;
|
|
if (totalStepperItems.value.size && !!totalStepperItemsArray.value[step] && !!totalStepperItemsArray.value[step].getAttribute("disabled")) return;
|
|
if (linear.value) {
|
|
if (step > (modelValue.value ?? 1) + 1) return;
|
|
}
|
|
modelValue.value = step;
|
|
}
|
|
function nextStep() {
|
|
goToStep((modelValue.value ?? 1) + 1);
|
|
}
|
|
function prevStep() {
|
|
goToStep((modelValue.value ?? 1) - 1);
|
|
}
|
|
function hasNext() {
|
|
return (modelValue.value ?? 1) < totalSteps.value;
|
|
}
|
|
function hasPrev() {
|
|
return (modelValue.value ?? 1) > 1;
|
|
}
|
|
const nextStepperItem = ref(null);
|
|
const prevStepperItem = ref(null);
|
|
const isNextDisabled = computed(() => nextStepperItem.value ? nextStepperItem.value.getAttribute("disabled") === "" : true);
|
|
const isPrevDisabled = computed(() => prevStepperItem.value ? prevStepperItem.value.getAttribute("disabled") === "" : true);
|
|
watch(modelValue, async () => {
|
|
await nextTick(() => {
|
|
nextStepperItem.value = totalStepperItemsArray.value.length && modelValue.value < totalStepperItemsArray.value.length ? totalStepperItemsArray.value[modelValue.value] : null;
|
|
prevStepperItem.value = totalStepperItemsArray.value.length && modelValue.value > 1 ? totalStepperItemsArray.value[modelValue.value - 2] : null;
|
|
});
|
|
});
|
|
watch(totalStepperItemsArray, async () => {
|
|
await nextTick(() => {
|
|
nextStepperItem.value = totalStepperItemsArray.value.length && modelValue.value < totalStepperItemsArray.value.length ? totalStepperItemsArray.value[modelValue.value] : null;
|
|
prevStepperItem.value = totalStepperItemsArray.value.length && modelValue.value > 1 ? totalStepperItemsArray.value[modelValue.value - 2] : null;
|
|
});
|
|
});
|
|
provideStepperRootContext({
|
|
modelValue,
|
|
changeModelValue: (value) => {
|
|
modelValue.value = value;
|
|
},
|
|
orientation: propOrientation,
|
|
dir,
|
|
linear,
|
|
totalStepperItems
|
|
});
|
|
__expose({
|
|
goToStep,
|
|
nextStep,
|
|
prevStep,
|
|
modelValue,
|
|
totalSteps,
|
|
isNextDisabled,
|
|
isPrevDisabled,
|
|
isFirstStep,
|
|
isLastStep,
|
|
hasNext,
|
|
hasPrev
|
|
});
|
|
useForwardExpose();
|
|
return (_ctx, _cache) => {
|
|
return openBlock(), createBlock(unref(Primitive), {
|
|
role: "group",
|
|
"aria-label": "progress",
|
|
as: _ctx.as,
|
|
"as-child": _ctx.asChild,
|
|
"data-linear": unref(linear) ? "" : void 0,
|
|
"data-orientation": _ctx.orientation
|
|
}, {
|
|
default: withCtx(() => [renderSlot(_ctx.$slots, "default", {
|
|
modelValue: unref(modelValue),
|
|
totalSteps: totalStepperItems.value.size,
|
|
isNextDisabled: isNextDisabled.value,
|
|
isPrevDisabled: isPrevDisabled.value,
|
|
isFirstStep: isFirstStep.value,
|
|
isLastStep: isLastStep.value,
|
|
goToStep,
|
|
nextStep,
|
|
prevStep,
|
|
hasNext,
|
|
hasPrev
|
|
}), createElementVNode("div", _hoisted_1, " Step " + toDisplayString(unref(modelValue)) + " of " + toDisplayString(totalStepperItems.value.size), 1)]),
|
|
_: 3
|
|
}, 8, [
|
|
"as",
|
|
"as-child",
|
|
"data-linear",
|
|
"data-orientation"
|
|
]);
|
|
};
|
|
}
|
|
});
|
|
|
|
//#endregion
|
|
//#region src/Stepper/StepperRoot.vue
|
|
var StepperRoot_default = StepperRoot_vue_vue_type_script_setup_true_lang_default;
|
|
|
|
//#endregion
|
|
export { StepperRoot_default, injectStepperRootContext };
|
|
//# sourceMappingURL=StepperRoot.js.map
|