ActivityItem.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. <template>
  2. <div class="item activity-item universal-item">
  3. <div :class="[theme, 'thumbnail']">
  4. <img
  5. v-if="activity.payload.thumbnail"
  6. :src="activity.payload.thumbnail"
  7. onerror="this.src='/assets/notes.png'"
  8. :alt="textOnlyMessage"
  9. />
  10. <i class="material-icons activity-type-icon">{{ getIcon() }}</i>
  11. </div>
  12. <div class="left-part">
  13. <component
  14. class="item-title"
  15. :title="textOnlyMessage"
  16. :is="formattedMessage"
  17. />
  18. <p class="item-description">
  19. {{
  20. formatDistance(parseISO(activity.createdAt), new Date(), {
  21. addSuffix: true
  22. })
  23. }}
  24. </p>
  25. </div>
  26. <div class="universal-item-actions">
  27. <slot name="actions" />
  28. </div>
  29. </div>
  30. </template>
  31. <script>
  32. import { mapActions } from "vuex";
  33. import { formatDistance, parseISO } from "date-fns";
  34. export default {
  35. props: {
  36. activity: {
  37. type: Object,
  38. default: () => {}
  39. }
  40. },
  41. data() {
  42. return {
  43. theme: "blue"
  44. };
  45. },
  46. computed: {
  47. formattedMessage() {
  48. const { youtubeId, playlistId, stationId, reportId } =
  49. this.activity.payload;
  50. let { message } = this.activity.payload;
  51. if (youtubeId) {
  52. message = message.replace(
  53. /<youtubeId>(.*)<\/youtubeId>/g,
  54. "$1"
  55. );
  56. }
  57. if (reportId) {
  58. message = message.replace(
  59. /<reportId>(.*)<\/reportId>/g,
  60. `<a href='#' class='activity-item-link' @click='showReport("${reportId}")'>report</a>`
  61. );
  62. }
  63. if (playlistId) {
  64. message = message.replace(
  65. /<playlistId>(.*)<\/playlistId>/g,
  66. `<a href='#' class='activity-item-link' @click='showPlaylist("${playlistId}")'>$1</a>`
  67. );
  68. }
  69. if (stationId) {
  70. message = message.replace(
  71. /<stationId>(.*)<\/stationId>/g,
  72. `<router-link class='activity-item-link' :to="{ name: 'station', params: { id: '${stationId}' } }">$1</router-link>`
  73. );
  74. }
  75. return {
  76. template: `<p>${message}</p>`,
  77. methods: {
  78. showPlaylist: this.showPlaylist,
  79. showReport: this.showReport
  80. }
  81. };
  82. },
  83. textOnlyMessage() {
  84. const { youtubeId, playlistId, stationId, reportId } =
  85. this.activity.payload;
  86. let { message } = this.activity.payload;
  87. if (reportId) {
  88. message = message.replace(
  89. /<reportId>(.*)<\/reportId>/g,
  90. "report"
  91. );
  92. }
  93. if (youtubeId) {
  94. message = message.replace(
  95. /<youtubeId>(.*)<\/youtubeId>/g,
  96. "$1"
  97. );
  98. }
  99. if (playlistId) {
  100. message = message.replace(
  101. /<playlistId>(.*)<\/playlistId>/g,
  102. `$1`
  103. );
  104. }
  105. if (stationId) {
  106. message = message.replace(
  107. /<stationId>(.*)<\/stationId>/g,
  108. `$1`
  109. );
  110. }
  111. return message;
  112. }
  113. },
  114. mounted() {
  115. if (this.activity.type === "station__edit_theme")
  116. this.theme = this.activity.payload.message.replace(
  117. /to\s(\w+)/g,
  118. "$1"
  119. );
  120. },
  121. methods: {
  122. getIcon() {
  123. const icons = {
  124. /** User */
  125. user__joined: "account_circle",
  126. user__edit_bio: "create",
  127. user__edit_avatar: "insert_photo",
  128. user__edit_name: "create",
  129. user__edit_location: "place",
  130. user__toggle_nightmode: "nightlight_round",
  131. user__toggle_autoskip_disliked_songs: "thumb_down_alt",
  132. user__toggle_activity_watch: "visibility",
  133. /** Songs */
  134. song__report: "flag",
  135. song__like: "thumb_up_alt",
  136. song__dislike: "thumb_down_alt",
  137. song__unlike: "not_interested",
  138. song__undislike: "not_interested",
  139. /** Stations */
  140. station__favorite: "star",
  141. station__unfavorite: "star_border",
  142. station__create: "create",
  143. station__remove: "delete",
  144. station__edit_theme: "color_lens",
  145. station__edit_name: "create",
  146. station__edit_display_name: "create",
  147. station__edit_description: "create",
  148. station__edit_privacy: "security",
  149. station__edit_genres: "create",
  150. station__edit_blacklisted_genres: "create",
  151. /** Playlists */
  152. playlist__create: "create",
  153. playlist__remove: "delete",
  154. playlist__remove_song: "not_interested",
  155. playlist__remove_songs: "not_interested",
  156. playlist__add_song: "library_add",
  157. playlist__add_songs: "library_add",
  158. playlist__edit_privacy: "security",
  159. playlist__edit_display_name: "create",
  160. playlist__import_playlist: "publish"
  161. };
  162. return icons[this.activity.type];
  163. },
  164. showReport(reportId) {
  165. this.viewReport(reportId);
  166. this.openModal("viewReport");
  167. },
  168. showPlaylist(playlistId) {
  169. this.editPlaylist(playlistId);
  170. this.openModal("editPlaylist");
  171. },
  172. ...mapActions("user/playlists", ["editPlaylist"]),
  173. formatDistance,
  174. parseISO,
  175. ...mapActions("modalVisibility", ["openModal"]),
  176. ...mapActions("modals/viewReport", ["viewReport"])
  177. }
  178. };
  179. </script>
  180. <style lang="scss">
  181. .activity-item-link {
  182. color: var(--primary-color) !important;
  183. &:hover {
  184. border-color: #dbdbdb !important;
  185. }
  186. }
  187. </style>
  188. <style lang="scss" scoped>
  189. .activity-item {
  190. height: 72px;
  191. border: 0.5px var(--light-grey-3) solid;
  192. border-radius: 3px;
  193. padding: 0;
  194. .thumbnail {
  195. position: relative;
  196. display: flex;
  197. align-items: center;
  198. justify-content: center;
  199. min-width: 70.5px;
  200. max-width: 70.5px;
  201. height: 70.5px;
  202. margin-left: 0px;
  203. &.red {
  204. background-color: var(--red);
  205. }
  206. &.green {
  207. background-color: var(--green);
  208. }
  209. &.blue {
  210. background-color: var(--primary-color);
  211. }
  212. &.orange {
  213. background-color: var(--orange);
  214. }
  215. &.yellow {
  216. background-color: var(--yellow);
  217. }
  218. &.purple {
  219. background-color: var(--purple);
  220. }
  221. &.teal {
  222. background-color: var(--teal);
  223. }
  224. .activity-type-icon {
  225. position: absolute;
  226. color: var(--light-grey);
  227. font-size: 25px;
  228. background-color: rgba(0, 0, 0, 0.8);
  229. padding: 5px;
  230. border-radius: 100%;
  231. }
  232. }
  233. .left-part {
  234. flex: 1;
  235. padding: 12px;
  236. width: calc(100% - 150px);
  237. .item-title {
  238. margin: 0;
  239. font-size: 16px;
  240. }
  241. }
  242. .universal-item-actions {
  243. right: 10px;
  244. position: sticky;
  245. a {
  246. border-bottom: 0;
  247. }
  248. }
  249. }
  250. </style>