summary refs log tree commit diff
diff options
context:
space:
mode:
authorDeepBlueV7.X <nicolas.werner@hotmail.de>2020-11-25 22:04:22 +0100
committerGitHub <noreply@github.com>2020-11-25 22:04:22 +0100
commit2a5432d622ff19561f685fe90b2a1a142697e404 (patch)
tree6e89ae6e98928beb00a35e815b8fafbd7cd49a61
parentMerge pull request #335 from Nheko-Reborn/qml-text-input (diff)
parentMerge branch 'master' into fix-call-bar (diff)
downloadnheko-2a5432d622ff19561f685fe90b2a1a142697e404.tar.xz
Merge pull request #340 from trilene/fix-call-bar
Fix ActiveCallBar
-rw-r--r--resources/qml/ActiveCallBar.qml51
1 files changed, 26 insertions, 25 deletions
diff --git a/resources/qml/ActiveCallBar.qml b/resources/qml/ActiveCallBar.qml

index 49c0e255..9bbac632 100644 --- a/resources/qml/ActiveCallBar.qml +++ b/resources/qml/ActiveCallBar.qml
@@ -51,32 +51,33 @@ Rectangle { font.pointSize: fontMetrics.font.pointSize * 1.1 } - Connections { - target: TimelineManager - onCallStateChanged: { - switch (state) { - case WebRTCState.INITIATING: - callStateLabel.text = qsTr("Initiating..."); - break; - case WebRTCState.OFFERSENT: - callStateLabel.text = qsTr("Calling..."); - break; - case WebRTCState.CONNECTING: - callStateLabel.text = qsTr("Connecting..."); - break; - case WebRTCState.CONNECTED: - callStateLabel.text = "00:00"; - var d = new Date(); - callTimer.startTime = Math.floor(d.getTime() / 1000); - if (TimelineManager.onVideoCall) - stackLayout.currentIndex = 1; - - break; - case WebRTCState.DISCONNECTED: - callStateLabel.text = ""; - stackLayout.currentIndex = 0; + Item { + state: TimelineManager.callState + states: [ + State { + name: "OFFERSENT"; when: state == WebRTCState.OFFERSENT + PropertyChanges { target: callStateLabel; text: "Calling..." } + }, + State { + name: "CONNECTING"; when: state == WebRTCState.CONNECTING + PropertyChanges { target: callStateLabel; text: "Connecting..." } + }, + State { + name: "ANSWERSENT"; when: state == WebRTCState.ANSWERSENT + PropertyChanges { target: callStateLabel; text: "Connecting..." } + }, + State { + name: "CONNECTED"; when: state == WebRTCState.CONNECTED + PropertyChanges { target: callStateLabel; text: "00:00" } + PropertyChanges { target: callTimer; startTime: Math.floor((new Date()).getTime() / 1000) } + PropertyChanges { target: stackLayout; currentIndex: TimelineManager.onVideoCall ? 1 : 0 } + }, + State { + name: "DISCONNECTED"; when: state == WebRTCState.DISCONNECTED + PropertyChanges { target: callStateLabel; text: "" } + PropertyChanges { target: stackLayout; currentIndex: 0 } } - } + ] } Timer {