launcher improvements

This commit is contained in:
zadam
2022-12-02 16:46:14 +01:00
parent 7b36709e18
commit b85f335561
17 changed files with 283 additions and 196 deletions

View File

@@ -1,29 +1,24 @@
import ButtonWidget from "./button_widget.js";
import protectedSessionHolder from "../../services/protected_session_holder.js";
import CommandButtonWidget from "./command_button.js";
export default class ProtectedSessionStatusWidget extends ButtonWidget {
doRender() {
this.updateSettings();
export default class ProtectedSessionStatusWidget extends CommandButtonWidget {
constructor() {
super();
super.doRender();
}
updateSettings() {
this.settings.icon = protectedSessionHolder.isProtectedSessionAvailable()
this.settings.icon = () => protectedSessionHolder.isProtectedSessionAvailable()
? "bx-check-shield"
: "bx-shield-quarter";
this.settings.title = protectedSessionHolder.isProtectedSessionAvailable()
this.settings.title = () => protectedSessionHolder.isProtectedSessionAvailable()
? "Protected session is active. Click to leave protected session."
: "Click to enter protected session";
this.settings.command = protectedSessionHolder.isProtectedSessionAvailable()
this.settings.command = () => protectedSessionHolder.isProtectedSessionAvailable()
? "leaveProtectedSession"
: "enterProtectedSession";
}
protectedSessionStartedEvent() {
this.updateSettings();
this.refreshIcon();
}
}