mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-06 05:57:49 +00:00
82 lines
1.8 KiB
Vue
82 lines
1.8 KiB
Vue
<script setup>
|
|
import { useToggle } from '@vueuse/core';
|
|
import { vOnClickOutside } from '@vueuse/components';
|
|
|
|
import Button from 'dashboard/components-next/button/Button.vue';
|
|
import InlineInput from 'dashboard/components-next/inline-input/InlineInput.vue';
|
|
|
|
defineProps({
|
|
placeholder: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
buttonLabel: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
confirmLabel: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
cancelLabel: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
});
|
|
|
|
const emit = defineEmits(['add']);
|
|
|
|
const modelValue = defineModel({
|
|
type: String,
|
|
default: '',
|
|
});
|
|
|
|
const [showPopover, togglePopover] = useToggle();
|
|
const onClickAdd = () => {
|
|
if (!modelValue.value?.trim()) return;
|
|
emit('add', modelValue.value.trim());
|
|
modelValue.value = '';
|
|
togglePopover(false);
|
|
};
|
|
|
|
const onClickCancel = () => {
|
|
togglePopover(false);
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
v-on-click-outside="() => togglePopover(false)"
|
|
class="inline-flex relative"
|
|
>
|
|
<Button
|
|
:label="buttonLabel"
|
|
sm
|
|
slate
|
|
class="flex-shrink-0"
|
|
@click="togglePopover(!showPopover)"
|
|
/>
|
|
<div
|
|
v-if="showPopover"
|
|
class="absolute w-[26.5rem] top-9 z-50 ltr:left-0 rtl:right-0 flex flex-col gap-5 bg-n-alpha-3 backdrop-blur-[100px] p-4 rounded-xl border border-n-weak shadow-md"
|
|
>
|
|
<InlineInput
|
|
v-model="modelValue"
|
|
:placeholder="placeholder"
|
|
@keyup.enter="onClickAdd"
|
|
/>
|
|
<div class="flex gap-2 justify-between">
|
|
<Button
|
|
:label="cancelLabel"
|
|
sm
|
|
link
|
|
slate
|
|
class="h-10 hover:!no-underline"
|
|
@click="onClickCancel"
|
|
/>
|
|
<Button :label="confirmLabel" sm @click="onClickAdd" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|