Kick modal with reason + Show logged-in date in profile card
This commit is contained in:
parent
f88672559d
commit
ce47fc18c2
14
src/App.vue
14
src/App.vue
|
@ -5323,20 +5323,22 @@ export default {
|
||||||
<div class="column">
|
<div class="column">
|
||||||
<div class="select is-small is-fullwidth">
|
<div class="select is-small is-fullwidth">
|
||||||
<select v-model="whoSort">
|
<select v-model="whoSort">
|
||||||
<optgroup label="Users">
|
<optgroup label="By Name">
|
||||||
<option value="a-z">Username (a-z)</option>
|
<option value="a-z">Username (a-z)</option>
|
||||||
<option value="z-a">Username (z-a)</option>
|
<option value="z-a">Username (z-a)</option>
|
||||||
<option value="login">Login Time</option>
|
|
||||||
<option value="status">Status</option>
|
|
||||||
<option value="emoji">Emoji/country flag</option>
|
|
||||||
<option value="gender">Gender</option>
|
|
||||||
<option value="op">☮ Operators</option>
|
|
||||||
</optgroup>
|
</optgroup>
|
||||||
<optgroup label="Webcam Status">
|
<optgroup label="Webcam Status">
|
||||||
<option value="broadcasting">Broadcasting</option>
|
<option value="broadcasting">Broadcasting</option>
|
||||||
<option value="nsfw" v-show="config.permitNSFW">Red cameras</option>
|
<option value="nsfw" v-show="config.permitNSFW">Red cameras</option>
|
||||||
<option value="blue" v-show="config.permitNSFW">Blue cameras</option>
|
<option value="blue" v-show="config.permitNSFW">Blue cameras</option>
|
||||||
</optgroup>
|
</optgroup>
|
||||||
|
<optgroup label="Other">
|
||||||
|
<option value="login">Login Time</option>
|
||||||
|
<option value="status">Status</option>
|
||||||
|
<option value="emoji">Emoji/country flag</option>
|
||||||
|
<option value="gender">Gender</option>
|
||||||
|
<option value="op">☮ Operators</option>
|
||||||
|
</optgroup>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -31,6 +31,10 @@ export default {
|
||||||
banReason: "",
|
banReason: "",
|
||||||
banDuration: 24,
|
banDuration: 24,
|
||||||
|
|
||||||
|
// Kick user modal.
|
||||||
|
kickModalVisible: false,
|
||||||
|
kickReason: "",
|
||||||
|
|
||||||
// Alert modal
|
// Alert modal
|
||||||
alertModal: {
|
alertModal: {
|
||||||
visible: false,
|
visible: false,
|
||||||
|
@ -86,6 +90,23 @@ export default {
|
||||||
// User's camera is enabled.
|
// User's camera is enabled.
|
||||||
return (this.user.video & VideoFlag.Active);
|
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: {
|
methods: {
|
||||||
refresh() {
|
refresh() {
|
||||||
|
@ -175,10 +196,16 @@ export default {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
kickUser() {
|
kickUser() {
|
||||||
this.modalConfirm({
|
this.kickModalVisible = true;
|
||||||
message: "Really kick this user from the chat room?",
|
this.kickReason = "";
|
||||||
title: "Kick User",
|
window.requestAnimationFrame(() => {
|
||||||
}).then(() => {
|
let reason = document.querySelector("#kick_reason");
|
||||||
|
if (reason) {
|
||||||
|
reason.focus();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
confirmKick() {
|
||||||
this.$emit('send-command', `/kick ${this.user.username}`);
|
this.$emit('send-command', `/kick ${this.user.username}`);
|
||||||
|
|
||||||
// Also send an admin report to the main website.
|
// Also send an admin report to the main website.
|
||||||
|
@ -187,14 +214,16 @@ export default {
|
||||||
channel: `n/a`,
|
channel: `n/a`,
|
||||||
username: this.user.username,
|
username: this.user.username,
|
||||||
at: new Date(),
|
at: new Date(),
|
||||||
message: 'User kicked from chat by an admin',
|
message: 'Kick reason: ' + this.kickReason,
|
||||||
},
|
},
|
||||||
classification: 'User kicked by admin',
|
classification: 'User kicked by admin',
|
||||||
comment: `The chat admin @${this.username} has kicked ${this.user.username} from the room!`,
|
comment: `The chat admin @${this.username} has kicked ${this.user.username} from the room!\n\n` +
|
||||||
|
`* Chat admin: <a href="/u/${this.username}">${this.username}</a>\n` +
|
||||||
|
`* Reason: ${this.kickReason}`,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.kickModalVisible = false;
|
||||||
this.cancel();
|
this.cancel();
|
||||||
});
|
|
||||||
},
|
},
|
||||||
banUser() {
|
banUser() {
|
||||||
this.banModalVisible = true;
|
this.banModalVisible = true;
|
||||||
|
@ -400,6 +429,11 @@ export default {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Login At -->
|
||||||
|
<div class="mt-3 is-size-7">
|
||||||
|
<em>Online since: {{ onlineSince }}</em>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Profile Fields spinner/error -->
|
<!-- Profile Fields spinner/error -->
|
||||||
<div class="notification is-info is-light p-2 my-2" v-if="busy">
|
<div class="notification is-info is-light p-2 my-2" v-if="busy">
|
||||||
<i class="fa fa-spinner fa-spin mr-2"></i>
|
<i class="fa fa-spinner fa-spin mr-2"></i>
|
||||||
|
@ -487,6 +521,43 @@ export default {
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Kick User Modal (for chat admins) -->
|
||||||
|
<div class="modal" :class="{ 'is-active': kickModalVisible }">
|
||||||
|
<div class="modal-background" @click="kickModalVisible = false"></div>
|
||||||
|
<div class="modal-content">
|
||||||
|
<form @submit.prevent="confirmKick">
|
||||||
|
<div class="card">
|
||||||
|
<header class="card-header has-background-danger">
|
||||||
|
<p class="card-header-title">Kick User</p>
|
||||||
|
</header>
|
||||||
|
<div class="card-content">
|
||||||
|
<div class="field">
|
||||||
|
<label class="label" for="kick_reason">Reason for the kick:</label>
|
||||||
|
<input type="text" class="input"
|
||||||
|
id="kick_reason"
|
||||||
|
placeholder="Please describe why this user will be kicked from the room."
|
||||||
|
v-model="kickReason"
|
||||||
|
required>
|
||||||
|
<p class="help">
|
||||||
|
This reason is NOT shown to the kicked user, but will be sent to the main website
|
||||||
|
in an admin report so that it may be documented in this user's history.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="field has-text-centered">
|
||||||
|
<button type="submit" class="button is-danger">
|
||||||
|
Confirm Kick
|
||||||
|
</button>
|
||||||
|
<a href="#" @click.prevent="kickModalVisible = false" class="button ml-2">
|
||||||
|
Cancel
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user