Punishments.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. <template>
  2. <div>
  3. <page-metadata title="Admin | Punishments" />
  4. <div class="container">
  5. <advanced-table
  6. :column-default="columnDefault"
  7. :columns="columns"
  8. :filters="filters"
  9. data-action="punishments.getData"
  10. name="admin-punishments"
  11. max-width="1200"
  12. >
  13. <template #column-options="slotProps">
  14. <div class="row-options">
  15. <button
  16. class="
  17. button
  18. is-primary
  19. icon-with-button
  20. material-icons
  21. "
  22. @click="view(slotProps.item._id)"
  23. :disabled="slotProps.item.removed"
  24. content="View Punishment"
  25. v-tippy
  26. >
  27. open_in_full
  28. </button>
  29. </div>
  30. </template>
  31. <template #column-status="slotProps">
  32. <span>{{
  33. slotProps.item.active &&
  34. new Date(slotProps.item.expiresAt).getTime() >
  35. Date.now()
  36. ? "Active"
  37. : "Inactive"
  38. }}</span>
  39. </template>
  40. <template #column-type="slotProps">
  41. <span
  42. :title="
  43. slotProps.item.type === 'banUserId'
  44. ? 'User ID'
  45. : 'IP Address'
  46. "
  47. >{{
  48. slotProps.item.type === "banUserId"
  49. ? "User ID"
  50. : "IP Address"
  51. }}</span
  52. >
  53. </template>
  54. <template #column-value="slotProps">
  55. <user-id-to-username
  56. v-if="slotProps.item.type === 'banUserId'"
  57. :user-id="slotProps.item.value"
  58. :alt="slotProps.item.value"
  59. :link="true"
  60. />
  61. <span v-else :title="slotProps.item.value">{{
  62. slotProps.item.value
  63. }}</span>
  64. </template>
  65. <template #column-reason="slotProps">
  66. <span :title="slotProps.item.reason">{{
  67. slotProps.item.reason
  68. }}</span>
  69. </template>
  70. </advanced-table>
  71. <div class="card">
  72. <header class="card-header">
  73. <p>Ban an IP</p>
  74. </header>
  75. <div class="card-content">
  76. <label class="label">Expires In</label>
  77. <select v-model="ipBan.expiresAt">
  78. <option value="1h">1 Hour</option>
  79. <option value="12h">12 Hours</option>
  80. <option value="1d">1 Day</option>
  81. <option value="1w">1 Week</option>
  82. <option value="1m">1 Month</option>
  83. <option value="3m">3 Months</option>
  84. <option value="6m">6 Months</option>
  85. <option value="1y">1 Year</option>
  86. </select>
  87. <label class="label">IP</label>
  88. <p class="control is-expanded">
  89. <input
  90. v-model="ipBan.ip"
  91. class="input"
  92. type="text"
  93. placeholder="IP address (xxx.xxx.xxx.xxx)"
  94. />
  95. </p>
  96. <label class="label">Reason</label>
  97. <p class="control is-expanded">
  98. <input
  99. v-model="ipBan.reason"
  100. class="input"
  101. type="text"
  102. placeholder="Reason"
  103. />
  104. </p>
  105. <button class="button is-primary" @click="banIP()">
  106. Ban IP
  107. </button>
  108. </div>
  109. </div>
  110. </div>
  111. <view-punishment
  112. v-if="modals.viewPunishment"
  113. :punishment-id="viewingPunishmentId"
  114. sector="admin"
  115. />
  116. </div>
  117. </template>
  118. <script>
  119. import { mapState, mapGetters, mapActions } from "vuex";
  120. import Toast from "toasters";
  121. import { defineAsyncComponent } from "vue";
  122. // import ws from "@/ws";
  123. import AdvancedTable from "@/components/AdvancedTable.vue";
  124. import UserIdToUsername from "@/components/UserIdToUsername.vue";
  125. export default {
  126. components: {
  127. ViewPunishment: defineAsyncComponent(() =>
  128. import("@/components/modals/ViewPunishment.vue")
  129. ),
  130. AdvancedTable,
  131. UserIdToUsername
  132. },
  133. data() {
  134. return {
  135. viewingPunishmentId: "",
  136. ipBan: {
  137. expiresAt: "1h"
  138. },
  139. columnDefault: {
  140. sortable: true,
  141. hidable: true,
  142. defaultVisibility: "shown",
  143. draggable: true,
  144. resizable: true,
  145. minWidth: 150,
  146. maxWidth: 600
  147. },
  148. columns: [
  149. {
  150. name: "options",
  151. displayName: "Edit",
  152. properties: ["_id"],
  153. sortable: false,
  154. hidable: false,
  155. resizable: false,
  156. minWidth: 51,
  157. defaultWidth: 51
  158. },
  159. {
  160. name: "status",
  161. displayName: "Status",
  162. properties: ["active", "expiresAt"],
  163. sortable: false,
  164. defaultWidth: 150
  165. },
  166. {
  167. name: "type",
  168. displayName: "Type",
  169. properties: ["type"],
  170. sortProperty: "type"
  171. },
  172. {
  173. name: "value",
  174. displayName: "Value",
  175. properties: ["value"],
  176. sortProperty: "value",
  177. defaultWidth: 150
  178. },
  179. {
  180. name: "reason",
  181. displayName: "Reason",
  182. properties: ["reason"],
  183. sortProperty: "reason"
  184. }
  185. ],
  186. filters: [
  187. // {
  188. // name: "status",
  189. // displayName: "Status",
  190. // property: "status",
  191. // filterTypes: ["contains", "exact", "regex"],
  192. // defaultFilterType: "contains"
  193. // },
  194. {
  195. name: "type",
  196. displayName: "Type",
  197. property: "type",
  198. filterTypes: ["contains", "exact", "regex"],
  199. defaultFilterType: "contains"
  200. },
  201. {
  202. name: "value",
  203. displayName: "Value",
  204. property: "value",
  205. filterTypes: ["contains", "exact", "regex"],
  206. defaultFilterType: "contains"
  207. },
  208. {
  209. name: "reason",
  210. displayName: "Reason",
  211. property: "reason",
  212. filterTypes: ["contains", "exact", "regex"],
  213. defaultFilterType: "contains"
  214. }
  215. ]
  216. };
  217. },
  218. computed: {
  219. sortedPunishments() {
  220. return this.punishments;
  221. },
  222. ...mapState("modalVisibility", {
  223. modals: state => state.modals
  224. }),
  225. ...mapGetters({
  226. socket: "websockets/getSocket"
  227. })
  228. },
  229. mounted() {
  230. // ws.onConnect(this.init);
  231. // this.socket.on("event:admin.punishment.created", res =>
  232. // this.punishments.push(res.data.punishment)
  233. // );
  234. },
  235. methods: {
  236. view(punishmentId) {
  237. this.viewingPunishmentId = punishmentId;
  238. this.openModal("viewPunishment");
  239. },
  240. banIP() {
  241. this.socket.dispatch(
  242. "punishments.banIP",
  243. this.ipBan.ip,
  244. this.ipBan.reason,
  245. this.ipBan.expiresAt,
  246. res => {
  247. new Toast(res.message);
  248. }
  249. );
  250. },
  251. // init() {
  252. // this.socket.dispatch("apis.joinAdminRoom", "punishments", () => {});
  253. // },
  254. ...mapActions("modalVisibility", ["openModal"]),
  255. ...mapActions("admin/punishments", ["viewPunishment"])
  256. }
  257. };
  258. </script>
  259. <style lang="scss" scoped>
  260. .night-mode {
  261. .card {
  262. background: var(--dark-grey-3);
  263. p,
  264. .label {
  265. color: var(--light-grey-2);
  266. }
  267. }
  268. }
  269. .card {
  270. display: flex;
  271. flex-grow: 1;
  272. flex-direction: column;
  273. padding: 20px;
  274. margin: 10px 0;
  275. border-radius: 5px;
  276. background-color: var(--white);
  277. color: var(--dark-grey);
  278. box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
  279. .card-header {
  280. font-weight: 700;
  281. padding-bottom: 10px;
  282. }
  283. .button.is-primary {
  284. width: 100%;
  285. }
  286. select {
  287. margin-bottom: 10px;
  288. }
  289. }
  290. </style>