feat: 新增二次确认按钮组件

This commit is contained in:
xlsea 2025-04-24 18:11:25 +08:00
parent 2bdfb57bbd
commit ed875f7786

View File

@ -0,0 +1,85 @@
<script setup lang="ts">
import { computed, useAttrs } from 'vue';
import type { ButtonProps, PopoverPlacement } from 'naive-ui';
import { twMerge } from 'tailwind-merge';
defineOptions({
name: 'ButtonPopconfirm',
inheritAttrs: false
});
interface Props {
/** Button class */
class?: string;
/** Iconify icon name */
icon?: string;
/** Local icon name */
localIcon?: string;
/** Tooltip content */
tooltipContent?: string;
/** Tooltip placement */
tooltipPlacement?: PopoverPlacement;
/** Popconfirm content */
popconfirmContent?: string;
zIndex?: number;
quaternary?: boolean;
[key: string]: any;
}
const props = withDefaults(defineProps<Props>(), {
class: '',
icon: '',
localIcon: '',
tooltipContent: '',
tooltipPlacement: 'bottom',
popconfirmContent: '',
zIndex: 98,
quaternary: true
});
interface Emits {
(e: 'positiveClick'): void;
}
const emit = defineEmits<Emits>();
const DEFAULT_CLASS = 'h-[36px] text-icon';
const attrs: ButtonProps = useAttrs();
const quaternary = computed(() => {
return !(attrs.text || attrs.dashed || attrs.ghost) && props.quaternary;
});
const handlePositiveClick = () => {
emit('positiveClick');
};
</script>
<template>
<NTooltip :placement="tooltipPlacement" :z-index="zIndex" :disabled="!tooltipContent">
<template #trigger>
<NPopconfirm :disabled="!popconfirmContent" @positive-click="handlePositiveClick">
{{ popconfirmContent }}
<template #trigger>
<NButton
:quaternary="quaternary"
:class="twMerge(DEFAULT_CLASS, props.class)"
:focusable="false"
v-bind="attrs"
>
<div class="flex-center gap-8px">
<slot>
<SvgIcon v-if="icon" :icon="icon" />
<SvgIcon v-else :local-icon="localIcon" />
</slot>
</div>
</NButton>
</template>
</NPopconfirm>
</template>
{{ tooltipContent }}
</NTooltip>
</template>
<style scoped></style>