123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- <template>
- <div>
- <page-metadata title="Admin | Punishments" />
- <div class="container">
- <table class="table is-striped">
- <thead>
- <tr>
- <td>Status</td>
- <td>Type</td>
- <td>Value</td>
- <td>Reason</td>
- <td>Options</td>
- </tr>
- </thead>
- <tbody>
- <tr
- v-for="punishment in sortedPunishments"
- :key="punishment._id"
- >
- <td>
- {{
- punishment.active &&
- new Date(punishment.expiresAt).getTime() >
- Date.now()
- ? "Active"
- : "Inactive"
- }}
- </td>
- <td v-if="punishment.type === 'banUserId'">User ID</td>
- <td v-else>IP Address</td>
- <td v-if="punishment.type === 'banUserId'">
- <user-id-to-username
- :user-id="punishment.value"
- :alt="punishment.value"
- :link="true"
- />
- ({{ punishment.value }})
- </td>
- <td v-else>
- {{ punishment.value }}
- </td>
- <td>{{ punishment.reason }}</td>
- <td>
- <a
- class="button is-primary"
- @click="view(punishment)"
- content="Expand"
- v-tippy
- >
- <i class="material-icons icon-with-button">
- open_in_full
- </i>
- Expand
- </a>
- </td>
- </tr>
- </tbody>
- </table>
- <div class="card is-fullwidth">
- <header class="card-header">
- <p class="card-header-title">Ban an IP</p>
- </header>
- <div class="card-content">
- <div class="content">
- <label class="label">Expires In</label>
- <select v-model="ipBan.expiresAt">
- <option value="1h">1 Hour</option>
- <option value="12h">12 Hours</option>
- <option value="1d">1 Day</option>
- <option value="1w">1 Week</option>
- <option value="1m">1 Month</option>
- <option value="3m">3 Months</option>
- <option value="6m">6 Months</option>
- <option value="1y">1 Year</option>
- </select>
- <label class="label">IP</label>
- <p class="control is-expanded">
- <input
- v-model="ipBan.ip"
- class="input"
- type="text"
- placeholder="IP address (xxx.xxx.xxx.xxx)"
- />
- </p>
- <label class="label">Reason</label>
- <p class="control is-expanded">
- <input
- v-model="ipBan.reason"
- class="input"
- type="text"
- placeholder="Reason"
- />
- </p>
- </div>
- </div>
- <footer class="card-footer">
- <a class="card-footer-item" @click="banIP()" href="#"
- >Ban IP</a
- >
- </footer>
- </div>
- </div>
- <view-punishment
- v-if="modals.viewPunishment"
- :punishment-id="viewingPunishmentId"
- sector="admin"
- />
- </div>
- </template>
- <script>
- import { mapState, mapGetters, mapActions } from "vuex";
- import Toast from "toasters";
- import { defineAsyncComponent } from "vue";
- import ws from "@/ws";
- import UserIdToUsername from "@/components/UserIdToUsername.vue";
- export default {
- components: {
- ViewPunishment: defineAsyncComponent(() =>
- import("@/components/modals/ViewPunishment.vue")
- ),
- UserIdToUsername
- },
- data() {
- return {
- viewingPunishmentId: "",
- punishments: [],
- ipBan: {
- expiresAt: "1h"
- }
- };
- },
- computed: {
- sortedPunishments() {
- // return _.orderBy(this.punishments, -1);
- return this.punishments;
- },
- ...mapState("modalVisibility", {
- modals: state => state.modals
- }),
- ...mapGetters({
- socket: "websockets/getSocket"
- })
- },
- mounted() {
- ws.onConnect(this.init);
- this.socket.on("event:admin.punishment.created", res =>
- this.punishments.push(res.data.punishment)
- );
- },
- methods: {
- view(punishment) {
- // this.viewPunishment(punishment);
- this.viewingPunishmentId = punishment._id;
- this.openModal("viewPunishment");
- },
- banIP() {
- this.socket.dispatch(
- "punishments.banIP",
- this.ipBan.ip,
- this.ipBan.reason,
- this.ipBan.expiresAt,
- res => {
- new Toast(res.message);
- }
- );
- },
- init() {
- this.socket.dispatch("punishments.index", res => {
- if (res.status === "success")
- this.punishments = res.data.punishments;
- });
- this.socket.dispatch("apis.joinAdminRoom", "punishments", () => {});
- },
- ...mapActions("modalVisibility", ["openModal"]),
- ...mapActions("admin/punishments", ["viewPunishment"])
- }
- };
- </script>
- <style lang="scss" scoped>
- .night-mode {
- .table {
- color: var(--light-grey-2);
- background-color: var(--dark-grey-3);
- thead tr {
- background: var(--dark-grey-3);
- td {
- color: var(--white);
- }
- }
- tbody tr:hover {
- background-color: var(--dark-grey-4) !important;
- }
- tbody tr:nth-child(even) {
- background-color: var(--dark-grey-2);
- }
- strong {
- color: var(--light-grey-2);
- }
- }
- .card {
- background: var(--dark-grey-3);
- .card-header {
- box-shadow: 0 1px 2px rgba(10, 10, 10, 0.8);
- }
- p,
- .label {
- color: var(--light-grey-2);
- }
- }
- }
- body {
- font-family: "Hind", sans-serif;
- }
- td {
- vertical-align: middle;
- }
- select {
- margin-bottom: 10px;
- }
- </style>
|