ENH - organize App Library suggestions

This commit is contained in:
Eichenholz
2026-08-06 20:36:09 +02:00
parent 5caedc7143
commit 9465ed1579
11 changed files with 176 additions and 18 deletions
+10
View File
@@ -28,6 +28,7 @@ import { useMailStore } from '@/stores/mail'
import { useMediaStore } from '@/stores/media'
import { useMarketplaceStore } from '@/stores/marketplace'
import { useAppStoreStore } from '@/stores/app-store'
import { isPhoneAppId } from '@/config/apps'
import { useNotesStore } from '@/stores/notes'
import { useWeatherStore } from '@/stores/weather'
import {
@@ -377,6 +378,15 @@ onMounted(() => {
}
})
watch(
() => route.params.appId,
(appId) => {
if (typeof appId === 'string' && isPhoneAppId(appId)) {
appStore.recordLaunch(appId)
}
},
)
watch(
[() => notifications.requiresAttention, () => calls.activeCall],
([requiresAttention, activeCall]) => {