CurrentlyPlaying.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <template>
  2. <div id="currently-playing">
  3. <figure class="thumbnail">
  4. <div
  5. v-if="currentSong.ytThumbnail"
  6. id="yt-thumbnail-bg"
  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. <div id="song-details">
  24. <h6>Currently playing...</h6>
  25. <h4
  26. id="song-title"
  27. :style="!currentSong.artists ? { fontSize: '17px' } : null"
  28. >
  29. {{ currentSong.title }}
  30. </h4>
  31. <h5 id="song-artists" v-if="currentSong.artists">
  32. {{ currentSong.artists }}
  33. </h5>
  34. <p
  35. id="song-request-time"
  36. v-if="
  37. station.type === 'community' &&
  38. station.partyMode === true
  39. "
  40. >
  41. Requested
  42. <strong>{{
  43. formatDistance(
  44. parseISO(currentSong.requestedAt),
  45. Date.now(),
  46. {
  47. addSuffix: true
  48. }
  49. )
  50. }}</strong>
  51. </p>
  52. </div>
  53. <div id="song-actions">
  54. <button
  55. class="button"
  56. id="report-icon"
  57. v-if="loggedIn && !currentSong.simpleSong"
  58. @click="
  59. openModal({
  60. sector: 'station',
  61. modal: 'report'
  62. })
  63. "
  64. >
  65. <i class="material-icons icon-with-button">flag</i>
  66. </button>
  67. <a
  68. class="button"
  69. id="youtube-icon"
  70. target="_blank"
  71. :href="
  72. `https://www.youtube.com/watch?v=${currentSong.songId}`
  73. "
  74. >
  75. <div class="icon"></div>
  76. </a>
  77. <button
  78. class="button is-primary"
  79. id="editsong-icon"
  80. v-if="$parent.isAdminOnly() && !currentSong.simpleSong"
  81. @click="$parent.editSong(currentSong)"
  82. >
  83. <i class="material-icons icon-with-button">edit</i>
  84. </button>
  85. </div>
  86. </div>
  87. </div>
  88. </template>
  89. <script>
  90. import { mapState, mapActions } from "vuex";
  91. import { formatDistance, parseISO } from "date-fns";
  92. export default {
  93. computed: {
  94. ...mapState("station", {
  95. currentSong: state => state.currentSong,
  96. station: state => state.station
  97. }),
  98. ...mapState({
  99. loggedIn: state => state.user.auth.loggedIn
  100. })
  101. },
  102. methods: {
  103. ...mapActions("modalVisibility", ["openModal"]),
  104. formatDistance,
  105. parseISO
  106. }
  107. };
  108. </script>
  109. <style lang="scss" scoped>
  110. #currently-playing {
  111. display: flex;
  112. flex-direction: row;
  113. align-items: center;
  114. width: 100%;
  115. height: 100%;
  116. padding: 10px;
  117. min-height: 130px;
  118. .thumbnail {
  119. min-width: 130px;
  120. height: 130px;
  121. position: relative;
  122. margin-top: -15px;
  123. margin-bottom: -15px;
  124. margin-left: -10px;
  125. #yt-thumbnail-bg {
  126. height: 100%;
  127. width: 100%;
  128. position: absolute;
  129. top: 0;
  130. filter: blur(1px);
  131. background: url("/assets/notes-transparent.png") no-repeat center
  132. center;
  133. }
  134. img {
  135. height: auto;
  136. width: 100%;
  137. margin-top: auto;
  138. margin-bottom: auto;
  139. z-index: 1;
  140. position: absolute;
  141. top: 0;
  142. bottom: 0;
  143. left: 0;
  144. right: 0;
  145. }
  146. }
  147. #song-info {
  148. display: flex;
  149. flex-direction: row;
  150. flex-wrap: wrap;
  151. margin-left: 20px;
  152. width: 100%;
  153. height: 100%;
  154. *:not(i) {
  155. margin: 0;
  156. font-family: Karla, Arial, sans-serif;
  157. }
  158. #song-details {
  159. display: flex;
  160. justify-content: center;
  161. flex-direction: column;
  162. flex-grow: 1;
  163. h6 {
  164. color: var(--primary-color) !important;
  165. font-weight: bold;
  166. font-size: 17px;
  167. }
  168. #song-title {
  169. margin-top: 7px;
  170. font-size: 22px;
  171. }
  172. #song-artists {
  173. font-size: 16px;
  174. margin-bottom: 5px;
  175. }
  176. #song-request-time {
  177. font-size: 12px;
  178. margin-top: 7px;
  179. color: var(--dark-grey);
  180. }
  181. }
  182. #song-actions {
  183. display: flex;
  184. .button {
  185. color: var(--white);
  186. padding: 0 15px;
  187. border: 0;
  188. margin: auto 3px;
  189. }
  190. #report-icon {
  191. background-color: var(--yellow);
  192. }
  193. #youtube-icon {
  194. background-color: var(--youtube);
  195. .icon {
  196. margin-right: 3px;
  197. height: 20px;
  198. width: 20px;
  199. -webkit-mask: url("/assets/social/youtube.svg") no-repeat
  200. center;
  201. mask: url("/assets/social/youtube.svg") no-repeat center;
  202. background-color: var(--white);
  203. }
  204. }
  205. #editsong-icon.button.is-primary {
  206. background-color: var(--primary-color) !important;
  207. &:hover,
  208. &:focus {
  209. filter: brightness(90%);
  210. }
  211. }
  212. }
  213. }
  214. }
  215. </style>