99 lines
3.8 KiB
Vue
Executable File
99 lines
3.8 KiB
Vue
Executable File
<template>
|
|
<TransitionRoot as="template" :show="open">
|
|
<Dialog as="div" static
|
|
class="fixed z-[1000] inset-0 overflow-y-auto" :open="open"
|
|
@close="staticCloseModal"
|
|
>
|
|
<div class="flex items-end justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0">
|
|
<TransitionChild as="template" enter="ease-out duration-300"
|
|
enter-from="opacity-0" enter-to="opacity-100"
|
|
leave="ease-in duration-200" leave-from="opacity-100"
|
|
leave-to="opacity-0"
|
|
>
|
|
<DialogOverlay class="fixed inset-0 bg-indigo-200 bg-opacity-75 transition-opacity" />
|
|
</TransitionChild>
|
|
|
|
<span class="hidden sm:inline-block sm:align-middle sm:h-screen" aria-hidden="true">​</span>
|
|
<TransitionChild as="template" enter="ease-out duration-300"
|
|
enter-from="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95" enter-to="opacity-100 translate-y-0 sm:scale-100"
|
|
leave="ease-in duration-200" leave-from="opacity-100 translate-y-0 sm:scale-100"
|
|
leave-to="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
|
|
>
|
|
<div class="inline-block align-bottom bg-indigo-300 rounded-lg px-4 pt-5 pb-4 text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:align-middle sm:max-w-lg sm:w-full sm:p-6">
|
|
<div class="sm:flex sm:items-start">
|
|
<div class="mx-auto flex-shrink-0 flex items-center justify-center h-12 w-12 rounded-full bg-orange sm:mx-0 sm:h-10 sm:w-10">
|
|
<ExclamationIcon class="h-6 w-6 text-red-600" aria-hidden="true" />
|
|
</div>
|
|
<div class="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left">
|
|
<DialogTitle as="h3" class="text-lg leading-6 font-medium text-gray-light">
|
|
Удалить контент
|
|
</DialogTitle>
|
|
<div class="mt-2">
|
|
<p class="text-sm text-gray-light">
|
|
Вы уверены, что хотите удалить этот контент? Восстановить можно, но будет сложно!
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="mt-5 sm:mt-4 sm:flex sm:flex-row-reverse">
|
|
<button type="button"
|
|
class="mx-3 my-1 transition shadow-none hover:shadow-pink inline-flex items-center px-8 py-3 justify-center text-base rounded-md text-white bg-pink focus:outline-none"
|
|
@click="remove"
|
|
>
|
|
Удалить
|
|
</button>
|
|
|
|
<button type="button"
|
|
class="mx-3 my-1 transition shadow-none hover:shadow-classic inline-flex items-center px-8 py-3 justify-center text-base rounded-md text-white bg-indigo-300 focus:outline-none"
|
|
@click="staticCloseModal"
|
|
>
|
|
Отменить
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</TransitionChild>
|
|
</div>
|
|
</Dialog>
|
|
</TransitionRoot>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
Dialog,
|
|
DialogOverlay,
|
|
DialogTitle,
|
|
TransitionChild,
|
|
TransitionRoot,
|
|
} from '@headlessui/vue'
|
|
import { ExclamationIcon } from '@heroicons/vue/outline'
|
|
|
|
|
|
export default {
|
|
components: {
|
|
Dialog,
|
|
DialogOverlay,
|
|
DialogTitle,
|
|
TransitionChild,
|
|
TransitionRoot,
|
|
ExclamationIcon,
|
|
},
|
|
props: {
|
|
feed_id: Number,
|
|
open: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
emits: ['action'],
|
|
|
|
methods: {
|
|
staticCloseModal() {
|
|
this.$emit('action', false)
|
|
},
|
|
remove() {
|
|
this.$emit('action', true)
|
|
},
|
|
},
|
|
}
|
|
</script>
|