changed openWindow signature

This commit is contained in:
2025-10-20 20:03:39 +02:00
parent 2b8f1781f3
commit 57fb496fca
2 changed files with 45 additions and 21 deletions

View File

@ -113,8 +113,8 @@ const openItem = async (item: LauncherItem) => {
// Check if we're on the desktop page
const isOnDesktop = route.name === 'desktop'
console.log('currentWorkspace', currentWorkspace.value)
if (!isOnDesktop) {
console.log('currentWorkspace', currentWorkspace.value, route.name)
/* if (!isOnDesktop) {
// Navigate to desktop first
await router.push(
localePath({
@ -124,15 +124,16 @@ const openItem = async (item: LauncherItem) => {
// Wait for navigation and DOM update
await nextTick()
}
} */
// Open the window with correct type and sourceId
windowManagerStore.openWindow(
item.type, // 'system' or 'extension'
item.id, // systemWindowId or extensionId
item.name,
item.icon,
)
windowManagerStore.openWindow({
sourceId: item.id,
type: item.type, // 'system' or 'extension'
icon: item.icon, // systemWindowId or extensionId
title: item.name,
workspaceId: currentWorkspace.value?.id,
})
open.value = false
}