123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356 |
- <template>
- <div>
- <page-metadata title="Admin | Playlists" />
- <div class="admin-tab">
- <div class="button-row">
- <run-job-dropdown :jobs="jobs" />
- </div>
- <advanced-table
- :column-default="columnDefault"
- :columns="columns"
- :filters="filters"
- data-action="playlists.getData"
- name="admin-playlists"
- :events="events"
- >
- <template #column-options="slotProps">
- <div class="row-options">
- <button
- class="
- button
- is-primary
- icon-with-button
- material-icons
- "
- @click="edit(slotProps.item._id)"
- :disabled="slotProps.item.removed"
- content="Edit Playlist"
- v-tippy
- >
- edit
- </button>
- </div>
- </template>
- <template #column-displayName="slotProps">
- <span :title="slotProps.item.displayName">{{
- slotProps.item.displayName
- }}</span>
- </template>
- <template #column-type="slotProps">
- <span :title="slotProps.item.type">{{
- slotProps.item.type
- }}</span>
- </template>
- <template #column-privacy="slotProps">
- <span :title="slotProps.item.privacy">{{
- slotProps.item.privacy
- }}</span>
- </template>
- <template #column-songsCount="slotProps">
- <span :title="slotProps.item.songs.length">{{
- slotProps.item.songs.length
- }}</span>
- </template>
- <template #column-totalLength="slotProps">
- <span
- :title="totalLengthForPlaylist(slotProps.item.songs)"
- >{{
- totalLengthForPlaylist(slotProps.item.songs)
- }}</span
- >
- </template>
- <template #column-createdBy="slotProps">
- <span v-if="slotProps.item.createdBy === 'Musare'"
- >Musare</span
- >
- <user-id-to-username
- v-else
- :user-id="slotProps.item.createdBy"
- :link="true"
- />
- </template>
- <template #column-createdAt="slotProps">
- <span :title="new Date(slotProps.item.createdAt)">{{
- getDateFormatted(slotProps.item.createdAt)
- }}</span>
- </template>
- <template #column-createdFor="slotProps">
- <span :title="slotProps.item.createdFor">{{
- slotProps.item.createdFor
- }}</span>
- </template>
- <template #column-_id="slotProps">
- <span :title="slotProps.item._id">{{
- slotProps.item._id
- }}</span>
- </template>
- </advanced-table>
- </div>
- <edit-playlist v-if="modals.editPlaylist" sector="admin" />
- <edit-song v-if="modals.editSong" song-type="songs" />
- <report v-if="modals.report" />
- </div>
- </template>
- <script>
- import { mapState, mapActions, mapGetters } from "vuex";
- import { defineAsyncComponent } from "vue";
- import AdvancedTable from "@/components/AdvancedTable.vue";
- import RunJobDropdown from "@/components/RunJobDropdown.vue";
- import UserIdToUsername from "@/components/UserIdToUsername.vue";
- import utils from "../../../../js/utils";
- export default {
- components: {
- EditPlaylist: defineAsyncComponent(() =>
- import("@/components/modals/EditPlaylist")
- ),
- Report: defineAsyncComponent(() =>
- import("@/components/modals/Report.vue")
- ),
- EditSong: defineAsyncComponent(() =>
- import("@/components/modals/EditSong")
- ),
- AdvancedTable,
- RunJobDropdown,
- UserIdToUsername
- },
- data() {
- return {
- utils,
- columnDefault: {
- sortable: true,
- hidable: true,
- defaultVisibility: "shown",
- draggable: true,
- resizable: true,
- minWidth: 150,
- maxWidth: 600
- },
- columns: [
- {
- name: "options",
- displayName: "Edit",
- properties: ["_id"],
- sortable: false,
- hidable: false,
- resizable: false,
- minWidth: 51,
- defaultWidth: 51
- },
- {
- name: "displayName",
- displayName: "Display Name",
- properties: ["displayName"],
- sortProperty: "displayName"
- },
- {
- name: "type",
- displayName: "Type",
- properties: ["type"],
- sortProperty: "type"
- },
- {
- name: "privacy",
- displayName: "Privacy",
- properties: ["privacy"],
- sortProperty: "privacy"
- },
- {
- name: "songsCount",
- displayName: "Songs #",
- properties: ["songs"],
- sortable: false,
- minWidth: 80,
- defaultWidth: 80
- },
- {
- name: "totalLength",
- displayName: "Total Length",
- properties: ["songs"],
- sortable: false,
- minWidth: 250,
- defaultWidth: 250
- },
- {
- name: "createdBy",
- displayName: "Created By",
- properties: ["createdBy"],
- sortProperty: "createdBy",
- defaultWidth: 150
- },
- {
- name: "createdAt",
- displayName: "Created At",
- properties: ["createdAt"],
- sortProperty: "createdAt",
- defaultWidth: 150
- },
- {
- name: "createdFor",
- displayName: "Created For",
- properties: ["createdFor"],
- sortProperty: "createdFor",
- minWidth: 230,
- defaultWidth: 230
- },
- {
- name: "_id",
- displayName: "Playlist ID",
- properties: ["_id"],
- sortProperty: "_id",
- minWidth: 230,
- defaultWidth: 230
- }
- ],
- filters: [
- {
- name: "_id",
- displayName: "Playlist ID",
- property: "_id",
- filterTypes: ["exact"],
- defaultFilterType: "exact"
- },
- {
- name: "displayName",
- displayName: "Display Name",
- property: "displayName",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- },
- {
- name: "type",
- displayName: "Type",
- property: "type",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- },
- {
- name: "privacy",
- displayName: "Privacy",
- property: "privacy",
- filterTypes: ["array", "regex"],
- defaultFilterType: "array",
- filterValues: ["public", "private"]
- },
- {
- name: "createdBy",
- displayName: "Created By",
- property: "createdBy",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- },
- {
- name: "createdAt",
- displayName: "Created At",
- property: "createdAt",
- filterTypes: ["datetimeBefore", "datetimeAfter"],
- defaultFilterType: "datetimeBefore"
- },
- {
- name: "createdFor",
- displayName: "Created For",
- property: "createdFor",
- filterTypes: ["contains", "exact", "regex"],
- defaultFilterType: "contains"
- }
- ],
- events: {
- adminRoom: "playlists",
- removed: {
- event: "admin.playlist.deleted",
- id: "playlistId"
- }
- },
- jobs: [
- {
- name: "Delete orphaned station playlists",
- socket: "playlists.deleteOrphanedStationPlaylists"
- },
- {
- name: "Delete orphaned genre playlists",
- socket: "playlists.deleteOrphanedGenrePlaylists"
- },
- {
- name: "Request orphaned playlist songs",
- socket: "playlists.requestOrphanedPlaylistSongs"
- },
- {
- name: "Clear and refill all station playlists",
- socket: "playlists.clearAndRefillAllStationPlaylists"
- },
- {
- name: "Clear and refill all genre playlists",
- socket: "playlists.clearAndRefillAllGenrePlaylists"
- },
- {
- name: "Create missing genre playlists",
- socket: "playlists.createMissingGenrePlaylists"
- }
- ]
- };
- },
- computed: {
- ...mapState("modalVisibility", {
- modals: state => state.modals
- }),
- ...mapGetters({
- socket: "websockets/getSocket"
- })
- },
- mounted() {
- // TODO
- // this.socket.on("event:admin.playlist.song.added", res =>
- // this.addPlaylistSong({
- // playlistId: res.data.playlistId,
- // song: res.data.song
- // })
- // );
- // this.socket.on("event:admin.playlist.song.removed", res =>
- // this.removePlaylistSong({
- // playlistId: res.data.playlistId,
- // youtubeId: res.data.youtubeId
- // })
- // );
- // this.socket.on("event:admin.playlist.displayName.updated", res =>
- // this.updatePlaylistDisplayName({
- // playlistId: res.data.playlistId,
- // displayName: res.data.displayName
- // })
- // );
- // this.socket.on("event:admin.playlist.privacy.updated", res =>
- // this.updatePlaylistPrivacy({
- // playlistId: res.data.playlistId,
- // privacy: res.data.privacy
- // })
- // );
- },
- methods: {
- edit(playlistId) {
- this.editPlaylist(playlistId);
- this.openModal("editPlaylist");
- },
- getDateFormatted(createdAt) {
- const date = new Date(createdAt);
- const year = date.getFullYear();
- const month = `${date.getMonth() + 1}`.padStart(2, 0);
- const day = `${date.getDate()}`.padStart(2, 0);
- const hour = `${date.getHours()}`.padStart(2, 0);
- const minute = `${date.getMinutes()}`.padStart(2, 0);
- return `${year}-${month}-${day} ${hour}:${minute}`;
- },
- totalLengthForPlaylist(songs) {
- let length = 0;
- songs.forEach(song => {
- length += song.duration;
- });
- return this.utils.formatTimeLong(length);
- },
- ...mapActions("modalVisibility", ["openModal"]),
- ...mapActions("user/playlists", ["editPlaylist"])
- }
- };
- </script>
|