-
-
Notifications
You must be signed in to change notification settings - Fork 60
Register strategy as custom dashboard #323
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
Draft
balloob
wants to merge
8
commits into
DigiLive:main
Choose a base branch
from
balloob:patch-1
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
9186cfe
Register strategy as custom dashboard
balloob 1785e09
Fix type
balloob d850856
Address PR #323 comments: Add Window type declaration and refine regi…
Claude 232b5dd
Cut dist/mushroom-strategy.js
DigiLive f7e787c
Add custom Lovelace strategy interface
DigiLive 1414b09
Cut global Window type declaration
DigiLive 85fee56
Add latest build from `main`
DigiLive 2cc1ca5
Merge branch 'main' into patch-1
DigiLive File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/types/homeassistant/data/lovelace/lovelace_custom_strategies.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| /** | ||
| * Represents an entry in the custom Lovelace strategy registry in Home Assistant. | ||
| * | ||
| * @property {string} type - The unique strategy type identifier. | ||
| * @property {string} [name] - The display name of the strategy. | ||
| * @property {string} [description] - The description of the strategy. | ||
| * @property {string} [documentationURL] - The URL to the strategy documentation. | ||
| * @property {'dashboard'} strategyType - The strategy type. | ||
| */ | ||
| export interface CustomStrategyEntry { | ||
| type: string; | ||
| name?: string; | ||
| description?: string; | ||
| documentationURL?: string; | ||
| strategyType: 'dashboard'; | ||
| } | ||
|
|
||
| declare global { | ||
| //noinspection JSUnusedGlobalSymbols This extends global Window and is used in mushroom-strategy.ts | ||
| /** | ||
| * Represents the browser window object for custom Lovelace strategy registration. | ||
| * | ||
| * @property {CustomStrategyEntry[]} [customStrategies] - The registered custom Lovelace strategies. | ||
| */ | ||
| interface Window { | ||
| customStrategies?: CustomStrategyEntry[]; | ||
| } | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.