From 3512c58c2fb0ac6247459c198cdf1b8835cd7081 Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Sat, 18 Oct 2025 12:33:09 +0000 Subject: [PATCH] fix(test-app): resolve StatusCard reactivity and improve plugin status detection - Fix StatusCard component to properly react to prop changes by using computed() instead of ref() - Improve plugin detection in HomeView using proper ES6 import instead of window object access - Add comprehensive status mapping from plugin response to app store format - Add detailed logging for plugin status, permissions, and exact alarm status - Add separate Permissions status line in system status display - Enhance error handling and debugging information for plugin operations This resolves the issue where StatusCard was not updating when plugin status changed, and improves the overall reliability of plugin detection and status reporting. --- .../src/components/cards/StatusCard.vue | 6 +- .../src/views/HomeView.vue | 66 ++++++++++++++----- 2 files changed, 54 insertions(+), 18 deletions(-) diff --git a/test-apps/daily-notification-test/src/components/cards/StatusCard.vue b/test-apps/daily-notification-test/src/components/cards/StatusCard.vue index 1dac126..bdde148 100644 --- a/test-apps/daily-notification-test/src/components/cards/StatusCard.vue +++ b/test-apps/daily-notification-test/src/components/cards/StatusCard.vue @@ -37,7 +37,7 @@