ViewPunishment.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <template>
  2. <div>
  3. <modal title="View Punishment">
  4. <div slot="body" v-if="punishment && punishment._id">
  5. <article class="message">
  6. <div class="message-body">
  7. <strong>Type:</strong>
  8. {{ punishment.type }}
  9. <br />
  10. <strong>Value:</strong>
  11. {{ punishment.value }}
  12. <br />
  13. <strong>Reason:</strong>
  14. {{ punishment.reason }}
  15. <br />
  16. <strong>Active:</strong>
  17. {{ punishment.active }}
  18. <br />
  19. <strong>Expires at:</strong>
  20. {{
  21. format(
  22. parseISO(punishment.expiresAt),
  23. "MMMM do yyyy, h:mm:ss a"
  24. )
  25. }}
  26. ({{
  27. formatDistance(
  28. parseISO(punishment.expiresAt),
  29. new Date(),
  30. { addSuffix: true }
  31. )
  32. }})
  33. <br />
  34. <strong>Punished at:</strong>
  35. {{
  36. format(
  37. parseISO(punishment.punishedAt),
  38. "MMMM do yyyy, h:mm:ss a"
  39. )
  40. }}
  41. ({{
  42. formatDistance(
  43. parseISO(punishment.punishedAt),
  44. new Date(),
  45. { addSuffix: true }
  46. )
  47. }})
  48. <br />
  49. <strong>Punished by:</strong>
  50. <user-id-to-username
  51. :user-id="punishment.punishedBy"
  52. :alt="punishment.punishedBy"
  53. />
  54. <br />
  55. </div>
  56. </article>
  57. </div>
  58. <div slot="footer">
  59. <button
  60. class="button is-danger"
  61. @click="
  62. closeModal({
  63. sector,
  64. modal: 'viewPunishment'
  65. })
  66. "
  67. >
  68. <span>&nbsp;Close</span>
  69. </button>
  70. </div>
  71. </modal>
  72. </div>
  73. </template>
  74. <script>
  75. import { mapState, mapActions } from "vuex";
  76. import { format, formatDistance, parseISO } from "date-fns"; // eslint-disable-line no-unused-vars
  77. import Toast from "toasters";
  78. import io from "../../io";
  79. import Modal from "../../components/Modal.vue";
  80. import UserIdToUsername from "../../components/common/UserIdToUsername.vue";
  81. export default {
  82. components: { Modal, UserIdToUsername },
  83. props: {
  84. punishmentId: { type: String, default: "" },
  85. sector: { type: String, default: "admin" }
  86. },
  87. data() {
  88. return {
  89. ban: {}
  90. };
  91. },
  92. computed: {
  93. ...mapState("modals/viewPunishment", {
  94. punishment: state => state.punishment
  95. })
  96. },
  97. mounted() {
  98. io.getSocket(socket => {
  99. this.socket = socket;
  100. this.socket.emit(
  101. `punishments.getPunishmentById`,
  102. this.punishmentId,
  103. res => {
  104. if (res.status === "success") {
  105. const punishment = res.data;
  106. this.viewPunishment(punishment);
  107. } else {
  108. new Toast({
  109. content: "Punishment with that ID not found",
  110. timeout: 3000
  111. });
  112. this.closeModal({
  113. sector: this.sector,
  114. modal: "viewPunishment"
  115. });
  116. }
  117. }
  118. );
  119. return socket;
  120. });
  121. },
  122. methods: {
  123. ...mapActions("modalVisibility", ["closeModal"]),
  124. ...mapActions("modals/viewPunishment", ["viewPunishment"]),
  125. format,
  126. formatDistance,
  127. parseISO
  128. }
  129. };
  130. </script>