hongluan-ui
Version:
Hongluan Component Library for Vue 3
256 lines (251 loc) • 10 kB
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
var vue = require('vue');
var lodashUnified = require('lodash-unified');
require('../../../hooks/index.js');
var index$2 = require('../../input/index.js');
var index$3 = require('../../tooltip/index.js');
require('../../../constants/index.js');
require('../../../utils/index.js');
var mention = require('./mention2.js');
var helper = require('./helper.js');
var mentionDropdown = require('./mention-dropdown.js');
var input = require('../../input/src/input.js');
var index = require('../../../hooks/use-namespace/index.js');
var shared = require('@vue/shared');
var event = require('../../../constants/event.js');
var index$1 = require('../../../hooks/use-focus-controller/index.js');
const __default__ = vue.defineComponent({
name: "Mention"
});
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
...__default__,
props: mention.mentionProps,
emits: mention.mentionEmits,
setup(__props, { expose, emit }) {
const props = __props;
const passInputProps = vue.computed(() => lodashUnified.pick(props, Object.keys(input.inputProps)));
const { namespace } = index.useNamespace("mention");
const hlInputRef = vue.ref();
const tooltipRef = vue.ref();
const dropdownRef = vue.ref();
const visible = vue.ref(false);
const cursorStyle = vue.ref();
const mentionCtx = vue.ref();
const computedPlacement = vue.computed(() => props.showArrow ? props.placement : `${props.placement}-start`);
const computedFallbackPlacements = vue.computed(() => props.showArrow ? ["bottom", "top"] : ["bottom-start", "top-start"]);
const filteredOptions = vue.computed(() => {
const { filterOption, options } = props;
if (!mentionCtx.value || !filterOption)
return options;
return options.filter((option) => filterOption(mentionCtx.value.pattern, option));
});
const handleInputChange = (value) => {
emit("update:modelValue", value);
syncAfterCursorMove();
};
const handleInputKeyDown = (e) => {
var _a, _b, _c, _d;
if (!("key" in e))
return;
if ((_a = hlInputRef.value) == null ? void 0 : _a.isComposing)
return;
if (["ArrowLeft", "ArrowRight"].includes(e.key)) {
syncAfterCursorMove();
} else if (["ArrowUp", "ArrowDown"].includes(e.key)) {
if (!visible.value)
return;
e.preventDefault();
const direction = e.key === "ArrowUp" ? "prev" : "next";
(_b = dropdownRef.value) == null ? void 0 : _b.navigateOptions(direction);
} else if (["Enter"].includes(e.key)) {
if (!visible.value)
return;
e.preventDefault();
if ((_c = dropdownRef.value) == null ? void 0 : _c.hoverOption) {
(_d = dropdownRef.value) == null ? void 0 : _d.selectHoverOption();
} else {
visible.value = false;
}
} else if (["Backspace"].includes(e.key)) {
if (props.whole && mentionCtx.value) {
const { splitIndex, selectionEnd, pattern, prefixIndex, prefix } = mentionCtx.value;
const inputEl = getInputEl();
if (!inputEl)
return;
const inputValue = inputEl.value;
const matchOption = props.options.find((item) => item.value === pattern);
const isWhole = shared.isFunction(props.checkIsWhole) ? props.checkIsWhole(pattern, prefix) : matchOption;
if (isWhole && splitIndex !== -1 && splitIndex + 1 === selectionEnd) {
e.preventDefault();
const newValue = inputValue.slice(0, prefixIndex) + inputValue.slice(splitIndex + 1);
emit(event.UPDATE_MODEL_EVENT, newValue);
const newSelectionEnd = prefixIndex;
vue.nextTick(() => {
inputEl.selectionStart = newSelectionEnd;
inputEl.selectionEnd = newSelectionEnd;
syncDropdownVisible();
});
}
}
}
};
const { wrapperRef, handleFocus, handleBlur } = index$1.useFocusController(hlInputRef, {
afterFocus() {
syncAfterCursorMove();
},
beforeBlur(event) {
var _a;
return (_a = tooltipRef.value) == null ? void 0 : _a.isFocusInsideContent(event);
},
afterBlur() {
visible.value = false;
}
});
const handleInputMouseDown = () => {
syncAfterCursorMove();
};
const handleSelect = (item) => {
if (!mentionCtx.value)
return;
const inputEl = getInputEl();
if (!inputEl)
return;
const inputValue = inputEl.value;
const { split } = props;
const newEndPart = inputValue.slice(mentionCtx.value.end);
const alreadySeparated = newEndPart.startsWith(split);
const newMiddlePart = `${item.value}${alreadySeparated ? "" : split}`;
const newValue = inputValue.slice(0, mentionCtx.value.start) + newMiddlePart + newEndPart;
emit(event.UPDATE_MODEL_EVENT, newValue);
emit("select", item, mentionCtx.value.prefix);
const newSelectionEnd = mentionCtx.value.start + newMiddlePart.length + (alreadySeparated ? 1 : 0);
vue.nextTick(() => {
inputEl.selectionStart = newSelectionEnd;
inputEl.selectionEnd = newSelectionEnd;
inputEl.focus();
syncDropdownVisible();
});
};
const getInputEl = () => {
var _a, _b;
return props.nativeType === "textarea" ? (_a = hlInputRef.value) == null ? void 0 : _a.textarea : (_b = hlInputRef.value) == null ? void 0 : _b.input;
};
const syncAfterCursorMove = () => {
setTimeout(() => {
syncCursor();
syncDropdownVisible();
vue.nextTick(() => {
var _a;
return (_a = tooltipRef.value) == null ? void 0 : _a.updatePopper();
});
}, 0);
};
const syncCursor = () => {
const inputEl = getInputEl();
if (!inputEl)
return;
const caretPosition = helper.getCursorPosition(inputEl);
const inputRect = inputEl.getBoundingClientRect();
const elInputRect = hlInputRef.value.$el.getBoundingClientRect();
cursorStyle.value = {
position: "absolute",
width: 0,
height: `${caretPosition.height}px`,
left: `${caretPosition.left + inputRect.left - elInputRect.left}px`,
top: `${caretPosition.top + inputRect.top - elInputRect.top}px`
};
};
const syncDropdownVisible = () => {
const inputEl = getInputEl();
if (document.activeElement !== inputEl) {
visible.value = false;
return;
}
const { prefix, split } = props;
mentionCtx.value = helper.getMentionCtx(inputEl, prefix, split);
if (mentionCtx.value && mentionCtx.value.splitIndex === -1) {
visible.value = true;
emit("search", mentionCtx.value.pattern, mentionCtx.value.prefix);
return;
}
visible.value = false;
};
expose({
input: hlInputRef,
tooltip: tooltipRef
});
return (_ctx, _cache) => {
return vue.openBlock(), vue.createElementBlock("div", {
ref_key: "wrapperRef",
ref: wrapperRef,
class: vue.normalizeClass(vue.unref(namespace))
}, [
vue.createVNode(vue.unref(index$2.HlInput), vue.mergeProps(vue.mergeProps(vue.unref(passInputProps), _ctx.$attrs), {
ref_key: "hlInputRef",
ref: hlInputRef,
"model-value": _ctx.modelValue,
onInput: handleInputChange,
onKeydown: handleInputKeyDown,
onFocus: vue.unref(handleFocus),
onBlur: vue.unref(handleBlur),
onMousedown: handleInputMouseDown
}), vue.createSlots({ _: 2 }, [
vue.renderList(_ctx.$slots, (_, name) => {
return {
name,
fn: vue.withCtx((slotProps) => [
vue.renderSlot(_ctx.$slots, name, vue.normalizeProps(vue.guardReactiveProps(slotProps)))
])
};
})
]), 1040, ["model-value", "onFocus", "onBlur"]),
vue.createVNode(vue.unref(index$3.HlTooltip), {
ref_key: "tooltipRef",
ref: tooltipRef,
visible: visible.value && (!!vue.unref(filteredOptions).length || _ctx.loading),
"popper-class": ["mention-popper", _ctx.popperClass],
"popper-options": _ctx.popperOptions,
placement: vue.unref(computedPlacement),
"fallback-placements": vue.unref(computedFallbackPlacements),
effect: "light",
pure: "",
offset: _ctx.offset,
"show-arrow": _ctx.showArrow
}, {
default: vue.withCtx(() => [
vue.createElementVNode("div", {
style: vue.normalizeStyle(cursorStyle.value)
}, null, 4)
]),
content: vue.withCtx(() => {
var _a;
return [
vue.createVNode(mentionDropdown["default"], {
ref_key: "dropdownRef",
ref: dropdownRef,
options: vue.unref(filteredOptions),
disabled: _ctx.disabled,
loading: _ctx.loading,
onSelect: handleSelect,
onClick: vue.withModifiers((_a = hlInputRef.value) == null ? void 0 : _a.focus, ["stop"])
}, vue.createSlots({ _: 2 }, [
vue.renderList(_ctx.$slots, (_, name) => {
return {
name,
fn: vue.withCtx((slotProps) => [
vue.renderSlot(_ctx.$slots, name, vue.normalizeProps(vue.guardReactiveProps(slotProps)))
])
};
})
]), 1032, ["options", "disabled", "loading", "onClick"])
];
}),
_: 3
}, 8, ["visible", "popper-class", "popper-options", "placement", "fallback-placements", "offset", "show-arrow"])
], 2);
};
}
});
exports["default"] = _sfc_main;
//# sourceMappingURL=mention.js.map