Users.vue 3.4 KB

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