Users.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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="
  8. users &&
  9. ((users.loggedIn.length === 1 &&
  10. users.loggedOut.length === 0) ||
  11. (users.loggedIn.length === 0 &&
  12. users.loggedOut.length === 1))
  13. "
  14. key="only-me"
  15. >
  16. It's just you in the station!
  17. </h6>
  18. <h6
  19. class="has-text-centered"
  20. v-else-if="users && users.loggedOut.length > 0"
  21. key="logged-out-users"
  22. >
  23. {{ users.loggedOut.length }}
  24. {{ users.loggedOut.length > 1 ? "users are" : "user is" }}
  25. logged-out.
  26. </h6>
  27. </transition-group>
  28. <aside class="menu">
  29. <ul class="menu-list scrollable-list">
  30. <li v-for="(user, index) in users.loggedIn" :key="index">
  31. <router-link
  32. :to="{
  33. name: 'profile',
  34. params: { username: user.username }
  35. }"
  36. target="_blank"
  37. >
  38. <profile-picture
  39. :avatar="user.avatar"
  40. :name="user.name"
  41. />
  42. {{ user.username }}
  43. </router-link>
  44. </li>
  45. </ul>
  46. </aside>
  47. <button
  48. class="button is-primary tab-actionable-button"
  49. @click="copyToClipboard()"
  50. >
  51. <i class="material-icons icon-with-button">share</i>
  52. <span class="optional-desktop-only-text">
  53. Share (copy to clipboard)
  54. </span>
  55. </button>
  56. </div>
  57. </template>
  58. <script>
  59. import { mapState } from "vuex";
  60. import Toast from "toasters";
  61. import ProfilePicture from "../../../../components/ui/ProfilePicture.vue";
  62. export default {
  63. components: { ProfilePicture },
  64. data() {
  65. return {
  66. notesUri: "",
  67. frontendDomain: ""
  68. };
  69. },
  70. computed: mapState({
  71. users: state => state.station.users,
  72. userCount: state => state.station.userCount
  73. }),
  74. async mounted() {
  75. this.frontendDomain = await lofig.get("frontendDomain");
  76. this.notesUri = encodeURI(`${this.frontendDomain}/assets/notes.png`);
  77. },
  78. methods: {
  79. async copyToClipboard() {
  80. try {
  81. await navigator.clipboard.writeText(
  82. this.frontendDomain + this.$route.fullPath
  83. );
  84. } catch (err) {
  85. new Toast({
  86. content: "Failed to copy to clipboard.",
  87. timeout: 8000
  88. });
  89. }
  90. }
  91. }
  92. };
  93. </script>
  94. <style lang="scss" scoped>
  95. @import "../../../../styles/global.scss";
  96. .night-mode {
  97. #users {
  98. background-color: var(--dark-grey-3) !important;
  99. border: 0 !important;
  100. }
  101. a {
  102. color: var(--light-grey-2);
  103. background-color: var(--dark-grey-2) !important;
  104. border: 0 !important;
  105. &:hover {
  106. color: var(--light-grey) !important;
  107. }
  108. }
  109. }
  110. .notification-box-enter-active,
  111. .fade-leave-active {
  112. transition: opacity 0.5s;
  113. }
  114. .notification-box-enter,
  115. .notification-box-leave-to {
  116. opacity: 0;
  117. }
  118. #users {
  119. background-color: var(--white);
  120. margin-bottom: 20px;
  121. border-radius: 0 0 5px 5px;
  122. max-height: 100%;
  123. .menu {
  124. padding: 0 10px;
  125. margin-top: 20px;
  126. width: 100%;
  127. overflow: auto;
  128. height: calc(100% - 20px - 40px);
  129. .menu-list {
  130. padding: 0 10px;
  131. }
  132. li {
  133. &:not(:first-of-type) {
  134. margin-top: 10px;
  135. }
  136. a {
  137. display: flex;
  138. align-items: center;
  139. padding: 5px 10px;
  140. border: 0.5px var(--light-grey-3) solid;
  141. border-radius: 3px;
  142. cursor: pointer;
  143. &:hover {
  144. background-color: var(--light-grey);
  145. color: var(--black);
  146. }
  147. .profile-picture {
  148. margin-right: 10px;
  149. width: 35px;
  150. height: 35px;
  151. font-size: 15px;
  152. }
  153. }
  154. }
  155. }
  156. h5 {
  157. font-size: 20px;
  158. margin-top: 20px;
  159. }
  160. }
  161. </style>