2022-04-15 14:24:30 +00:00
|
|
|
<template>
|
2022-04-15 17:00:08 +00:00
|
|
|
<BaseContextMenu extra-class="playlist-item-menu" ref="base">
|
2022-04-15 14:24:30 +00:00
|
|
|
<li @click="editPlaylist" :data-testid="`playlist-context-menu-edit-${playlist.id}`">Edit</li>
|
|
|
|
<li @click="deletePlaylist" :data-testid="`playlist-context-menu-delete-${playlist.id}`">Delete</li>
|
2022-04-15 17:00:08 +00:00
|
|
|
</BaseContextMenu>
|
2022-04-15 14:24:30 +00:00
|
|
|
</template>
|
|
|
|
|
2022-04-15 17:00:08 +00:00
|
|
|
<script lang="ts" setup>
|
2022-04-20 10:35:36 +00:00
|
|
|
import { Ref, toRef } from 'vue'
|
2022-04-15 14:24:30 +00:00
|
|
|
import { eventBus } from '@/utils'
|
2022-04-15 17:00:08 +00:00
|
|
|
import { useContextMenu } from '@/composables'
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-04-20 10:35:36 +00:00
|
|
|
const { context, base, BaseContextMenu, open, close } = useContextMenu()
|
|
|
|
const playlist = toRef(context, 'playlist') as Ref<Playlist>
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-04-15 17:00:08 +00:00
|
|
|
const emit = defineEmits(['edit'])
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-04-15 17:00:08 +00:00
|
|
|
const editPlaylist = () => {
|
|
|
|
playlist.value.is_smart ? eventBus.emit('MODAL_SHOW_EDIT_SMART_PLAYLIST_FORM', playlist.value) : emit('edit')
|
|
|
|
close()
|
|
|
|
}
|
2022-04-15 14:24:30 +00:00
|
|
|
|
2022-04-15 17:00:08 +00:00
|
|
|
const deletePlaylist = () => {
|
|
|
|
eventBus.emit('PLAYLIST_DELETE', playlist.value)
|
|
|
|
close()
|
|
|
|
}
|
2022-04-20 10:35:36 +00:00
|
|
|
|
|
|
|
defineExpose({ open })
|
2022-04-15 14:24:30 +00:00
|
|
|
</script>
|