mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
51 lines
1.2 KiB
Vue
51 lines
1.2 KiB
Vue
<template>
|
|
<div class="modal">
|
|
<div @click="handleClick">
|
|
<div class="modal-container">
|
|
<button @click="$emit('close')"><font-awesome-icon icon="xmark" /></button>
|
|
<slot></slot>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
mounted() {
|
|
window.addEventListener("keydown", this.handleKeyDown);
|
|
},
|
|
unmounted() {
|
|
window.removeEventListener("keydown", this.handleKeyDown);
|
|
},
|
|
methods: {
|
|
handleKeyDown(event) {
|
|
if (event.code === "Escape") {
|
|
this.$emit("close");
|
|
} else return;
|
|
event.preventDefault();
|
|
},
|
|
handleClick(event) {
|
|
if (event.target !== event.currentTarget) return;
|
|
this.$emit("close");
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.modal {
|
|
@apply fixed z-50 top-0 left-0 w-full h-full bg-dark-900 bg-opacity-80 transition-opacity table;
|
|
}
|
|
|
|
.modal > div {
|
|
@apply table-cell align-middle;
|
|
}
|
|
|
|
.modal-container {
|
|
@apply w-min m-auto px-8 bg-dark-700 p-6 rounded-xl min-w-[20vw] relative;
|
|
}
|
|
|
|
.modal-container > button {
|
|
@apply absolute right-8 top-6;
|
|
}
|
|
</style>
|