mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-17 21:58:03 +00:00
feat: updates
This commit is contained in:
parent
a1b0bcf4d3
commit
884f3df41a
198 changed files with 4572 additions and 5336 deletions
|
|
@ -36,6 +36,11 @@ export const openContextMenu = ({
|
|||
dataSourceID: ContextMenu['dataSourceID']
|
||||
options?: ContextMenu['options']
|
||||
}) => {
|
||||
if (event.target === contextMenus.target) {
|
||||
closeContextMenu()
|
||||
return
|
||||
}
|
||||
|
||||
const target = event.target as HTMLElement
|
||||
contextMenus.target = ref(target)
|
||||
|
||||
|
|
@ -48,8 +53,8 @@ export const openContextMenu = ({
|
|||
}
|
||||
}
|
||||
|
||||
export const closeContextMenu = (event: MouseEvent) => {
|
||||
if (event.target === contextMenus.target) {
|
||||
export const closeContextMenu = (event?: MouseEvent) => {
|
||||
if (event?.target === contextMenus.target) {
|
||||
return
|
||||
}
|
||||
assign(contextMenus, initContextMenu)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue