forked from podman-desktop/podman-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: image checker extension API (podman-desktop#4662)
* feat: add image checker to api Signed-off-by: Philippe Martin <[email protected]> * feat: image checker api implementation Signed-off-by: Philippe Martin <[email protected]> * feat: image checker extension Signed-off-by: Philippe Martin <[email protected]> * feat: use image checker in UI Signed-off-by: Philippe Martin <[email protected]> * test: fix unit tests Signed-off-by: Philippe Martin <[email protected]> * refactor: move id initialization to internal Signed-off-by: Philippe Martin <[email protected]> * refactor: remove categories Signed-off-by: Philippe Martin <[email protected]> * refactor: move label to metadata Signed-off-by: Philippe Martin <[email protected]> * refactor: use ProviderResult Signed-off-by: Philippe Martin <[email protected]> * Apply suggestions from code review Co-authored-by: Florent BENOIT <[email protected]> Signed-off-by: Philippe Martin <[email protected]> * refactor: use async + fix return type Signed-off-by: Philippe Martin <[email protected]> * refactor: remove extension sample implementation Signed-off-by: Philippe Martin <[email protected]> * refactor: revert UI changes Signed-off-by: Philippe Martin <[email protected]> * feat: implement cancellation Signed-off-by: Philippe Martin <[email protected]> * test: unit tests Signed-off-by: Philippe Martin <[email protected]> --------- Signed-off-by: Philippe Martin <[email protected]> Co-authored-by: Florent BENOIT <[email protected]>
- Loading branch information
Showing
10 changed files
with
447 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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,9 @@ | ||
export type ImageCheckerExtensionInfo = { | ||
id: string; | ||
label: string; | ||
}; | ||
|
||
export interface ImageCheckerInfo { | ||
id: string; | ||
label: string; | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.