Punishments.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. <template>
  2. <div>
  3. <page-metadata title="Admin | Punishments" />
  4. <div class="container">
  5. <table class="table is-striped">
  6. <thead>
  7. <tr>
  8. <td>Status</td>
  9. <td>Type</td>
  10. <td>Value</td>
  11. <td>Reason</td>
  12. <td>Options</td>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <tr
  17. v-for="punishment in sortedPunishments"
  18. :key="punishment._id"
  19. >
  20. <td>
  21. {{
  22. punishment.active &&
  23. new Date(punishment.expiresAt).getTime() >
  24. Date.now()
  25. ? "Active"
  26. : "Inactive"
  27. }}
  28. </td>
  29. <td v-if="punishment.type === 'banUserId'">User ID</td>
  30. <td v-else>IP Address</td>
  31. <td v-if="punishment.type === 'banUserId'">
  32. <user-id-to-username
  33. :user-id="punishment.value"
  34. :alt="punishment.value"
  35. :link="true"
  36. />
  37. ({{ punishment.value }})
  38. </td>
  39. <td v-else>
  40. {{ punishment.value }}
  41. </td>
  42. <td>{{ punishment.reason }}</td>
  43. <td>
  44. <a
  45. class="button is-primary"
  46. @click="view(punishment)"
  47. content="Expand"
  48. v-tippy
  49. >
  50. <i class="material-icons icon-with-button">
  51. open_in_full
  52. </i>
  53. Expand
  54. </a>
  55. </td>
  56. </tr>
  57. </tbody>
  58. </table>
  59. <div class="card is-fullwidth">
  60. <header class="card-header">
  61. <p class="card-header-title">Ban an IP</p>
  62. </header>
  63. <div class="card-content">
  64. <div class="content">
  65. <label class="label">Expires In</label>
  66. <select v-model="ipBan.expiresAt">
  67. <option value="1h">1 Hour</option>
  68. <option value="12h">12 Hours</option>
  69. <option value="1d">1 Day</option>
  70. <option value="1w">1 Week</option>
  71. <option value="1m">1 Month</option>
  72. <option value="3m">3 Months</option>
  73. <option value="6m">6 Months</option>
  74. <option value="1y">1 Year</option>
  75. </select>
  76. <label class="label">IP</label>
  77. <p class="control is-expanded">
  78. <input
  79. v-model="ipBan.ip"
  80. class="input"
  81. type="text"
  82. placeholder="IP address (xxx.xxx.xxx.xxx)"
  83. />
  84. </p>
  85. <label class="label">Reason</label>
  86. <p class="control is-expanded">
  87. <input
  88. v-model="ipBan.reason"
  89. class="input"
  90. type="text"
  91. placeholder="Reason"
  92. />
  93. </p>
  94. </div>
  95. </div>
  96. <footer class="card-footer">
  97. <a class="card-footer-item" @click="banIP()" href="#"
  98. >Ban IP</a
  99. >
  100. </footer>
  101. </div>
  102. </div>
  103. <view-punishment
  104. v-if="modals.viewPunishment"
  105. :punishment-id="viewingPunishmentId"
  106. sector="admin"
  107. />
  108. </div>
  109. </template>
  110. <script>
  111. import { mapState, mapGetters, mapActions } from "vuex";
  112. import Toast from "toasters";
  113. import { defineAsyncComponent } from "vue";
  114. import ws from "@/ws";
  115. import UserIdToUsername from "@/components/UserIdToUsername.vue";
  116. export default {
  117. components: {
  118. ViewPunishment: defineAsyncComponent(() =>
  119. import("@/components/modals/ViewPunishment.vue")
  120. ),
  121. UserIdToUsername
  122. },
  123. data() {
  124. return {
  125. viewingPunishmentId: "",
  126. punishments: [],
  127. ipBan: {
  128. expiresAt: "1h"
  129. }
  130. };
  131. },
  132. computed: {
  133. sortedPunishments() {
  134. // return _.orderBy(this.punishments, -1);
  135. return this.punishments;
  136. },
  137. ...mapState("modalVisibility", {
  138. modals: state => state.modals
  139. }),
  140. ...mapGetters({
  141. socket: "websockets/getSocket"
  142. })
  143. },
  144. mounted() {
  145. ws.onConnect(this.init);
  146. this.socket.on("event:admin.punishment.created", res =>
  147. this.punishments.push(res.data.punishment)
  148. );
  149. },
  150. methods: {
  151. view(punishment) {
  152. // this.viewPunishment(punishment);
  153. this.viewingPunishmentId = punishment._id;
  154. this.openModal("viewPunishment");
  155. },
  156. banIP() {
  157. this.socket.dispatch(
  158. "punishments.banIP",
  159. this.ipBan.ip,
  160. this.ipBan.reason,
  161. this.ipBan.expiresAt,
  162. res => {
  163. new Toast(res.message);
  164. }
  165. );
  166. },
  167. init() {
  168. this.socket.dispatch("punishments.index", res => {
  169. if (res.status === "success")
  170. this.punishments = res.data.punishments;
  171. });
  172. this.socket.dispatch("apis.joinAdminRoom", "punishments", () => {});
  173. },
  174. ...mapActions("modalVisibility", ["openModal"]),
  175. ...mapActions("admin/punishments", ["viewPunishment"])
  176. }
  177. };
  178. </script>
  179. <style lang="scss" scoped>
  180. .night-mode {
  181. .table {
  182. color: var(--light-grey-2);
  183. background-color: var(--dark-grey-3);
  184. thead tr {
  185. background: var(--dark-grey-3);
  186. td {
  187. color: var(--white);
  188. }
  189. }
  190. tbody tr:hover {
  191. background-color: var(--dark-grey-4) !important;
  192. }
  193. tbody tr:nth-child(even) {
  194. background-color: var(--dark-grey-2);
  195. }
  196. strong {
  197. color: var(--light-grey-2);
  198. }
  199. }
  200. .card {
  201. background: var(--dark-grey-3);
  202. .card-header {
  203. box-shadow: 0 1px 2px rgba(10, 10, 10, 0.8);
  204. }
  205. p,
  206. .label {
  207. color: var(--light-grey-2);
  208. }
  209. }
  210. }
  211. body {
  212. font-family: "Hind", sans-serif;
  213. }
  214. td {
  215. vertical-align: middle;
  216. }
  217. select {
  218. margin-bottom: 10px;
  219. }
  220. </style>