Users.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <template>
  2. <div id="users">
  3. <h5 class="has-text-centered">Total users: {{ userCount }}</h5>
  4. <transition-group name="notification-box">
  5. <h6
  6. class="has-text-centered"
  7. v-if="users.loggedOut.length > 0"
  8. key="logged-out-users"
  9. >
  10. {{ users.loggedOut.length }}
  11. {{ users.loggedOut.length > 1 ? "users are" : "user is" }}
  12. logged-out.
  13. </h6>
  14. <h6
  15. class="has-text-centered"
  16. v-else-if="
  17. users.loggedIn.length === 1 && users.loggedOut.length === 0
  18. "
  19. key="only-me"
  20. >
  21. It's just you in the station!
  22. </h6>
  23. </transition-group>
  24. <br />
  25. <aside class="menu">
  26. <ul class="menu-list">
  27. <li v-for="(user, index) in users.loggedIn" :key="index">
  28. <router-link
  29. :to="{
  30. name: 'profile',
  31. params: { username: user.username }
  32. }"
  33. target="_blank"
  34. >
  35. <img
  36. :src="
  37. user.avatar.url &&
  38. user.avatar.type === 'gravatar'
  39. ? `${user.avatar.url}?d=${notesUri}&s=250`
  40. : '/assets/notes.png'
  41. "
  42. onerror="this.src='/assets/notes.png'; this.onerror=''"
  43. />
  44. {{ user.username }}
  45. </router-link>
  46. </li>
  47. </ul>
  48. </aside>
  49. </div>
  50. </template>
  51. <script>
  52. import { mapState } from "vuex";
  53. export default {
  54. data() {
  55. return {
  56. notesUri: ""
  57. };
  58. },
  59. computed: mapState({
  60. users: state => state.station.users,
  61. userCount: state => state.station.userCount
  62. }),
  63. mounted() {
  64. lofig.get("frontendDomain").then(frontendDomain => {
  65. this.notesUri = encodeURI(`${frontendDomain}/assets/notes.png`);
  66. });
  67. }
  68. };
  69. </script>
  70. <style lang="scss" scoped>
  71. @import "../../../../styles/global.scss";
  72. .night-mode {
  73. #users {
  74. background-color: $night-mode-bg-secondary !important;
  75. border: 0 !important;
  76. }
  77. a {
  78. color: $night-mode-text;
  79. background-color: $dark-grey-2 !important;
  80. border: 0 !important;
  81. &:hover {
  82. color: lighten($night-mode-text, 10%) !important;
  83. }
  84. }
  85. }
  86. .notification-box-enter-active,
  87. .fade-leave-active {
  88. transition: opacity 0.5s;
  89. }
  90. .notification-box-enter,
  91. .notification-box-leave-to {
  92. opacity: 0;
  93. }
  94. #users {
  95. background-color: #fff;
  96. margin-bottom: 20px;
  97. padding: 10px;
  98. border-radius: 0 0 5px 5px;
  99. max-height: 100%;
  100. li {
  101. margin-top: 10px;
  102. a {
  103. display: flex;
  104. align-items: center;
  105. padding: 5px 10px;
  106. border: 0.5px $light-grey-2 solid;
  107. border-radius: 3px;
  108. cursor: pointer;
  109. &:hover {
  110. background-color: #eee;
  111. color: #000;
  112. }
  113. img {
  114. background-color: #fff;
  115. width: 35px;
  116. height: 35px;
  117. border-radius: 100%;
  118. border: 2px solid $light-grey;
  119. margin-right: 10px;
  120. }
  121. }
  122. }
  123. h5 {
  124. font-size: 20px;
  125. margin-top: 20px;
  126. }
  127. }
  128. </style>