Banned.vue 898 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <div class="container">
  3. <metadata title="Banned" />
  4. <i class="material-icons">not_interested</i>
  5. <h4>
  6. You are banned for
  7. <strong>{{ formatDistance(ban.expiresAt, Date.now()) }}</strong>
  8. </h4>
  9. <h5 class="reason">
  10. <strong>Reason: </strong>
  11. {{ ban.reason }}
  12. </h5>
  13. </div>
  14. </template>
  15. <script>
  16. import { mapState } from "vuex";
  17. import { formatDistance } from "date-fns"; // eslint-disable-line no-unused-vars
  18. export default {
  19. computed: mapState({
  20. ban: state => state.user.auth.ban
  21. }),
  22. methods: { formatDistance }
  23. };
  24. </script>
  25. <style lang="scss" scoped>
  26. @import "styles/global.scss";
  27. .container {
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. flex-direction: column;
  32. height: 100vh;
  33. max-width: 1000px;
  34. padding: 0 20px;
  35. }
  36. .reason {
  37. text-align: justify;
  38. }
  39. i.material-icons {
  40. cursor: default;
  41. font-size: 65px;
  42. color: tomato;
  43. }
  44. </style>