2022-03-03 22:50:53 +00:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQml.StateMachine 1.14 as DSM
|
|
|
|
import utils 1.0
|
|
|
|
|
|
|
|
import "views"
|
|
|
|
import "stores"
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
id: root
|
|
|
|
property bool hasAccounts
|
2022-03-07 22:59:38 +00:00
|
|
|
property string keysMainSetState: ""
|
|
|
|
|
2022-03-03 22:50:53 +00:00
|
|
|
signal loadApp()
|
2022-03-04 23:31:31 +00:00
|
|
|
signal onBoardingStepChanged(var view, string state)
|
2022-03-03 22:50:53 +00:00
|
|
|
|
|
|
|
property var stateMachine: DSM.StateMachine {
|
|
|
|
id: stateMachine
|
|
|
|
initialState: onboardingState
|
|
|
|
running: true
|
|
|
|
|
|
|
|
DSM.State {
|
|
|
|
id: onboardingState
|
2022-03-07 22:59:38 +00:00
|
|
|
initialState: root.hasAccounts ? stateLogin : welcomeMainState
|
2022-03-03 22:50:53 +00:00
|
|
|
|
|
|
|
DSM.State {
|
2022-03-07 22:59:38 +00:00
|
|
|
id: welcomeMainState
|
2022-03-04 23:31:31 +00:00
|
|
|
onEntered: { onBoardingStepChanged(welcomeMain, ""); }
|
2022-03-03 22:50:53 +00:00
|
|
|
|
2022-03-07 22:59:38 +00:00
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: keysMainState
|
|
|
|
signal: Global.applicationWindow.navigateTo
|
|
|
|
guard: path === "KeyMain"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DSM.State {
|
|
|
|
id: keysMainState
|
|
|
|
onEntered: { onBoardingStepChanged(keysMain, root.keysMainSetState); }
|
|
|
|
|
2022-03-03 22:50:53 +00:00
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: genKeyState
|
|
|
|
signal: Global.applicationWindow.navigateTo
|
|
|
|
guard: path === "GenKey"
|
|
|
|
}
|
2022-03-07 22:59:38 +00:00
|
|
|
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: welcomeMainState
|
|
|
|
signal: Global.applicationWindow.navigateTo
|
|
|
|
guard: path === "Welcome"
|
|
|
|
}
|
2022-03-03 22:50:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DSM.State {
|
|
|
|
id: existingKeyState
|
2022-03-04 23:31:31 +00:00
|
|
|
onEntered: { onBoardingStepChanged(existingKey, ""); }
|
2022-03-03 22:50:53 +00:00
|
|
|
|
2022-03-07 22:59:38 +00:00
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: genKeyState
|
|
|
|
signal: Global.applicationWindow.navigateTo
|
|
|
|
guard: path === "GenKey"
|
|
|
|
}
|
|
|
|
|
2022-03-03 22:50:53 +00:00
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: appState
|
|
|
|
signal: startupModule.appStateChanged
|
|
|
|
guard: state === Constants.appState.main
|
|
|
|
}
|
2022-03-07 22:59:38 +00:00
|
|
|
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: welcomeMainState
|
|
|
|
signal: Global.applicationWindow.navigateTo
|
|
|
|
guard: path === "Welcome"
|
|
|
|
}
|
2022-03-03 22:50:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DSM.State {
|
|
|
|
id: genKeyState
|
2022-03-04 23:31:31 +00:00
|
|
|
onEntered: { onBoardingStepChanged(genKey, ""); }
|
2022-03-07 22:59:38 +00:00
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: welcomeMainState
|
|
|
|
signal: Global.applicationWindow.navigateTo
|
|
|
|
guard: path === "Welcome"
|
|
|
|
}
|
2022-03-03 22:50:53 +00:00
|
|
|
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: appState
|
2022-03-07 22:59:38 +00:00
|
|
|
signal: Global.applicationWindow.navigateTo
|
|
|
|
guard: path === "LoggedIn"
|
|
|
|
}
|
|
|
|
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: stateLogin
|
|
|
|
signal: Global.applicationWindow.navigateTo
|
|
|
|
guard: path === "LogIn"
|
2022-03-03 22:50:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DSM.State {
|
|
|
|
id: keycardState
|
2022-03-04 23:31:31 +00:00
|
|
|
onEntered: { onBoardingStepChanged(keycardFlowSelection, ""); }
|
2022-03-03 22:50:53 +00:00
|
|
|
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: appState
|
|
|
|
signal: startupModule.appStateChanged
|
|
|
|
guard: state === Constants.appState.main
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-01 15:59:38 +00:00
|
|
|
DSM.State {
|
|
|
|
id: createPasswordState
|
|
|
|
onEntered: loader.sourceComponent = createPassword
|
|
|
|
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: appState
|
|
|
|
signal: startupModule.appStateChanged
|
|
|
|
guard: state === Constants.appState.main
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DSM.State {
|
|
|
|
id: confirmPasswordState
|
|
|
|
onEntered: loader.sourceComponent = confirmPassword
|
|
|
|
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: appState
|
|
|
|
signal: startupModule.appStateChanged
|
|
|
|
guard: state === Constants.appState.main
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-03 22:50:53 +00:00
|
|
|
DSM.State {
|
|
|
|
id: stateLogin
|
2022-03-04 23:31:31 +00:00
|
|
|
onEntered: { onBoardingStepChanged(login, ""); }
|
2022-03-03 22:50:53 +00:00
|
|
|
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: appState
|
|
|
|
signal: startupModule.appStateChanged
|
|
|
|
guard: state === Constants.appState.main
|
|
|
|
}
|
|
|
|
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: genKeyState
|
|
|
|
signal: Global.applicationWindow.navigateTo
|
|
|
|
guard: path === "GenKey"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: root.hasAccounts ? stateLogin : keysMainState
|
|
|
|
signal: Global.applicationWindow.navigateTo
|
|
|
|
guard: path === "InitialState"
|
|
|
|
}
|
|
|
|
|
|
|
|
DSM.SignalTransition {
|
2022-03-07 22:59:38 +00:00
|
|
|
targetState: keysMainState
|
2022-03-03 22:50:53 +00:00
|
|
|
signal: Global.applicationWindow.navigateTo
|
2022-03-07 22:59:38 +00:00
|
|
|
guard: path === "KeysMain"
|
2022-03-03 22:50:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DSM.SignalTransition {
|
2022-03-07 22:59:38 +00:00
|
|
|
targetState: existingKeyState
|
2022-03-03 22:50:53 +00:00
|
|
|
signal: Global.applicationWindow.navigateTo
|
2022-03-07 22:59:38 +00:00
|
|
|
guard: path === "ExistingKey"
|
2022-03-03 22:50:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: keycardState
|
|
|
|
signal: Global.applicationWindow.navigateTo
|
|
|
|
guard: path === "KeycardFlowSelection"
|
|
|
|
}
|
|
|
|
|
|
|
|
DSM.FinalState {
|
|
|
|
id: onboardingDoneState
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DSM.State {
|
|
|
|
id: appState
|
|
|
|
onEntered: loadApp();
|
|
|
|
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: stateLogin
|
|
|
|
signal: startupModule.logOut
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-04 23:31:31 +00:00
|
|
|
property var welcomeComponent: Component {
|
|
|
|
id: welcomeMain
|
|
|
|
WelcomeView {
|
|
|
|
onBtnNewUserClicked: {
|
2022-03-07 22:59:38 +00:00
|
|
|
root.keysMainSetState = "getkeys";
|
|
|
|
Global.applicationWindow.navigateTo("KeyMain");
|
2022-03-04 23:31:31 +00:00
|
|
|
}
|
|
|
|
onBtnExistingUserClicked: {
|
2022-03-07 22:59:38 +00:00
|
|
|
root.keysMainSetState = "connectkeys";
|
|
|
|
Global.applicationWindow.navigateTo("KeyMain");
|
2022-03-04 23:31:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-03 22:50:53 +00:00
|
|
|
property var keysMainComponent: Component {
|
|
|
|
id: keysMain
|
|
|
|
KeysMainView {
|
2022-03-04 23:31:31 +00:00
|
|
|
onButtonClicked: {
|
|
|
|
Global.applicationWindow.navigateTo("GenKey");
|
|
|
|
}
|
|
|
|
onKeycardLinkClicked: {
|
|
|
|
Global.applicationWindow.navigateTo("KeycardFlowSelection");
|
|
|
|
}
|
|
|
|
onSeedLinkClicked: {
|
|
|
|
Global.applicationWindow.navigateTo("ExistingKey");
|
|
|
|
}
|
|
|
|
onBackClicked: {
|
2022-03-07 22:59:38 +00:00
|
|
|
Global.applicationWindow.navigateTo("Welcome");
|
2022-03-04 23:31:31 +00:00
|
|
|
}
|
2022-03-03 22:50:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
property var existingKeyComponent: Component {
|
|
|
|
id: existingKey
|
|
|
|
ExistingKeyView {
|
2022-03-07 22:59:38 +00:00
|
|
|
onShowCreatePasswordView: {
|
|
|
|
Global.applicationWindow.navigateTo("GenKey");
|
|
|
|
}
|
2022-03-03 22:50:53 +00:00
|
|
|
onClosed: function () {
|
|
|
|
if (root.hasAccounts) {
|
|
|
|
Global.applicationWindow.navigateTo("InitialState")
|
|
|
|
} else {
|
|
|
|
Global.applicationWindow.navigateTo("KeysMain")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
property var genKeyComponent: Component {
|
|
|
|
id: genKey
|
|
|
|
GenKeyView {
|
2022-03-07 22:59:38 +00:00
|
|
|
onFinished: {
|
|
|
|
if (LoginStore.currentAccount.username !== "") {
|
|
|
|
Global.applicationWindow.navigateTo("LogIn");
|
2022-03-03 22:50:53 +00:00
|
|
|
} else {
|
2022-03-07 22:59:38 +00:00
|
|
|
Global.applicationWindow.navigateTo("KeysMain");
|
2022-03-03 22:50:53 +00:00
|
|
|
}
|
|
|
|
}
|
2022-03-07 22:59:38 +00:00
|
|
|
onKeysGenerated: {
|
|
|
|
Global.applicationWindow.navigateTo("LoggedIn")
|
|
|
|
}
|
2022-03-03 22:50:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
property var keycardFlowSelectionComponent: Component {
|
|
|
|
id: keycardFlowSelection
|
|
|
|
KeycardFlowSelectionView {
|
|
|
|
onClosed: function () {
|
|
|
|
if (root.hasAccounts) {
|
|
|
|
Global.applicationWindow.navigateTo("InitialState")
|
|
|
|
} else {
|
|
|
|
Global.applicationWindow.navigateTo("KeysMain")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
property var loginComponent: Component {
|
|
|
|
id: login
|
|
|
|
LoginView {
|
|
|
|
onGenKeyClicked: function () {
|
|
|
|
Global.applicationWindow.navigateTo("GenKey")
|
|
|
|
}
|
|
|
|
onExistingKeyClicked: function () {
|
|
|
|
Global.applicationWindow.navigateTo("ExistingKey")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|