mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
120 lines
3.8 KiB
Vue
120 lines
3.8 KiB
Vue
<template>
|
|
<div class="modal-wrapper" :class="{ overlay: showingModalName }">
|
|
<CreateSmartPlaylistForm v-if="showingModalName === 'create-smart-playlist-form'" @close="close"/>
|
|
<EditSmartPlaylistForm v-if="showingModalName === 'edit-smart-playlist-form'" @close="close"/>
|
|
<AddUserForm v-if="showingModalName === 'add-user-form'" @close="close"/>
|
|
<EditUserForm v-if="showingModalName === 'edit-user-form'" @close="close"/>
|
|
<EditSongForm v-if="showingModalName === 'edit-song-form'" @close="close"/>
|
|
<AboutKoel v-if="showingModalName === 'about-koel'" @close="close"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { defineAsyncComponent, ref } from 'vue'
|
|
import { arrayify, eventBus, provideReadonly } from '@/utils'
|
|
import { EditSongFormInitialTabKey, PlaylistKey, SongsKey, UserKey } from '@/symbols'
|
|
|
|
declare type ModalName =
|
|
| 'create-smart-playlist-form'
|
|
| 'edit-smart-playlist-form'
|
|
| 'add-user-form'
|
|
| 'edit-user-form'
|
|
| 'edit-song-form'
|
|
| 'about-koel'
|
|
|
|
const CreateSmartPlaylistForm = defineAsyncComponent(() => import('@/components/playlist/smart-playlist/SmartPlaylistCreateForm.vue'))
|
|
const EditSmartPlaylistForm = defineAsyncComponent(() => import('@/components/playlist/smart-playlist/SmartPlaylistEditForm.vue'))
|
|
const AddUserForm = defineAsyncComponent(() => import('@/components/user/UserAddForm.vue'))
|
|
const EditUserForm = defineAsyncComponent(() => import('@/components/user/UserEditForm.vue'))
|
|
const EditSongForm = defineAsyncComponent(() => import('@/components/song/SongEditForm.vue'))
|
|
const AboutKoel = defineAsyncComponent(() => import('@/components/meta/AboutKoelModal.vue'))
|
|
|
|
const showingModalName = ref<ModalName | null>(null)
|
|
|
|
const close = () => (showingModalName.value = null)
|
|
|
|
const playlistToEdit = ref<Playlist>()
|
|
const userToEdit = ref<User>()
|
|
const songsToEdit = ref<Song[]>()
|
|
const editSongFormInitialTab = ref<EditSongFormTabName>('details')
|
|
|
|
provideReadonly(PlaylistKey, playlistToEdit, false)
|
|
provideReadonly(UserKey, userToEdit)
|
|
provideReadonly(SongsKey, songsToEdit, false)
|
|
provideReadonly(EditSongFormInitialTabKey, editSongFormInitialTab)
|
|
|
|
eventBus.on({
|
|
'MODAL_SHOW_ABOUT_KOEL': () => (showingModalName.value = 'about-koel'),
|
|
'MODAL_SHOW_ADD_USER_FORM': () => (showingModalName.value = 'add-user-form'),
|
|
'MODAL_SHOW_CREATE_SMART_PLAYLIST_FORM': () => (showingModalName.value = 'create-smart-playlist-form'),
|
|
|
|
'MODAL_SHOW_EDIT_SMART_PLAYLIST_FORM': (playlist: Playlist) => {
|
|
playlistToEdit.value = playlist
|
|
showingModalName.value = 'edit-smart-playlist-form'
|
|
},
|
|
|
|
'MODAL_SHOW_EDIT_USER_FORM': (user: User) => {
|
|
userToEdit.value = user
|
|
showingModalName.value = 'edit-user-form'
|
|
},
|
|
|
|
'MODAL_SHOW_EDIT_SONG_FORM': (songs: Song | Song[], initialTab: EditSongFormTabName = 'details') => {
|
|
songsToEdit.value = arrayify(songs)
|
|
editSongFormInitialTab.value = initialTab
|
|
showingModalName.value = 'edit-song-form'
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.modal-wrapper {
|
|
form {
|
|
position: relative;
|
|
min-width: 460px;
|
|
max-width: calc(100% - 24px);
|
|
background-color: var(--color-bg-primary);
|
|
border-radius: 4px;
|
|
|
|
@media only screen and (max-width: 667px) {
|
|
min-width: calc(100% - 24px);
|
|
}
|
|
|
|
> header, > main, > footer {
|
|
padding: 1.2rem;
|
|
}
|
|
|
|
> * + * {
|
|
margin-top: 1.25rem;
|
|
}
|
|
|
|
> footer {
|
|
margin-top: 0;
|
|
}
|
|
|
|
[type=text], [type=number], [type=email], [type=password], [type=url], [type=date], textarea, select {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
height: 32px;
|
|
}
|
|
|
|
.warning {
|
|
color: var(--color-red);
|
|
}
|
|
|
|
textarea {
|
|
min-height: 192px;
|
|
}
|
|
|
|
> header {
|
|
display: flex;
|
|
background: var(--color-bg-secondary);
|
|
|
|
h1 {
|
|
font-size: 1.8rem;
|
|
line-height: 2.2rem;
|
|
margin-bottom: .3rem;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|