diff --git a/src/App.vue b/src/App.vue index 42bf589..54c2d59 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5323,20 +5323,22 @@ export default {
diff --git a/src/components/ProfileModal.vue b/src/components/ProfileModal.vue index 024ad22..b4dd5e9 100644 --- a/src/components/ProfileModal.vue +++ b/src/components/ProfileModal.vue @@ -31,6 +31,10 @@ export default { banReason: "", banDuration: 24, + // Kick user modal. + kickModalVisible: false, + kickReason: "", + // Alert modal alertModal: { visible: false, @@ -86,6 +90,23 @@ export default { // User's camera is enabled. return (this.user.video & VideoFlag.Active); }, + onlineSince() { + let date = new Date(this.user.loginAt * 1000), + year = date.getFullYear(), + month = String(date.getMonth() + 1).padStart(2, '0'), + day = String(date.getDate()).padStart(2, '0'), + hours = String(date.getHours()).padStart(2, '0'), + minutes = String(date.getMinutes()).padStart(2, '0'), + seconds = String(date.getSeconds()).padStart(2, '0'), + ampm = 'AM'; + if (hours >= 12) { + if (hours > 12) { + hours -= 12; + } + ampm = 'PM'; + } + return `${year}-${month}-${day} @ ${hours}:${minutes}:${seconds} ${ampm}`; + }, }, methods: { refresh() { @@ -175,27 +196,35 @@ export default { }); }, kickUser() { - this.modalConfirm({ - message: "Really kick this user from the chat room?", - title: "Kick User", - }).then(() => { - this.$emit('send-command', `/kick ${this.user.username}`); - - // Also send an admin report to the main website. - this.$emit('report', { - message: { - channel: `n/a`, - username: this.user.username, - at: new Date(), - message: 'User kicked from chat by an admin', - }, - classification: 'User kicked by admin', - comment: `The chat admin @${this.username} has kicked ${this.user.username} from the room!`, - }); - - this.cancel(); + this.kickModalVisible = true; + this.kickReason = ""; + window.requestAnimationFrame(() => { + let reason = document.querySelector("#kick_reason"); + if (reason) { + reason.focus(); + } }); }, + confirmKick() { + this.$emit('send-command', `/kick ${this.user.username}`); + + // Also send an admin report to the main website. + this.$emit('report', { + message: { + channel: `n/a`, + username: this.user.username, + at: new Date(), + message: 'Kick reason: ' + this.kickReason, + }, + classification: 'User kicked by admin', + comment: `The chat admin @${this.username} has kicked ${this.user.username} from the room!\n\n` + + `* Chat admin: ${this.username}\n` + + `* Reason: ${this.kickReason}`, + }); + + this.kickModalVisible = false; + this.cancel(); + }, banUser() { this.banModalVisible = true; this.banReason = ""; @@ -400,6 +429,11 @@ export default { + +
+ Online since: {{ onlineSince }} +
+
@@ -487,6 +521,43 @@ export default {
+ + +