90 lines
2 KiB
Vue
90 lines
2 KiB
Vue
|
|
<template>
|
||
|
|
<v-dialog v-model="showDialog" v-show="room" class="ma-0 pa-0" width="80%">
|
||
|
|
<div class="dialog-content text-center">
|
||
|
|
<template>
|
||
|
|
<v-icon color="black" size="30">lock</v-icon>
|
||
|
|
<h2 class="dialog-title">Purge room?</h2>
|
||
|
|
<div class="dialog-text">
|
||
|
|
This operation will close the room for all members. It cannot be
|
||
|
|
undone.
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<v-container fluid>
|
||
|
|
<v-row cols="12">
|
||
|
|
<v-col cols="6">
|
||
|
|
<v-btn
|
||
|
|
depressed
|
||
|
|
text
|
||
|
|
block
|
||
|
|
class="text-button"
|
||
|
|
@click="showDialog = false"
|
||
|
|
>Cancel</v-btn
|
||
|
|
>
|
||
|
|
</v-col>
|
||
|
|
<v-col cols="6" align="center">
|
||
|
|
<v-btn
|
||
|
|
color="red"
|
||
|
|
depressed
|
||
|
|
block
|
||
|
|
class="filled-button"
|
||
|
|
@click.stop="onPurgeRoom()"
|
||
|
|
>Purge room</v-btn
|
||
|
|
>
|
||
|
|
</v-col>
|
||
|
|
</v-row>
|
||
|
|
</v-container>
|
||
|
|
</div>
|
||
|
|
</v-dialog>
|
||
|
|
</template>
|
||
|
|
<script>
|
||
|
|
import roomInfoMixin from "./roomInfoMixin";
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: "LeaveRoomDialog",
|
||
|
|
mixins: [roomInfoMixin],
|
||
|
|
props: {
|
||
|
|
show: {
|
||
|
|
type: Boolean,
|
||
|
|
default: function () {
|
||
|
|
return false;
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
showDialog: false,
|
||
|
|
};
|
||
|
|
},
|
||
|
|
watch: {
|
||
|
|
show: {
|
||
|
|
handler(newVal, ignoredOldVal) {
|
||
|
|
this.showDialog = newVal;
|
||
|
|
},
|
||
|
|
},
|
||
|
|
showDialog() {
|
||
|
|
if (!this.showDialog) {
|
||
|
|
this.$emit("close");
|
||
|
|
}
|
||
|
|
},
|
||
|
|
},
|
||
|
|
|
||
|
|
methods: {
|
||
|
|
onPurgeRoom() {
|
||
|
|
this.$matrix
|
||
|
|
.purgeRoom(this.room.roomId)
|
||
|
|
.then(() => {
|
||
|
|
this.showDialog = false;
|
||
|
|
console.log("Purged room");
|
||
|
|
this.$navigation.push({ name: "Home", params: { roomId: null } }, -1);
|
||
|
|
})
|
||
|
|
.catch((err) => {
|
||
|
|
console.error("Error purging", err);
|
||
|
|
});
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss">
|
||
|
|
@import "@/assets/css/chat.scss";
|
||
|
|
</style>
|