element-plus
Version:
A Component Library for Vue 3
177 lines (174 loc) • 6.37 kB
JavaScript
import { popconfirmEmits, popconfirmProps } from './popconfirm.mjs';
import { defineComponent, ref, computed, unref, createBlock, openBlock, mergeProps, withCtx, renderSlot, createCommentVNode, createElementVNode, normalizeClass, createTextVNode, normalizeStyle, resolveDynamicComponent, toDisplayString, createVNode } from 'vue';
import { ElButton } from '../../button/index.mjs';
import { ElIcon } from '../../icon/index.mjs';
import { ElTooltip } from '../../tooltip/index.mjs';
import { useLocale } from '../../../hooks/use-locale/index.mjs';
import { useNamespace } from '../../../hooks/use-namespace/index.mjs';
import { addUnit } from '../../../utils/dom/style.mjs';
var _sfc_main = /* @__PURE__ */ defineComponent({
...{
name: "ElPopconfirm"
},
__name: "popconfirm",
props: popconfirmProps,
emits: popconfirmEmits,
setup(__props, { expose: __expose, emit: __emit }) {
const props = __props;
const emit = __emit;
const { t } = useLocale();
const ns = useNamespace("popconfirm");
const tooltipRef = ref();
const rootRef = ref();
const popperRef = computed(() => {
var _a;
return (_a = unref(tooltipRef)) == null ? void 0 : _a.popperRef;
});
const showPopper = () => {
var _a, _b;
(_b = (_a = rootRef.value) == null ? void 0 : _a.focus) == null ? void 0 : _b.call(_a);
};
const hidePopper = () => {
var _a, _b;
(_b = (_a = tooltipRef.value) == null ? void 0 : _a.onClose) == null ? void 0 : _b.call(_a);
};
const style = computed(() => {
return {
width: addUnit(props.width)
};
});
const confirm = (e) => {
emit("confirm", e);
hidePopper();
};
const cancel = (e) => {
emit("cancel", e);
hidePopper();
};
const finalConfirmButtonText = computed(
() => props.confirmButtonText || t("el.popconfirm.confirmButtonText")
);
const finalCancelButtonText = computed(
() => props.cancelButtonText || t("el.popconfirm.cancelButtonText")
);
__expose({
popperRef,
hide: hidePopper
});
return (_ctx, _cache) => {
return openBlock(), createBlock(unref(ElTooltip), mergeProps({
ref_key: "tooltipRef",
ref: tooltipRef,
trigger: "click",
effect: __props.effect
}, _ctx.$attrs, {
"virtual-triggering": __props.virtualTriggering,
"virtual-ref": __props.virtualRef,
"popper-class": `${unref(ns).namespace.value}-popover`,
"popper-style": style.value,
teleported: __props.teleported,
"fallback-placements": ["bottom", "top", "right", "left"],
"hide-after": __props.hideAfter,
persistent: __props.persistent,
loop: "",
onShow: showPopper
}), {
content: withCtx(() => [
createElementVNode(
"div",
{
ref_key: "rootRef",
ref: rootRef,
tabindex: "-1",
class: normalizeClass(unref(ns).b())
},
[
createElementVNode(
"div",
{
class: normalizeClass(unref(ns).e("main"))
},
[
!__props.hideIcon && __props.icon ? (openBlock(), createBlock(unref(ElIcon), {
key: 0,
class: normalizeClass(unref(ns).e("icon")),
style: normalizeStyle({ color: __props.iconColor })
}, {
default: withCtx(() => [
(openBlock(), createBlock(resolveDynamicComponent(__props.icon)))
]),
_: 1
/* STABLE */
}, 8, ["class", "style"])) : createCommentVNode("v-if", true),
createTextVNode(
" " + toDisplayString(__props.title),
1
/* TEXT */
)
],
2
/* CLASS */
),
createElementVNode(
"div",
{
class: normalizeClass(unref(ns).e("action"))
},
[
renderSlot(_ctx.$slots, "actions", {
confirm,
cancel
}, () => [
createVNode(unref(ElButton), {
size: "small",
type: __props.cancelButtonType === "text" ? "" : __props.cancelButtonType,
text: __props.cancelButtonType === "text",
onClick: cancel
}, {
default: withCtx(() => [
createTextVNode(
toDisplayString(finalCancelButtonText.value),
1
/* TEXT */
)
]),
_: 1
/* STABLE */
}, 8, ["type", "text"]),
createVNode(unref(ElButton), {
size: "small",
type: __props.confirmButtonType === "text" ? "" : __props.confirmButtonType,
text: __props.confirmButtonType === "text",
onClick: confirm
}, {
default: withCtx(() => [
createTextVNode(
toDisplayString(finalConfirmButtonText.value),
1
/* TEXT */
)
]),
_: 1
/* STABLE */
}, 8, ["type", "text"])
])
],
2
/* CLASS */
)
],
2
/* CLASS */
)
]),
default: withCtx(() => [
_ctx.$slots.reference ? renderSlot(_ctx.$slots, "reference", { key: 0 }) : createCommentVNode("v-if", true)
]),
_: 3
/* FORWARDED */
}, 16, ["effect", "virtual-triggering", "virtual-ref", "popper-class", "popper-style", "teleported", "hide-after", "persistent"]);
};
}
});
export { _sfc_main as default };
//# sourceMappingURL=popconfirm.vue2.mjs.map