ViewPunishment.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <template>
  2. <div>
  3. <modal title="View Punishment">
  4. <template #body v-if="punishment && punishment._id">
  5. <punishment-item :punishment="punishment" />
  6. </template>
  7. </modal>
  8. </div>
  9. </template>
  10. <script>
  11. import { mapState, mapGetters, mapActions } from "vuex";
  12. import { format, formatDistance, parseISO } from "date-fns";
  13. import Toast from "toasters";
  14. import ws from "@/ws";
  15. import PunishmentItem from "../PunishmentItem.vue";
  16. export default {
  17. components: { PunishmentItem },
  18. props: {
  19. punishmentId: { type: String, default: "" },
  20. sector: { type: String, default: "admin" }
  21. },
  22. data() {
  23. return {
  24. ban: {}
  25. };
  26. },
  27. computed: {
  28. ...mapState("modals/viewPunishment", {
  29. punishment: state => state.punishment
  30. }),
  31. ...mapGetters({
  32. socket: "websockets/getSocket"
  33. })
  34. },
  35. mounted() {
  36. ws.onConnect(this.init);
  37. },
  38. methods: {
  39. init() {
  40. this.socket.dispatch(
  41. `punishments.findOne`,
  42. this.punishmentId,
  43. res => {
  44. if (res.status === "success") {
  45. const { punishment } = res.data;
  46. this.viewPunishment(punishment);
  47. } else {
  48. new Toast("Punishment with that ID not found");
  49. this.closeModal("viewPunishment");
  50. }
  51. }
  52. );
  53. },
  54. ...mapActions("modalVisibility", ["closeModal"]),
  55. ...mapActions("modals/viewPunishment", ["viewPunishment"]),
  56. format,
  57. formatDistance,
  58. parseISO
  59. }
  60. };
  61. </script>