PlaylistSongItem.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <template>
  2. <div class="universal-item playlist-song-item">
  3. <add-to-playlist-dropdown v-if="showPlaylistDropdown" :song="song" />
  4. <div id="thumbnail-and-info">
  5. <img
  6. v-if="song.thumbnail"
  7. class="item-thumbnail"
  8. :src="song.thumbnail"
  9. onerror="this.src='/assets/notes-transparent.png'"
  10. />
  11. <img
  12. v-else
  13. class="item-thumbnail"
  14. src="/assets/notes-transparent.png"
  15. />
  16. <div id="song-info">
  17. <h4 class="item-title" :title="song.title">
  18. {{ song.title }}
  19. </h4>
  20. <h5
  21. class="item-description"
  22. v-if="song.artists"
  23. :style="
  24. song.artists.length < 1 ? { fontSize: '16px' } : null
  25. "
  26. :title="song.artists.join(', ')"
  27. >
  28. {{ song.artists.join(", ") }}
  29. </h5>
  30. </div>
  31. </div>
  32. <div class="universal-item-actions">
  33. <slot name="actions" />
  34. <i
  35. class="material-icons"
  36. @click="showPlaylistDropdown = !showPlaylistDropdown"
  37. >
  38. queue
  39. </i>
  40. </div>
  41. </div>
  42. </template>
  43. <script>
  44. import AddToPlaylistDropdown from "../../../ui/AddToPlaylistDropdown.vue";
  45. export default {
  46. components: { AddToPlaylistDropdown },
  47. props: {
  48. song: {
  49. type: Object,
  50. default: () => {}
  51. }
  52. },
  53. data() {
  54. return {
  55. showPlaylistDropdown: false
  56. };
  57. }
  58. };
  59. </script>
  60. <style lang="scss" scoped>
  61. .night-mode {
  62. .playlist-song-item {
  63. background-color: var(--dark-grey-3) !important;
  64. border: 0 !important;
  65. }
  66. }
  67. /deep/ #nav-dropdown {
  68. margin-top: 36px;
  69. /deep/ .nav-dropdown-items {
  70. position: absolute;
  71. right: 20px;
  72. }
  73. }
  74. .playlist-song-item {
  75. width: 100%;
  76. #thumbnail-and-info,
  77. .universal-item-actions div {
  78. display: flex;
  79. align-items: center;
  80. }
  81. .universal-item-actions {
  82. margin-left: 5px;
  83. i {
  84. margin-left: 5px;
  85. }
  86. }
  87. .item-thumbnail {
  88. width: 55px;
  89. height: 55px;
  90. }
  91. #thumbnail-and-info {
  92. width: calc(100% - 120px);
  93. }
  94. #song-info {
  95. display: flex;
  96. flex-direction: column;
  97. justify-content: center;
  98. margin-left: 20px;
  99. width: calc(100% - 65px);
  100. .item-title {
  101. font-size: 16px;
  102. }
  103. *:not(i) {
  104. margin: 0;
  105. font-family: Karla, Arial, sans-serif;
  106. }
  107. }
  108. }
  109. </style>