mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
20 lines
1.3 KiB
TypeScript
20 lines
1.3 KiB
TypeScript
import { DeepReadonly, InjectionKey, Ref } from 'vue'
|
|
import DialogBox from '@/components/ui/DialogBox.vue'
|
|
import MessageToaster from '@/components/ui/MessageToaster.vue'
|
|
|
|
export type ReadonlyInjectionKey<T> = InjectionKey<[Readonly<T> | DeepReadonly<T>, Closure]>
|
|
|
|
export const DialogBoxKey: InjectionKey<Ref<InstanceType<typeof DialogBox>>> = Symbol('DialogBox')
|
|
export const MessageToasterKey: InjectionKey<Ref<InstanceType<typeof MessageToaster>>> = Symbol('MessageToaster')
|
|
|
|
export const SongListTypeKey: ReadonlyInjectionKey<SongListType> = Symbol('SongListType')
|
|
export const SongsKey: ReadonlyInjectionKey<Ref<Song[]>> = Symbol('Songs')
|
|
export const SelectedSongsKey: ReadonlyInjectionKey<Ref<Song[]>> = Symbol('SelectedSongs')
|
|
export const SongListConfigKey: ReadonlyInjectionKey<Partial<SongListConfig>> = Symbol('SongListConfig')
|
|
export const SongListSortFieldKey: ReadonlyInjectionKey<Ref<SongListSortField>> = Symbol('SongListSortField')
|
|
export const SongListSortOrderKey: ReadonlyInjectionKey<Ref<SortOrder>> = Symbol('SongListSortOrder')
|
|
|
|
export const EditSongFormInitialTabKey: ReadonlyInjectionKey<Ref<EditSongFormTabName>> = Symbol('EditSongFormInitialTab')
|
|
|
|
export const PlaylistKey: ReadonlyInjectionKey<Ref<Playlist>> = Symbol('Playlist')
|
|
export const UserKey: ReadonlyInjectionKey<Ref<User>> = Symbol('User')
|