PlaylistItem.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <template>
  2. <div class="playlist-item universal-item">
  3. <slot name="item-icon">
  4. <span></span>
  5. </slot>
  6. <div class="item-title-description">
  7. <p class="item-title">
  8. {{ playlist.displayName }}
  9. <i
  10. v-if="playlist.privacy === 'private'"
  11. class="private-playlist-icon material-icons"
  12. content="This playlist is not visible to other users."
  13. v-tippy="{ theme: 'info' }"
  14. >lock</i
  15. >
  16. </p>
  17. <p class="item-description">
  18. <span v-if="showOwner"
  19. ><a v-if="playlist.createdBy === 'Musare'" title="Musare"
  20. >Musare</a
  21. ><user-id-to-username
  22. v-else
  23. :user-id="playlist.createdBy"
  24. :link="true"
  25. />
  26. </span>
  27. <span :title="playlistLength">
  28. {{ playlistLength }}
  29. </span>
  30. </p>
  31. </div>
  32. <div class="universal-item-actions">
  33. <div class="icons-group">
  34. <slot name="actions" />
  35. </div>
  36. </div>
  37. </div>
  38. </template>
  39. <script>
  40. import UserIdToUsername from "@/components/UserIdToUsername.vue";
  41. import utils from "../../js/utils";
  42. export default {
  43. components: { UserIdToUsername },
  44. props: {
  45. playlist: { type: Object, default: () => {} },
  46. showOwner: { type: Boolean, default: false }
  47. },
  48. data() {
  49. return {
  50. utils
  51. };
  52. },
  53. computed: {
  54. playlistLength() {
  55. return `${this.totalLength(this.playlist)} • ${
  56. this.playlist.songs.length
  57. } ${this.playlist.songs.length === 1 ? "song" : "songs"}`;
  58. }
  59. },
  60. methods: {
  61. totalLength(playlist) {
  62. let length = 0;
  63. playlist.songs.forEach(song => {
  64. length += song.duration;
  65. });
  66. return this.utils.formatTimeLong(length);
  67. }
  68. }
  69. };
  70. </script>
  71. <style lang="scss" scoped>
  72. .night-mode {
  73. .playlist-item {
  74. background-color: var(--dark-grey-2) !important;
  75. border: 0 !important;
  76. p {
  77. color: var(--light-grey-2) !important;
  78. }
  79. }
  80. }
  81. .playlist-item {
  82. width: 100%;
  83. height: 72px;
  84. column-gap: 7.5px;
  85. .item-title-description {
  86. flex: 1;
  87. overflow: hidden;
  88. .item-title {
  89. color: var(--dark-grey-2);
  90. font-size: 20px;
  91. line-height: 23px;
  92. margin-bottom: 0;
  93. display: flex;
  94. align-items: center;
  95. .private-playlist-icon {
  96. color: var(--dark-pink);
  97. font-size: 18px;
  98. margin-left: 5px;
  99. }
  100. }
  101. }
  102. .universal-item-actions {
  103. margin-left: none;
  104. div {
  105. display: flex;
  106. align-items: center;
  107. line-height: 1;
  108. button,
  109. .button {
  110. width: 100%;
  111. font-size: 17px;
  112. height: 36px;
  113. }
  114. }
  115. }
  116. }
  117. </style>