CurrentlyPlaying.vue 3.7 KB

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