2020-08-03 20:46:37 +00:00
|
|
|
import QtQuick 2.14
|
2020-05-27 21:28:25 +00:00
|
|
|
import QtQuick.Layouts 1.3
|
2020-08-03 20:46:37 +00:00
|
|
|
import QtQuick.Controls 2.14
|
|
|
|
import QtQml.StateMachine 1.14 as DSM
|
2020-05-27 21:28:25 +00:00
|
|
|
import "../../../../imports"
|
2020-06-19 18:06:58 +00:00
|
|
|
import "../../../../shared"
|
2020-08-03 20:46:37 +00:00
|
|
|
import "./Ens"
|
2020-05-27 21:28:25 +00:00
|
|
|
|
|
|
|
Item {
|
|
|
|
id: ensContainer
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
2020-08-03 20:46:37 +00:00
|
|
|
property bool showSearchScreen: false
|
2020-08-04 22:22:51 +00:00
|
|
|
property string addedUsername: ""
|
2020-08-06 19:45:57 +00:00
|
|
|
property string selectedUsername: ""
|
2020-08-03 20:46:37 +00:00
|
|
|
|
2020-08-04 22:22:51 +00:00
|
|
|
signal next(output: string)
|
2020-08-06 19:45:57 +00:00
|
|
|
signal back()
|
2020-08-27 16:06:53 +00:00
|
|
|
signal done(ensUsername: string)
|
2020-08-04 22:22:51 +00:00
|
|
|
signal connect(ensUsername: string)
|
2020-08-27 20:18:14 +00:00
|
|
|
signal changePubKey(ensUsername: string)
|
|
|
|
|
2020-08-04 22:22:51 +00:00
|
|
|
|
|
|
|
signal goToWelcome();
|
|
|
|
signal goToList();
|
|
|
|
|
|
|
|
function goToStart(){
|
|
|
|
if(profileModel.ens.rowCount() > 0){
|
|
|
|
goToList();
|
|
|
|
} else {
|
|
|
|
goToWelcome();
|
|
|
|
}
|
|
|
|
}
|
2020-08-03 20:46:37 +00:00
|
|
|
|
|
|
|
DSM.StateMachine {
|
|
|
|
id: stateMachine
|
|
|
|
initialState: welcomeState
|
|
|
|
running: true
|
|
|
|
|
|
|
|
DSM.State {
|
|
|
|
id: welcomeState
|
|
|
|
onEntered: loader.sourceComponent = welcome
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: searchState
|
|
|
|
signal: next
|
|
|
|
}
|
2020-08-04 22:22:51 +00:00
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: listState
|
|
|
|
signal: goToList
|
|
|
|
}
|
2020-08-03 20:46:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DSM.State {
|
|
|
|
id: searchState
|
|
|
|
onEntered: loader.sourceComponent = search
|
2020-08-04 22:22:51 +00:00
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: tAndCState
|
|
|
|
signal: next
|
|
|
|
guard: output === "available"
|
|
|
|
}
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: addedState
|
|
|
|
signal: connect
|
|
|
|
}
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: listState
|
|
|
|
signal: goToList
|
|
|
|
}
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: welcomeState
|
|
|
|
signal: goToWelcome
|
|
|
|
}
|
2020-08-27 20:18:14 +00:00
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: ensConnectedState
|
|
|
|
signal: done
|
|
|
|
}
|
2020-08-04 22:22:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DSM.State {
|
|
|
|
id: addedState
|
|
|
|
onEntered: {
|
|
|
|
loader.sourceComponent = added;
|
|
|
|
loader.item.ensUsername = addedUsername;
|
|
|
|
}
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: listState
|
|
|
|
signal: next
|
|
|
|
}
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: listState
|
|
|
|
signal: goToList
|
|
|
|
}
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: welcomeState
|
|
|
|
signal: goToWelcome
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DSM.State {
|
|
|
|
id: listState
|
|
|
|
onEntered: {
|
|
|
|
loader.sourceComponent = list;
|
|
|
|
}
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: searchState
|
|
|
|
signal: next
|
2020-08-06 19:45:57 +00:00
|
|
|
guard: output === "search"
|
|
|
|
}
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: detailsState
|
|
|
|
signal: next
|
|
|
|
guard: output === "details"
|
|
|
|
}
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: listState
|
|
|
|
signal: goToList
|
|
|
|
}
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: welcomeState
|
|
|
|
signal: goToWelcome
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DSM.State {
|
|
|
|
id: detailsState
|
|
|
|
onEntered: {
|
|
|
|
loader.sourceComponent = details;
|
|
|
|
}
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: listState
|
|
|
|
signal: back
|
2020-08-04 22:22:51 +00:00
|
|
|
}
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: listState
|
|
|
|
signal: goToList
|
|
|
|
}
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: welcomeState
|
|
|
|
signal: goToWelcome
|
|
|
|
}
|
2020-08-03 20:46:37 +00:00
|
|
|
}
|
2020-08-04 22:22:51 +00:00
|
|
|
|
|
|
|
DSM.State {
|
|
|
|
id: tAndCState
|
|
|
|
onEntered:loader.sourceComponent = termsAndConditions
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: listState
|
|
|
|
signal: goToList
|
|
|
|
}
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: welcomeState
|
|
|
|
signal: goToWelcome
|
|
|
|
}
|
2020-08-26 21:13:26 +00:00
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: listState
|
|
|
|
signal: back
|
|
|
|
}
|
2020-08-27 16:06:53 +00:00
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: listState
|
|
|
|
signal: back
|
|
|
|
}
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: ensRegisteredState
|
|
|
|
signal: done
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DSM.State {
|
|
|
|
id: ensRegisteredState
|
|
|
|
onEntered:loader.sourceComponent = ensRegistered
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: listState
|
|
|
|
signal: next
|
|
|
|
}
|
2020-08-03 20:46:37 +00:00
|
|
|
}
|
2020-08-27 20:18:14 +00:00
|
|
|
|
|
|
|
DSM.State {
|
|
|
|
id: ensConnectedState
|
|
|
|
onEntered:loader.sourceComponent = ensConnected
|
|
|
|
DSM.SignalTransition {
|
|
|
|
targetState: listState
|
|
|
|
signal: next
|
|
|
|
}
|
|
|
|
}
|
2020-08-03 20:46:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Loader {
|
|
|
|
id: loader
|
|
|
|
anchors.fill: parent
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: welcome
|
|
|
|
Welcome {
|
2020-08-07 16:27:41 +00:00
|
|
|
onStartBtnClicked: next(null)
|
2020-08-03 20:46:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: search
|
2020-08-04 22:22:51 +00:00
|
|
|
Search {
|
2020-08-07 16:27:41 +00:00
|
|
|
onContinueClicked: {
|
2020-08-04 22:22:51 +00:00
|
|
|
if(output === "connected"){
|
|
|
|
connect(username)
|
|
|
|
} else {
|
2020-08-26 21:13:26 +00:00
|
|
|
selectedUsername = username;
|
2020-08-04 22:22:51 +00:00
|
|
|
next(output);
|
|
|
|
}
|
|
|
|
}
|
2020-08-27 20:18:14 +00:00
|
|
|
onUsernameUpdated: {
|
|
|
|
selectedUsername = username;
|
|
|
|
done(username);
|
|
|
|
}
|
2020-08-04 22:22:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: termsAndConditions
|
|
|
|
TermsAndConditions {
|
2020-08-26 21:13:26 +00:00
|
|
|
username: selectedUsername
|
|
|
|
onBackBtnClicked: back();
|
2020-08-27 16:06:53 +00:00
|
|
|
onUsernameRegistered: done(userName);
|
2020-08-04 22:22:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: added
|
|
|
|
Added {
|
2020-08-07 16:27:41 +00:00
|
|
|
onOkBtnClicked: next(null)
|
2020-08-04 22:22:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-27 16:06:53 +00:00
|
|
|
Component {
|
|
|
|
id: ensRegistered
|
|
|
|
ENSRegistered {
|
|
|
|
ensUsername: selectedUsername
|
|
|
|
onOkBtnClicked: next(null)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-27 20:18:14 +00:00
|
|
|
Component {
|
|
|
|
id: ensConnected
|
|
|
|
ENSConnected {
|
|
|
|
ensUsername: selectedUsername
|
|
|
|
onOkBtnClicked: next(null)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-04 22:22:51 +00:00
|
|
|
Component {
|
|
|
|
id: list
|
|
|
|
List {
|
2020-08-07 16:27:41 +00:00
|
|
|
onAddBtnClicked: next("search")
|
|
|
|
onSelectEns: {
|
2020-08-06 19:45:57 +00:00
|
|
|
profileModel.ens.details(username)
|
|
|
|
selectedUsername = username;
|
|
|
|
next("details")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: details
|
|
|
|
ENSDetails {
|
|
|
|
username: selectedUsername
|
2020-08-07 16:27:41 +00:00
|
|
|
onBackBtnClicked: back();
|
2020-08-04 22:22:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Connections {
|
|
|
|
target: ensContainer
|
|
|
|
onConnect: {
|
|
|
|
addedUsername = ensUsername;
|
|
|
|
}
|
2020-05-27 21:28:25 +00:00
|
|
|
}
|
|
|
|
}
|