SongsList.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. <template>
  2. <div class="sidebar" transition="slide">
  3. <div class="inner-wrapper">
  4. <div v-if="station.type === 'community'" class="title">
  5. Queue
  6. </div>
  7. <div v-else class="title">
  8. Playlist
  9. </div>
  10. <article v-if="!noSong" class="media">
  11. <figure v-if="currentSong.thumbnail" class="media-left">
  12. <p class="image is-64x64">
  13. <img
  14. :src="currentSong.thumbnail"
  15. onerror="this.src='/assets/notes-transparent.png'"
  16. />
  17. </p>
  18. </figure>
  19. <div class="media-content">
  20. <div class="content">
  21. <p>
  22. Current Song:
  23. <strong>{{ currentSong.title }}</strong>
  24. <br />
  25. <small>{{ currentSong.artists }}</small>
  26. </p>
  27. </div>
  28. </div>
  29. <div class="media-right">
  30. {{ utils.formatTime(currentSong.duration) }}
  31. </div>
  32. </article>
  33. <p v-if="noSong" class="center">
  34. There is currently no song playing.
  35. </p>
  36. <article
  37. v-else
  38. v-for="song in songsList"
  39. :key="song.songId"
  40. class="media"
  41. >
  42. <div class="media-content">
  43. <div
  44. class="content"
  45. style="display: block;padding-top: 10px;"
  46. >
  47. <strong class="songTitle">{{ song.title }}</strong>
  48. <small>{{ song.artists.join(", ") }}</small>
  49. <div
  50. v-if="
  51. station.type === 'community' &&
  52. station.partyMode === true
  53. "
  54. >
  55. <small>
  56. Requested by
  57. <b>
  58. <user-id-to-username
  59. :userId="song.requestedBy"
  60. :link="true"
  61. />
  62. </b>
  63. </small>
  64. <i
  65. v-if="isOwnerOnly() || isAdminOnly()"
  66. class="material-icons"
  67. style="vertical-align: middle;"
  68. @click="removeFromQueue(song.songId)"
  69. >delete_forever</i
  70. >
  71. </div>
  72. </div>
  73. </div>
  74. <div class="media-right">
  75. {{ utils.formatTime(song.duration) }}
  76. </div>
  77. </article>
  78. <div
  79. v-if="
  80. station.type === 'community' &&
  81. loggedIn &&
  82. station.partyMode === true
  83. "
  84. >
  85. <button
  86. v-if="
  87. (station.locked && isOwnerOnly()) ||
  88. !station.locked ||
  89. (station.locked &&
  90. isAdminOnly() &&
  91. dismissedWarning)
  92. "
  93. class="button add-to-queue"
  94. @click="
  95. openModal({
  96. sector: 'station',
  97. modal: 'addSongToQueue'
  98. })
  99. "
  100. >
  101. Add Song to Queue
  102. </button>
  103. <button
  104. v-if="
  105. station.locked &&
  106. isAdminOnly() &&
  107. !isOwnerOnly() &&
  108. !dismissedWarning
  109. "
  110. class="button add-to-queue add-to-queue-warning"
  111. @click="dismissedWarning = true"
  112. >
  113. THIS STATION'S QUEUE IS LOCKED.
  114. </button>
  115. <button
  116. v-if="station.locked && !isAdminOnly() && !isOwnerOnly()"
  117. class="button add-to-queue add-to-queue-disabled"
  118. >
  119. THIS STATION'S QUEUE IS LOCKED.
  120. </button>
  121. </div>
  122. </div>
  123. </div>
  124. </template>
  125. <script>
  126. import { mapState, mapActions } from "vuex";
  127. import Toast from "toasters";
  128. import utils from "../../js/utils";
  129. import UserIdToUsername from "../UserIdToUsername.vue";
  130. export default {
  131. data() {
  132. return {
  133. utils,
  134. dismissedWarning: false
  135. };
  136. },
  137. computed: mapState({
  138. loggedIn: state => state.user.auth.loggedIn,
  139. userId: state => state.user.auth.userId,
  140. role: state => state.user.auth.role,
  141. station: state => state.station.station,
  142. currentSong: state => state.station.currentSong,
  143. songsList: state => state.station.songsList,
  144. noSong: state => state.station.noSong
  145. }),
  146. methods: {
  147. isOwnerOnly() {
  148. return this.loggedIn && this.userId === this.station.owner;
  149. },
  150. isAdminOnly() {
  151. return this.loggedIn && this.role === "admin";
  152. },
  153. removeFromQueue(songId) {
  154. window.socket.emit(
  155. "stations.removeFromQueue",
  156. this.station._id,
  157. songId,
  158. res => {
  159. if (res.status === "success") {
  160. new Toast({
  161. content:
  162. "Successfully removed song from the queue.",
  163. timeout: 4000
  164. });
  165. } else new Toast({ content: res.message, timeout: 8000 });
  166. }
  167. );
  168. },
  169. ...mapActions("modals", ["openModal"])
  170. },
  171. mounted() {
  172. /*
  173. io.getSocket((socket) => {
  174. this.socket = socket;
  175. }); */
  176. },
  177. components: { UserIdToUsername }
  178. };
  179. </script>
  180. <style lang="scss" scoped>
  181. @import "styles/global.scss";
  182. .night-mode {
  183. .sidebar {
  184. background-color: $night-mode-secondary;
  185. .title {
  186. color: #fff;
  187. }
  188. * {
  189. color: #ddd;
  190. }
  191. }
  192. }
  193. .sidebar {
  194. position: fixed;
  195. z-index: 1;
  196. top: 0;
  197. right: 0;
  198. width: 300px;
  199. height: 100vh;
  200. background-color: $white;
  201. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
  202. 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  203. }
  204. .inner-wrapper {
  205. top: 60px;
  206. position: relative;
  207. overflow: auto;
  208. height: 100%;
  209. }
  210. .slide-transition {
  211. transition: transform 0.6s ease-in-out;
  212. transform: translateX(0);
  213. }
  214. .slide-enter,
  215. .slide-leave {
  216. transform: translateX(100%);
  217. }
  218. .title {
  219. background-color: rgb(3, 169, 244);
  220. text-align: center;
  221. padding: 10px;
  222. color: $white;
  223. font-weight: 600;
  224. }
  225. .media {
  226. padding: 0 25px;
  227. }
  228. .media-content .content {
  229. min-height: 64px;
  230. display: flex;
  231. align-items: center;
  232. }
  233. .content p strong {
  234. word-break: break-word;
  235. }
  236. .content p small {
  237. word-break: break-word;
  238. }
  239. .add-to-queue {
  240. width: 100%;
  241. margin-top: 25px;
  242. height: 40px;
  243. border-radius: 0;
  244. background: rgb(3, 169, 244);
  245. color: $white !important;
  246. border: 0;
  247. &:active,
  248. &:focus {
  249. border: 0;
  250. }
  251. }
  252. .add-to-queue.add-to-queue-warning {
  253. background-color: red;
  254. }
  255. .add-to-queue.add-to-queue-disabled {
  256. background-color: gray;
  257. }
  258. .add-to-queue.add-to-queue-disabled:focus {
  259. background-color: gray;
  260. }
  261. .add-to-queue:focus {
  262. background: $primary-color;
  263. }
  264. .media-right {
  265. line-height: 64px;
  266. }
  267. .songTitle {
  268. word-wrap: break-word;
  269. overflow: hidden;
  270. text-overflow: ellipsis;
  271. display: -webkit-box;
  272. -webkit-box-orient: vertical;
  273. -webkit-line-clamp: 2;
  274. line-height: 20px;
  275. max-height: 40px;
  276. }
  277. </style>