CurrentlyPlaying.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <template>
  2. <div id="currently-playing">
  3. <div
  4. v-if="currentSong.ytThumbnail"
  5. class="thumbnail"
  6. id="yt-thumbnail"
  7. :style="{
  8. 'background-image': 'url(' + currentSong.ytThumbnail + ')'
  9. }"
  10. />
  11. <img
  12. v-if="currentSong.thumbnail"
  13. class="thumbnail"
  14. :src="currentSong.thumbnail"
  15. onerror="this.src='/assets/notes-transparent.png'"
  16. />
  17. <div id="song-info">
  18. <h6>Currently playing...</h6>
  19. <h4
  20. id="song-title"
  21. :style="!currentSong.artists ? { fontSize: '17px' } : null"
  22. >
  23. {{ currentSong.title }}
  24. </h4>
  25. <h5 id="song-artists" v-if="currentSong.artists">
  26. {{ currentSong.artists }}
  27. </h5>
  28. <p id="song-request-time">
  29. Requested <strong>15 minutes ago</strong>
  30. </p>
  31. <div id="song-actions">
  32. <button
  33. class="button"
  34. id="report-icon"
  35. v-if="!currentSong.simpleSong"
  36. @click="
  37. openModal({
  38. sector: 'station',
  39. modal: 'report'
  40. })
  41. "
  42. >
  43. <i class="material-icons icon-with-button">flag</i>Report
  44. </button>
  45. <a
  46. class="button"
  47. id="youtube-icon"
  48. target="_blank"
  49. :href="
  50. `https://www.youtube.com/watch?v=${currentSong.songId}`
  51. "
  52. >
  53. <div class="icon"></div>
  54. </a>
  55. </div>
  56. </div>
  57. </div>
  58. </template>
  59. <script>
  60. import { mapState, mapActions } from "vuex";
  61. export default {
  62. computed: {
  63. ...mapState("station", {
  64. currentSong: state => state.currentSong
  65. })
  66. },
  67. methods: {
  68. ...mapActions("modals", ["openModal"])
  69. }
  70. };
  71. </script>
  72. <style lang="scss" scoped>
  73. @import "../../../styles/global.scss";
  74. #currently-playing {
  75. display: flex;
  76. flex-direction: row;
  77. align-items: center;
  78. width: 100%;
  79. height: 100%;
  80. padding: 10px 20px;
  81. .thumbnail {
  82. min-width: 140px;
  83. min-height: 140px;
  84. }
  85. #yt-thumbnail {
  86. background: url("/assets/notes-transparent.png") no-repeat center center;
  87. background-size: cover;
  88. }
  89. @media (max-width: 2200px) {
  90. #song-actions {
  91. .button {
  92. padding: 0 10px !important;
  93. }
  94. }
  95. #song-info {
  96. margin-left: 0;
  97. }
  98. }
  99. #song-info {
  100. display: flex;
  101. flex-direction: column;
  102. justify-content: center;
  103. margin-left: 20px;
  104. width: 100%;
  105. *:not(i) {
  106. margin: 0;
  107. font-family: Karla, Arial, sans-serif;
  108. }
  109. h6 {
  110. color: $musare-blue !important;
  111. font-weight: bold;
  112. font-size: 17px;
  113. }
  114. #song-title {
  115. margin-top: 7px;
  116. font-size: 22px;
  117. }
  118. #song-artists {
  119. font-size: 16px;
  120. }
  121. #song-request-time {
  122. font-size: 12px;
  123. margin-top: 7px;
  124. color: $dark-grey;
  125. }
  126. #song-actions {
  127. margin-top: 10px;
  128. .button {
  129. color: #fff;
  130. padding: 0 15px;
  131. border: 0;
  132. }
  133. #report-icon {
  134. background-color: #6b6a6a;
  135. }
  136. #youtube-icon {
  137. background-color: #bd2e2e;
  138. &:after {
  139. content: "View on YouTube";
  140. @media (max-width: 1800px) {
  141. content: "Open";
  142. }
  143. }
  144. .icon {
  145. margin-right: 3px;
  146. height: 20px;
  147. width: 20px;
  148. -webkit-mask: url("/assets/social/youtube.svg") no-repeat
  149. center;
  150. mask: url("/assets/social/youtube.svg") no-repeat center;
  151. background-color: #fff;
  152. }
  153. }
  154. }
  155. }
  156. }
  157. </style>