mirror of
https://github.com/koel/koel
synced 2024-12-03 17:29:33 +00:00
101 lines
2.5 KiB
Vue
101 lines
2.5 KiB
Vue
<template>
|
|
<section id="playlists">
|
|
<h1>Playlists
|
|
<i
|
|
:class="{ creating }"
|
|
class="fa fa-plus-circle control create"
|
|
data-testid="sidebar-create-playlist-btn"
|
|
role="button"
|
|
title="Create a new playlist"
|
|
@click.prevent="toggleContextMenu"
|
|
></i>
|
|
</h1>
|
|
|
|
<form v-if="creating" @submit.prevent="createPlaylist" name="create-simple-playlist-form" class="create">
|
|
<input
|
|
v-model="newName"
|
|
v-koel-focus
|
|
name="name"
|
|
placeholder="↵ to save"
|
|
required
|
|
type="text"
|
|
@keyup.esc.prevent="creating = false"
|
|
>
|
|
</form>
|
|
|
|
<ul>
|
|
<PlaylistSidebarItem :playlist="{ name: 'Favorites', songs: favorites }" type="favorites"/>
|
|
<PlaylistSidebarItem :playlist="{ name: 'Recently Played', songs: [] }" type="recently-played"/>
|
|
<PlaylistSidebarItem
|
|
v-for="playlist in playlists"
|
|
:key="playlist.id"
|
|
:playlist="playlist"
|
|
type="playlist"
|
|
/>
|
|
</ul>
|
|
|
|
<ContextMenu ref="contextMenu" @createPlaylist="creating = true"/>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { defineAsyncComponent, nextTick, ref, toRef } from 'vue'
|
|
import { favoriteStore, playlistStore } from '@/stores'
|
|
import router from '@/router'
|
|
import { alerts } from '@/utils'
|
|
|
|
const PlaylistSidebarItem = defineAsyncComponent(() => import('@/components/playlist/PlaylistSidebarItem.vue'))
|
|
const ContextMenu = defineAsyncComponent(() => import('@/components/playlist/CreateNewPlaylistContextMenu.vue'))
|
|
|
|
const contextMenu = ref<InstanceType<typeof ContextMenu>>()
|
|
|
|
const playlists = toRef(playlistStore.state, 'playlists')
|
|
const favorites = toRef(favoriteStore.state, 'songs')
|
|
const creating = ref(false)
|
|
const newName = ref('')
|
|
|
|
const createPlaylist = async () => {
|
|
creating.value = false
|
|
|
|
const playlist = await playlistStore.store(newName.value)
|
|
newName.value = ''
|
|
|
|
alerts.success(`Playlist "${playlist.name}" created.`)
|
|
|
|
// Activate the new playlist right away
|
|
await nextTick()
|
|
router.go(`playlist/${playlist.id}`)
|
|
}
|
|
|
|
const toggleContextMenu = async (event: MouseEvent) => {
|
|
await nextTick()
|
|
if (creating.value) {
|
|
creating.value = false
|
|
} else {
|
|
contextMenu.value?.open(event.pageY, event.pageX)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
#playlists {
|
|
.control.create {
|
|
margin: -8px -10px -10px;
|
|
font-size: 16px;
|
|
transition: .3s;
|
|
padding: 10px;
|
|
|
|
&.creating {
|
|
transform: rotate(135deg);
|
|
}
|
|
}
|
|
|
|
form.create {
|
|
padding: 8px 16px;
|
|
|
|
input[type="text"] {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
</style>
|