SongItem.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. <template>
  2. <div class="universal-item song-item">
  3. <div class="thumbnail-and-info">
  4. <song-thumbnail :class="{ large: largeThumbnail }" :song="song" />
  5. <div class="song-info">
  6. <h6 v-if="header">{{ header }}</h6>
  7. <div class="song-title">
  8. <h4
  9. class="item-title"
  10. :style="
  11. song.artists && song.artists.length < 1
  12. ? { fontSize: '16px' }
  13. : null
  14. "
  15. :title="song.title"
  16. >
  17. {{ song.title }}
  18. </h4>
  19. <i
  20. v-if="song.status === 'verified'"
  21. class="material-icons verified-song"
  22. content="Verified Song"
  23. v-tippy
  24. >
  25. check_circle
  26. </i>
  27. </div>
  28. <h5
  29. class="item-description"
  30. v-if="song.artists"
  31. :title="song.artists.join(', ')"
  32. >
  33. {{ song.artists.join(", ") }}
  34. </h5>
  35. <p
  36. class="song-request-time"
  37. v-if="requestedBy && song.requestedBy"
  38. >
  39. Requested by
  40. <strong>
  41. <user-id-to-username
  42. :user-id="song.requestedBy"
  43. :link="true"
  44. />
  45. {{
  46. formatDistance(
  47. parseISO(song.requestedAt),
  48. new Date(),
  49. {
  50. includeSeconds: true
  51. }
  52. )
  53. }}
  54. ago
  55. </strong>
  56. </p>
  57. </div>
  58. </div>
  59. <div class="duration-and-actions">
  60. <p v-if="duration" class="song-duration">
  61. {{ utils.formatTime(song.duration) }}
  62. </p>
  63. <div class="universal-item-actions">
  64. <tippy
  65. v-if="loggedIn"
  66. interactive="true"
  67. placement="left"
  68. theme="songActions"
  69. ref="songActions"
  70. trigger="click"
  71. >
  72. <template #trigger>
  73. <i
  74. class="material-icons action-dropdown-icon"
  75. content="Song Options"
  76. v-tippy
  77. >more_horiz</i
  78. >
  79. </template>
  80. <a
  81. target="_blank"
  82. :href="`https://www.youtube.com/watch?v=${song.songId}`"
  83. content="View on Youtube"
  84. v-tippy
  85. >
  86. <div class="youtube-icon"></div>
  87. </a>
  88. <i
  89. class="material-icons report-icon"
  90. @click="report(song)"
  91. content="Report Song"
  92. v-tippy
  93. >
  94. flag
  95. </i>
  96. <add-to-playlist-dropdown :song="song">
  97. <i
  98. slot="button"
  99. class="material-icons add-to-playlist-icon"
  100. content="Add Song to Playlist"
  101. v-tippy
  102. >playlist_add</i
  103. >
  104. </add-to-playlist-dropdown>
  105. <i
  106. v-if="loggedIn && userRole === 'admin'"
  107. class="material-icons edit-icon"
  108. @click="edit(song)"
  109. content="Edit Song"
  110. v-tippy
  111. >
  112. edit
  113. </i>
  114. <slot name="actions" />
  115. </tippy>
  116. <a
  117. v-else
  118. target="_blank"
  119. :href="`https://www.youtube.com/watch?v=${song.songId}`"
  120. content="View on Youtube"
  121. v-tippy
  122. >
  123. <div class="youtube-icon"></div>
  124. </a>
  125. </div>
  126. </div>
  127. </div>
  128. </template>
  129. <script>
  130. import { mapActions, mapState } from "vuex";
  131. import { formatDistance, parseISO } from "date-fns";
  132. import AddToPlaylistDropdown from "./AddToPlaylistDropdown.vue";
  133. import UserIdToUsername from "./UserIdToUsername.vue";
  134. import SongThumbnail from "./SongThumbnail.vue";
  135. import utils from "../../js/utils";
  136. export default {
  137. components: { UserIdToUsername, AddToPlaylistDropdown, SongThumbnail },
  138. props: {
  139. song: {
  140. type: Object,
  141. default: () => {}
  142. },
  143. requestedBy: {
  144. type: Boolean,
  145. default: false
  146. },
  147. duration: {
  148. type: Boolean,
  149. default: true
  150. },
  151. largeThumbnail: {
  152. type: Boolean,
  153. default: false
  154. },
  155. header: {
  156. type: String,
  157. default: null
  158. }
  159. },
  160. data() {
  161. return {
  162. utils
  163. };
  164. },
  165. computed: {
  166. ...mapState({
  167. loggedIn: state => state.user.auth.loggedIn,
  168. userRole: state => state.user.auth.role
  169. })
  170. },
  171. methods: {
  172. hideTippyElements() {
  173. this.$refs.songActions.tip.hide();
  174. setTimeout(
  175. () =>
  176. Array.from(
  177. document.querySelectorAll(".tippy-popper")
  178. ).forEach(popper => popper._tippy.hide()),
  179. 500
  180. );
  181. },
  182. report(song) {
  183. this.hideTippyElements();
  184. this.reportSong(song);
  185. this.openModal({ sector: "station", modal: "report" });
  186. },
  187. edit(song) {
  188. this.hideTippyElements();
  189. this.editSong(song);
  190. this.openModal({ sector: "admin", modal: "editSong" });
  191. },
  192. ...mapActions("modals/editSong", ["editSong"]),
  193. ...mapActions("modals/report", ["reportSong"]),
  194. ...mapActions("modalVisibility", ["openModal"]),
  195. formatDistance,
  196. parseISO
  197. }
  198. };
  199. </script>
  200. <style lang="scss" scoped>
  201. .night-mode {
  202. .song-item {
  203. background-color: var(--dark-grey-2) !important;
  204. border: 0 !important;
  205. }
  206. }
  207. /deep/ #nav-dropdown {
  208. margin-top: 36px;
  209. width: 0;
  210. height: 0;
  211. .nav-dropdown-items {
  212. width: 250px;
  213. max-width: 100vw;
  214. position: relative;
  215. right: 175px;
  216. }
  217. }
  218. .song-item {
  219. .thumbnail-and-info,
  220. .duration-and-actions {
  221. display: flex;
  222. align-items: center;
  223. }
  224. .duration-and-actions {
  225. margin-left: 5px;
  226. .universal-item-actions div i {
  227. margin-left: 5px;
  228. }
  229. }
  230. .thumbnail-and-info {
  231. width: calc(100% - 90px);
  232. }
  233. .thumbnail {
  234. min-width: 65px;
  235. width: 65px;
  236. height: 65px;
  237. margin: -7.5px;
  238. &.large {
  239. min-width: 130px;
  240. width: 130px;
  241. height: 130px;
  242. }
  243. }
  244. .song-info {
  245. display: flex;
  246. flex-direction: column;
  247. justify-content: center;
  248. margin-left: 20px;
  249. width: calc(100% - 80px);
  250. *:not(i) {
  251. margin: 0;
  252. font-family: Karla, Arial, sans-serif;
  253. }
  254. .song-title {
  255. display: flex;
  256. flex-direction: row;
  257. h6 {
  258. color: var(--primary-color) !important;
  259. font-weight: bold;
  260. font-size: 17px;
  261. margin-bottom: 5px;
  262. }
  263. }
  264. .song-request-time {
  265. font-size: 12px;
  266. margin-top: 7px;
  267. }
  268. }
  269. .song-duration {
  270. font-size: 20px;
  271. }
  272. .edit-icon {
  273. color: var(--primary-color);
  274. }
  275. }
  276. </style>