Songs.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808
  1. <template>
  2. <div>
  3. <page-metadata title="Admin | Songs" />
  4. <div class="admin-tab">
  5. <div class="button-row">
  6. <button class="button is-primary" @click="create()">
  7. Create song
  8. </button>
  9. <button
  10. class="button is-primary"
  11. @click="openModal('importPlaylist')"
  12. >
  13. Import playlist
  14. </button>
  15. <button
  16. class="button is-primary"
  17. @click="openModal('importAlbum')"
  18. >
  19. Import album
  20. </button>
  21. <run-job-dropdown :jobs="jobs" />
  22. </div>
  23. <advanced-table
  24. :column-default="columnDefault"
  25. :columns="columns"
  26. :filters="filters"
  27. data-action="songs.getData"
  28. name="admin-songs"
  29. :events="events"
  30. >
  31. <template #column-options="slotProps">
  32. <div class="row-options">
  33. <button
  34. class="button is-primary icon-with-button material-icons"
  35. @click="editOne(slotProps.item)"
  36. :disabled="slotProps.item.removed"
  37. content="Edit Song"
  38. v-tippy
  39. >
  40. edit
  41. </button>
  42. <quick-confirm
  43. v-if="slotProps.item.verified"
  44. @confirm="unverifyOne(slotProps.item._id)"
  45. >
  46. <button
  47. class="button is-danger icon-with-button material-icons"
  48. :disabled="slotProps.item.removed"
  49. content="Unverify Song"
  50. v-tippy
  51. >
  52. cancel
  53. </button>
  54. </quick-confirm>
  55. <button
  56. v-else
  57. class="button is-success icon-with-button material-icons"
  58. @click="verifyOne(slotProps.item._id)"
  59. :disabled="slotProps.item.removed"
  60. content="Verify Song"
  61. v-tippy
  62. >
  63. check_circle
  64. </button>
  65. <button
  66. class="button is-danger icon-with-button material-icons"
  67. @click.prevent="
  68. confirmAction({
  69. message:
  70. 'Removing this song will remove it from all playlists and cause a ratings recalculation.',
  71. action: 'deleteOne',
  72. params: slotProps.item._id
  73. })
  74. "
  75. :disabled="slotProps.item.removed"
  76. content="Delete Song"
  77. v-tippy
  78. >
  79. delete_forever
  80. </button>
  81. </div>
  82. </template>
  83. <template #column-thumbnailImage="slotProps">
  84. <img
  85. class="song-thumbnail"
  86. :src="slotProps.item.thumbnail"
  87. onerror="this.src='/assets/notes-transparent.png'"
  88. loading="lazy"
  89. />
  90. </template>
  91. <template #column-thumbnailUrl="slotProps">
  92. <a :href="slotProps.item.thumbnail" target="_blank">
  93. {{ slotProps.item.thumbnail }}
  94. </a>
  95. </template>
  96. <template #column-title="slotProps">
  97. <span :title="slotProps.item.title">{{
  98. slotProps.item.title
  99. }}</span>
  100. </template>
  101. <template #column-artists="slotProps">
  102. <span :title="slotProps.item.artists.join(', ')">{{
  103. slotProps.item.artists.join(", ")
  104. }}</span>
  105. </template>
  106. <template #column-genres="slotProps">
  107. <span :title="slotProps.item.genres.join(', ')">{{
  108. slotProps.item.genres.join(", ")
  109. }}</span>
  110. </template>
  111. <template #column-tags="slotProps">
  112. <span :title="slotProps.item.tags.join(', ')">{{
  113. slotProps.item.tags.join(", ")
  114. }}</span>
  115. </template>
  116. <template #column-likes="slotProps">
  117. <span :title="slotProps.item.likes">{{
  118. slotProps.item.likes
  119. }}</span>
  120. </template>
  121. <template #column-dislikes="slotProps">
  122. <span :title="slotProps.item.dislikes">{{
  123. slotProps.item.dislikes
  124. }}</span>
  125. </template>
  126. <template #column-_id="slotProps">
  127. <span :title="slotProps.item._id">{{
  128. slotProps.item._id
  129. }}</span>
  130. </template>
  131. <template #column-youtubeId="slotProps">
  132. <a
  133. :href="
  134. 'https://www.youtube.com/watch?v=' +
  135. `${slotProps.item.youtubeId}`
  136. "
  137. target="_blank"
  138. >
  139. {{ slotProps.item.youtubeId }}
  140. </a>
  141. </template>
  142. <template #column-verified="slotProps">
  143. <span :title="slotProps.item.verified">{{
  144. slotProps.item.verified
  145. }}</span>
  146. </template>
  147. <template #column-duration="slotProps">
  148. <span :title="slotProps.item.duration">{{
  149. slotProps.item.duration
  150. }}</span>
  151. </template>
  152. <template #column-skipDuration="slotProps">
  153. <span :title="slotProps.item.skipDuration">{{
  154. slotProps.item.skipDuration
  155. }}</span>
  156. </template>
  157. <template #column-requestedBy="slotProps">
  158. <user-id-to-username
  159. :user-id="slotProps.item.requestedBy"
  160. :link="true"
  161. />
  162. </template>
  163. <template #column-requestedAt="slotProps">
  164. <span :title="new Date(slotProps.item.requestedAt)">{{
  165. getDateFormatted(slotProps.item.requestedAt)
  166. }}</span>
  167. </template>
  168. <template #column-verifiedBy="slotProps">
  169. <user-id-to-username
  170. :user-id="slotProps.item.verifiedBy"
  171. :link="true"
  172. />
  173. </template>
  174. <template #column-verifiedAt="slotProps">
  175. <span :title="new Date(slotProps.item.verifiedAt)">{{
  176. getDateFormatted(slotProps.item.verifiedAt)
  177. }}</span>
  178. </template>
  179. <template #bulk-actions="slotProps">
  180. <div class="bulk-actions">
  181. <i
  182. class="material-icons edit-songs-icon"
  183. @click.prevent="editMany(slotProps.item)"
  184. content="Edit Songs"
  185. v-tippy
  186. tabindex="0"
  187. >
  188. edit
  189. </i>
  190. <i
  191. class="material-icons verify-songs-icon"
  192. @click.prevent="verifyMany(slotProps.item)"
  193. content="Verify Songs"
  194. v-tippy
  195. tabindex="0"
  196. >
  197. check_circle
  198. </i>
  199. <quick-confirm
  200. placement="left"
  201. @confirm="unverifyMany(slotProps.item)"
  202. tabindex="0"
  203. >
  204. <i
  205. class="material-icons unverify-songs-icon"
  206. content="Unverify Songs"
  207. v-tippy
  208. >
  209. cancel
  210. </i>
  211. </quick-confirm>
  212. <i
  213. class="material-icons tag-songs-icon"
  214. @click.prevent="setTags(slotProps.item)"
  215. content="Set Tags"
  216. v-tippy
  217. tabindex="0"
  218. >
  219. local_offer
  220. </i>
  221. <i
  222. class="material-icons artists-songs-icon"
  223. @click.prevent="setArtists(slotProps.item)"
  224. content="Set Artists"
  225. v-tippy
  226. tabindex="0"
  227. >
  228. group
  229. </i>
  230. <i
  231. class="material-icons genres-songs-icon"
  232. @click.prevent="setGenres(slotProps.item)"
  233. content="Set Genres"
  234. v-tippy
  235. tabindex="0"
  236. >
  237. theater_comedy
  238. </i>
  239. <i
  240. class="material-icons delete-icon"
  241. @click.prevent="
  242. confirmAction({
  243. message:
  244. 'Removing these songs will remove them from all playlists and cause a ratings recalculation.',
  245. action: 'deleteMany',
  246. params: slotProps.item
  247. })
  248. "
  249. content="Delete Songs"
  250. v-tippy
  251. tabindex="0"
  252. >
  253. delete_forever
  254. </i>
  255. </div>
  256. </template>
  257. </advanced-table>
  258. </div>
  259. <import-album v-if="modals.importAlbum" />
  260. <edit-song v-if="modals.editSong" song-type="songs" />
  261. <edit-songs v-if="modals.editSongs" />
  262. <report v-if="modals.report" />
  263. <bulk-actions v-if="modals.bulkActions" :type="bulkActionsType" />
  264. <confirm v-if="modals.confirm" @confirmed="handleConfirmed()" />
  265. </div>
  266. </template>
  267. <script>
  268. import { mapState, mapActions, mapGetters } from "vuex";
  269. import { defineAsyncComponent } from "vue";
  270. import Toast from "toasters";
  271. import AdvancedTable from "@/components/AdvancedTable.vue";
  272. import RunJobDropdown from "@/components/RunJobDropdown.vue";
  273. export default {
  274. components: {
  275. EditSong: defineAsyncComponent(() =>
  276. import("@/components/modals/EditSong")
  277. ),
  278. EditSongs: defineAsyncComponent(() =>
  279. import("@/components/modals/EditSongs.vue")
  280. ),
  281. Report: defineAsyncComponent(() =>
  282. import("@/components/modals/Report.vue")
  283. ),
  284. ImportAlbum: defineAsyncComponent(() =>
  285. import("@/components/modals/ImportAlbum.vue")
  286. ),
  287. BulkActions: defineAsyncComponent(() =>
  288. import("@/components/modals/BulkActions.vue")
  289. ),
  290. Confirm: defineAsyncComponent(() =>
  291. import("@/components/modals/Confirm.vue")
  292. ),
  293. AdvancedTable,
  294. RunJobDropdown
  295. },
  296. data() {
  297. return {
  298. columnDefault: {
  299. sortable: true,
  300. hidable: true,
  301. defaultVisibility: "shown",
  302. draggable: true,
  303. resizable: true,
  304. minWidth: 200,
  305. maxWidth: 600
  306. },
  307. columns: [
  308. {
  309. name: "options",
  310. displayName: "Options",
  311. properties: ["_id", "verified"],
  312. sortable: false,
  313. hidable: false,
  314. resizable: false,
  315. minWidth: 129,
  316. defaultWidth: 129
  317. },
  318. {
  319. name: "thumbnailImage",
  320. displayName: "Thumb",
  321. properties: ["thumbnail"],
  322. sortable: false,
  323. minWidth: 75,
  324. defaultWidth: 75,
  325. maxWidth: 75,
  326. resizable: false
  327. },
  328. {
  329. name: "title",
  330. displayName: "Title",
  331. properties: ["title"],
  332. sortProperty: "title"
  333. },
  334. {
  335. name: "artists",
  336. displayName: "Artists",
  337. properties: ["artists"],
  338. sortable: false
  339. },
  340. {
  341. name: "genres",
  342. displayName: "Genres",
  343. properties: ["genres"],
  344. sortable: false
  345. },
  346. {
  347. name: "tags",
  348. displayName: "Tags",
  349. properties: ["tags"],
  350. sortable: false
  351. },
  352. {
  353. name: "likes",
  354. displayName: "Likes",
  355. properties: ["likes"],
  356. sortProperty: "likes",
  357. minWidth: 100,
  358. defaultWidth: 100,
  359. defaultVisibility: "hidden"
  360. },
  361. {
  362. name: "dislikes",
  363. displayName: "Dislikes",
  364. properties: ["dislikes"],
  365. sortProperty: "dislikes",
  366. minWidth: 100,
  367. defaultWidth: 100,
  368. defaultVisibility: "hidden"
  369. },
  370. {
  371. name: "_id",
  372. displayName: "Song ID",
  373. properties: ["_id"],
  374. sortProperty: "_id",
  375. minWidth: 215,
  376. defaultWidth: 215
  377. },
  378. {
  379. name: "youtubeId",
  380. displayName: "YouTube ID",
  381. properties: ["youtubeId"],
  382. sortProperty: "youtubeId",
  383. minWidth: 120,
  384. defaultWidth: 120
  385. },
  386. {
  387. name: "verified",
  388. displayName: "Verified",
  389. properties: ["verified"],
  390. sortProperty: "verified",
  391. minWidth: 120,
  392. defaultWidth: 120
  393. },
  394. {
  395. name: "thumbnailUrl",
  396. displayName: "Thumbnail (URL)",
  397. properties: ["thumbnail"],
  398. sortProperty: "thumbnail",
  399. defaultVisibility: "hidden"
  400. },
  401. {
  402. name: "duration",
  403. displayName: "Duration",
  404. properties: ["duration"],
  405. sortProperty: "duration",
  406. defaultWidth: 200,
  407. defaultVisibility: "hidden"
  408. },
  409. {
  410. name: "skipDuration",
  411. displayName: "Skip Duration",
  412. properties: ["skipDuration"],
  413. sortProperty: "skipDuration",
  414. defaultWidth: 200,
  415. defaultVisibility: "hidden"
  416. },
  417. {
  418. name: "requestedBy",
  419. displayName: "Requested By",
  420. properties: ["requestedBy"],
  421. sortProperty: "requestedBy",
  422. defaultWidth: 200,
  423. defaultVisibility: "hidden"
  424. },
  425. {
  426. name: "requestedAt",
  427. displayName: "Requested At",
  428. properties: ["requestedAt"],
  429. sortProperty: "requestedAt",
  430. defaultWidth: 200,
  431. defaultVisibility: "hidden"
  432. },
  433. {
  434. name: "verifiedBy",
  435. displayName: "Verified By",
  436. properties: ["verifiedBy"],
  437. sortProperty: "verifiedBy",
  438. defaultWidth: 200,
  439. defaultVisibility: "hidden"
  440. },
  441. {
  442. name: "verifiedAt",
  443. displayName: "Verified At",
  444. properties: ["verifiedAt"],
  445. sortProperty: "verifiedAt",
  446. defaultWidth: 200,
  447. defaultVisibility: "hidden"
  448. }
  449. ],
  450. filters: [
  451. {
  452. name: "_id",
  453. displayName: "Song ID",
  454. property: "_id",
  455. filterTypes: ["exact"],
  456. defaultFilterType: "exact"
  457. },
  458. {
  459. name: "youtubeId",
  460. displayName: "YouTube ID",
  461. property: "youtubeId",
  462. filterTypes: ["contains", "exact", "regex"],
  463. defaultFilterType: "contains"
  464. },
  465. {
  466. name: "title",
  467. displayName: "Title",
  468. property: "title",
  469. filterTypes: ["contains", "exact", "regex"],
  470. defaultFilterType: "contains"
  471. },
  472. {
  473. name: "artists",
  474. displayName: "Artists",
  475. property: "artists",
  476. filterTypes: ["contains", "exact", "regex"],
  477. defaultFilterType: "contains",
  478. autosuggest: true,
  479. autosuggestDataAction: "songs.getArtists"
  480. },
  481. {
  482. name: "genres",
  483. displayName: "Genres",
  484. property: "genres",
  485. filterTypes: ["contains", "exact", "regex"],
  486. defaultFilterType: "contains",
  487. autosuggest: true,
  488. autosuggestDataAction: "songs.getGenres"
  489. },
  490. {
  491. name: "tags",
  492. displayName: "Tags",
  493. property: "tags",
  494. filterTypes: ["contains", "exact", "regex"],
  495. defaultFilterType: "contains",
  496. autosuggest: true,
  497. autosuggestDataAction: "songs.getTags"
  498. },
  499. {
  500. name: "thumbnail",
  501. displayName: "Thumbnail",
  502. property: "thumbnail",
  503. filterTypes: ["contains", "exact", "regex"],
  504. defaultFilterType: "contains"
  505. },
  506. {
  507. name: "requestedBy",
  508. displayName: "Requested By",
  509. property: "requestedBy",
  510. filterTypes: ["contains", "exact", "regex"],
  511. defaultFilterType: "contains"
  512. },
  513. {
  514. name: "requestedAt",
  515. displayName: "Requested At",
  516. property: "requestedAt",
  517. filterTypes: ["datetimeBefore", "datetimeAfter"],
  518. defaultFilterType: "datetimeBefore"
  519. },
  520. {
  521. name: "verifiedBy",
  522. displayName: "Verified By",
  523. property: "verifiedBy",
  524. filterTypes: ["contains", "exact", "regex"],
  525. defaultFilterType: "contains"
  526. },
  527. {
  528. name: "verifiedAt",
  529. displayName: "Verified At",
  530. property: "verifiedAt",
  531. filterTypes: ["datetimeBefore", "datetimeAfter"],
  532. defaultFilterType: "datetimeBefore"
  533. },
  534. {
  535. name: "verified",
  536. displayName: "Verified",
  537. property: "verified",
  538. filterTypes: ["boolean"],
  539. defaultFilterType: "boolean"
  540. },
  541. {
  542. name: "likes",
  543. displayName: "Likes",
  544. property: "likes",
  545. filterTypes: [
  546. "numberLesserEqual",
  547. "numberLesser",
  548. "numberGreater",
  549. "numberGreaterEqual",
  550. "numberEquals"
  551. ],
  552. defaultFilterType: "numberLesser"
  553. },
  554. {
  555. name: "dislikes",
  556. displayName: "Dislikes",
  557. property: "dislikes",
  558. filterTypes: [
  559. "numberLesserEqual",
  560. "numberLesser",
  561. "numberGreater",
  562. "numberGreaterEqual",
  563. "numberEquals"
  564. ],
  565. defaultFilterType: "numberLesser"
  566. },
  567. {
  568. name: "duration",
  569. displayName: "Duration",
  570. property: "duration",
  571. filterTypes: [
  572. "numberLesserEqual",
  573. "numberLesser",
  574. "numberGreater",
  575. "numberGreaterEqual",
  576. "numberEquals"
  577. ],
  578. defaultFilterType: "numberLesser"
  579. },
  580. {
  581. name: "skipDuration",
  582. displayName: "Skip Duration",
  583. property: "skipDuration",
  584. filterTypes: [
  585. "numberLesserEqual",
  586. "numberLesser",
  587. "numberGreater",
  588. "numberGreaterEqual",
  589. "numberEquals"
  590. ],
  591. defaultFilterType: "numberLesser"
  592. }
  593. ],
  594. events: {
  595. adminRoom: "songs",
  596. updated: {
  597. event: "admin.song.updated",
  598. id: "song._id",
  599. item: "song"
  600. },
  601. removed: {
  602. event: "admin.song.removed",
  603. id: "songId"
  604. }
  605. },
  606. jobs: [
  607. {
  608. name: "Update all songs",
  609. socket: "songs.updateAll"
  610. },
  611. {
  612. name: "Recalculate all song ratings",
  613. socket: "songs.recalculateAllRatings"
  614. }
  615. ],
  616. confirm: {
  617. message: "",
  618. action: "",
  619. params: null
  620. },
  621. bulkActionsType: null
  622. };
  623. },
  624. computed: {
  625. ...mapState("modalVisibility", {
  626. modals: state => state.modals
  627. }),
  628. ...mapState("modals/editSong", {
  629. song: state => state.song
  630. }),
  631. ...mapGetters({
  632. socket: "websockets/getSocket"
  633. })
  634. },
  635. mounted() {
  636. if (this.$route.query.songId) {
  637. this.socket.dispatch(
  638. "songs.getSongFromSongId",
  639. this.$route.query.songId,
  640. res => {
  641. if (res.status === "success")
  642. this.editMany([res.data.song]);
  643. else new Toast("Song with that ID not found");
  644. }
  645. );
  646. }
  647. },
  648. methods: {
  649. create() {
  650. this.editSong({ newSong: true });
  651. this.openModal("editSong");
  652. },
  653. editOne(song) {
  654. this.editSong({ songId: song._id });
  655. this.openModal("editSong");
  656. },
  657. editMany(selectedRows) {
  658. if (selectedRows.length === 1) this.editOne(selectedRows[0]);
  659. else {
  660. const songs = selectedRows.map(row => ({
  661. songId: row._id
  662. }));
  663. this.editSongs(songs);
  664. this.openModal("editSongs");
  665. }
  666. },
  667. verifyOne(songId) {
  668. this.socket.dispatch("songs.verify", songId, res => {
  669. new Toast(res.message);
  670. });
  671. },
  672. verifyMany(selectedRows) {
  673. this.socket.dispatch(
  674. "songs.verifyMany",
  675. selectedRows.map(row => row._id),
  676. res => {
  677. new Toast(res.message);
  678. }
  679. );
  680. },
  681. unverifyOne(songId) {
  682. this.socket.dispatch("songs.unverify", songId, res => {
  683. new Toast(res.message);
  684. });
  685. },
  686. unverifyMany(selectedRows) {
  687. this.socket.dispatch(
  688. "songs.unverifyMany",
  689. selectedRows.map(row => row._id),
  690. res => {
  691. new Toast(res.message);
  692. }
  693. );
  694. },
  695. setTags(selectedRows) {
  696. this.bulkActionsType = {
  697. name: "tags",
  698. action: "songs.editTags",
  699. items: selectedRows.map(row => row._id),
  700. regex: /^[a-zA-Z0-9_]{1,64}$|^[a-zA-Z0-9_]{1,64}\[[a-zA-Z0-9_]{1,64}\]$/,
  701. autosuggest: true,
  702. autosuggestDataAction: "songs.getTags"
  703. };
  704. this.openModal("bulkActions");
  705. },
  706. setArtists(selectedRows) {
  707. this.bulkActionsType = {
  708. name: "artists",
  709. action: "songs.editArtists",
  710. items: selectedRows.map(row => row._id),
  711. regex: /^(?=.{1,64}$).*$/,
  712. autosuggest: true,
  713. autosuggestDataAction: "songs.getArtists"
  714. };
  715. this.openModal("bulkActions");
  716. },
  717. setGenres(selectedRows) {
  718. this.bulkActionsType = {
  719. name: "genres",
  720. action: "songs.editGenres",
  721. items: selectedRows.map(row => row._id),
  722. regex: /^[\x00-\x7F]{1,32}$/,
  723. autosuggest: true,
  724. autosuggestDataAction: "songs.getGenres"
  725. };
  726. this.openModal("bulkActions");
  727. },
  728. deleteOne(songId) {
  729. this.socket.dispatch("songs.remove", songId, res => {
  730. new Toast(res.message);
  731. });
  732. },
  733. deleteMany(selectedRows) {
  734. this.socket.dispatch(
  735. "songs.removeMany",
  736. selectedRows.map(row => row._id),
  737. res => {
  738. new Toast(res.message);
  739. }
  740. );
  741. },
  742. getDateFormatted(createdAt) {
  743. const date = new Date(createdAt);
  744. const year = date.getFullYear();
  745. const month = `${date.getMonth() + 1}`.padStart(2, 0);
  746. const day = `${date.getDate()}`.padStart(2, 0);
  747. const hour = `${date.getHours()}`.padStart(2, 0);
  748. const minute = `${date.getMinutes()}`.padStart(2, 0);
  749. return `${year}-${month}-${day} ${hour}:${minute}`;
  750. },
  751. confirmAction(confirm) {
  752. this.confirm = confirm;
  753. this.updateConfirmMessage(confirm.message);
  754. this.openModal("confirm");
  755. },
  756. handleConfirmed() {
  757. const { action, params } = this.confirm;
  758. if (typeof this[action] === "function") {
  759. if (params) this[action](params);
  760. else this[action]();
  761. }
  762. this.confirm = {
  763. message: "",
  764. action: "",
  765. params: null
  766. };
  767. },
  768. ...mapActions("modals/editSong", ["editSong"]),
  769. ...mapActions("modals/editSongs", ["editSongs"]),
  770. ...mapActions("modals/confirm", ["updateConfirmMessage"]),
  771. ...mapActions("modalVisibility", ["openModal"])
  772. }
  773. };
  774. </script>
  775. <style lang="less" scoped>
  776. .song-thumbnail {
  777. display: block;
  778. width: 50px;
  779. height: 50px;
  780. margin: 0 auto;
  781. object-fit: contain;
  782. }
  783. :deep(.bulk-popup .bulk-actions) {
  784. .verify-songs-icon {
  785. color: var(--green);
  786. }
  787. & > span {
  788. position: relative;
  789. top: 6px;
  790. margin-left: 5px;
  791. height: 25px;
  792. & > div {
  793. height: 25px;
  794. & > .unverify-songs-icon {
  795. color: var(--dark-red);
  796. top: unset;
  797. margin-left: unset;
  798. }
  799. }
  800. }
  801. }
  802. </style>