| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import { defineComponent, ref, computed, openBlock, createElementBlock, normalizeClass, unref, createElementVNode, toDisplayString, createVNode } from 'vue';
- import { ElInput } from '../../../input/index.mjs';
- import { usePagination } from '../usePagination.mjs';
- import { paginationJumperProps } from './jumper.mjs';
- import _export_sfc from '../../../../_virtual/plugin-vue_export-helper.mjs';
- import { useLocale } from '../../../../hooks/use-locale/index.mjs';
- import { useNamespace } from '../../../../hooks/use-namespace/index.mjs';
- const __default__ = defineComponent({
- name: "ElPaginationJumper"
- });
- const _sfc_main = /* @__PURE__ */ defineComponent({
- ...__default__,
- props: paginationJumperProps,
- setup(__props) {
- const { t } = useLocale();
- const ns = useNamespace("pagination");
- const { pageCount, disabled, currentPage, changeEvent } = usePagination();
- const userInput = ref();
- const innerValue = computed(() => {
- var _a;
- return (_a = userInput.value) != null ? _a : currentPage == null ? void 0 : currentPage.value;
- });
- function handleInput(val) {
- userInput.value = val ? +val : "";
- }
- function handleChange(val) {
- val = Math.trunc(+val);
- changeEvent == null ? void 0 : changeEvent(val);
- userInput.value = void 0;
- }
- return (_ctx, _cache) => {
- return openBlock(), createElementBlock("span", {
- class: normalizeClass(unref(ns).e("jump")),
- disabled: unref(disabled)
- }, [
- createElementVNode("span", {
- class: normalizeClass([unref(ns).e("goto")])
- }, toDisplayString(unref(t)("el.pagination.goto")), 3),
- createVNode(unref(ElInput), {
- size: _ctx.size,
- class: normalizeClass([unref(ns).e("editor"), unref(ns).is("in-pagination")]),
- min: 1,
- max: unref(pageCount),
- disabled: unref(disabled),
- "model-value": unref(innerValue),
- "validate-event": false,
- "aria-label": unref(t)("el.pagination.page"),
- type: "number",
- "onUpdate:modelValue": handleInput,
- onChange: handleChange
- }, null, 8, ["size", "class", "max", "disabled", "model-value", "aria-label"]),
- createElementVNode("span", {
- class: normalizeClass([unref(ns).e("classifier")])
- }, toDisplayString(unref(t)("el.pagination.pageClassifier")), 3)
- ], 10, ["disabled"]);
- };
- }
- });
- var Jumper = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "jumper.vue"]]);
- export { Jumper as default };
- //# sourceMappingURL=jumper2.mjs.map
|