mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 06:34:21 +00:00
dd05ee3a65
Co-authored-by: Eric Nemchik <eric@nemchik.com> Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
102 lines
2 KiB
Vue
102 lines
2 KiB
Vue
<template>
|
|
<div id="confirm-dialog-overlay" :class="{opened: !!data}">
|
|
<div v-if="data !== null" id="confirm-dialog">
|
|
<div class="confirm-text">
|
|
<div class="confirm-text-title">{{ data?.title }}</div>
|
|
<p>{{ data?.text }}</p>
|
|
</div>
|
|
<div class="confirm-buttons">
|
|
<button class="btn btn-cancel" @click="close(false)">Cancel</button>
|
|
<button class="btn btn-danger" @click="close(true)">{{ data?.button }}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
#confirm-dialog {
|
|
background: var(--body-bg-color);
|
|
color: #fff;
|
|
margin: 10px;
|
|
border-radius: 5px;
|
|
max-width: 500px;
|
|
}
|
|
|
|
#confirm-dialog .confirm-text {
|
|
padding: 15px;
|
|
user-select: text;
|
|
}
|
|
|
|
#confirm-dialog .confirm-text-title {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#confirm-dialog .confirm-buttons {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
padding: 15px;
|
|
background: rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
#confirm-dialog .confirm-buttons .btn {
|
|
margin-bottom: 0;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
#confirm-dialog .confirm-buttons .btn-cancel {
|
|
border-color: transparent;
|
|
}
|
|
</style>
|
|
|
|
<script lang="ts">
|
|
import eventbus from "../js/eventbus";
|
|
import {defineComponent, onMounted, onUnmounted, ref} from "vue";
|
|
|
|
type ConfirmDialogData = {
|
|
title: string;
|
|
text: string;
|
|
button: string;
|
|
};
|
|
|
|
type ConfirmDialogCallback = {
|
|
(confirmed: boolean): void;
|
|
};
|
|
|
|
export default defineComponent({
|
|
name: "ConfirmDialog",
|
|
setup() {
|
|
const data = ref<ConfirmDialogData>();
|
|
const callback = ref<ConfirmDialogCallback>();
|
|
|
|
const open = (incoming: ConfirmDialogData, cb: ConfirmDialogCallback) => {
|
|
data.value = incoming;
|
|
callback.value = cb;
|
|
};
|
|
|
|
const close = (result: boolean) => {
|
|
data.value = undefined;
|
|
|
|
if (callback.value) {
|
|
callback.value(!!result);
|
|
}
|
|
};
|
|
|
|
onMounted(() => {
|
|
eventbus.on("escapekey", close);
|
|
eventbus.on("confirm-dialog", open);
|
|
});
|
|
|
|
onUnmounted(() => {
|
|
eventbus.off("escapekey", close);
|
|
eventbus.off("confirm-dialog", open);
|
|
});
|
|
|
|
return {
|
|
data,
|
|
close,
|
|
};
|
|
},
|
|
});
|
|
</script>
|