-
-
Notifications
You must be signed in to change notification settings - Fork 33
refactor(widget): Centralize device name logic and improve widget upd… #113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…ates This commit introduces a centralized function for determining a device's display name and refactors widget updates to be more robust and efficient. - A non-composable `getDeviceName` utility function has been created to provide a consistent device name (custom name, then original name, then a fallback) for use in widgets and other non-UI contexts. - The `WledWidgetConfigureActivity` now uses this new function when creating initial widget data. - Device name changes now trigger an immediate update on associated widgets, ensuring the new name is reflected without waiting for the next state refresh. - Deleting a device now correctly clears the data for all its associated widgets, putting them into a re-configurable error state. - WebSocket and API update logic in `WledWidgetManager` has been streamlined, now passing the full `DeviceWithState` or `Device` object instead of multiple parameters. This allows the manager to consistently use the new `getDeviceName` function for all updates.
Summary of ChangesHello @Moustachauve, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request significantly improves the consistency and reliability of device name display and widget management within the application. By centralizing the logic for determining a device's display name and streamlining widget update processes, it ensures that widgets accurately reflect device information and respond appropriately to changes in device configuration or deletion. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request is a solid refactoring effort that significantly improves the widget functionality. Centralizing the device name logic with the getDeviceName function is a great change for code consistency and maintainability. The widget updates are now more robust, correctly reflecting device name changes and deletions. Streamlining the WledWidgetManager API to use DeviceWithState and Device objects simplifies the code and enhances readability. Overall, these are excellent changes. I have one minor suggestion to ensure I/O operations are explicitly dispatched to a background thread.
...c/main/java/ca/cgagnier/wlednativeandroid/ui/homeScreen/list/DeviceWebsocketListViewModel.kt
Outdated
Show resolved
Hide resolved
The device deletion process, which includes database operations and widget management, is now explicitly moved to the I/O dispatcher. This prevents blocking the main thread during these operations.
…ates
This commit introduces a centralized function for determining a device's display name and refactors widget updates to be more robust and efficient.
getDeviceNameutility function has been created to provide a consistent device name (custom name, then original name, then a fallback) for use in widgets and other non-UI contexts.WledWidgetConfigureActivitynow uses this new function when creating initial widget data.WledWidgetManagerhas been streamlined, now passing the fullDeviceWithStateorDeviceobject instead of multiple parameters. This allows the manager to consistently use the newgetDeviceNamefunction for all updates.