-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathBlockClock.qml
243 lines (213 loc) · 7.22 KB
/
BlockClock.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
// Copyright (c) 2023 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import Qt.labs.settings 1.0
import org.bitcoincore.qt 1.0
import "../controls"
Item {
id: root
property real parentWidth: 600
property real parentHeight: 600
property bool showNetworkIndicator: true
width: dial.width
height: dial.height + networkIndicator.height + networkIndicator.anchors.topMargin
property alias header: mainText.text
property alias headerSize: mainText.font.pixelSize
property alias subText: subText.text
property int headerSize: 32
property bool connected: nodeModel.connected
property bool synced: nodeModel.synced
property string syncProgress: nodeModel.formattedVerificationProgress
property bool paused: false
property string syncTime: nodeModel.formattedRemainingSyncTime
property bool estimating: nodeModel.estimatingSyncTime
property bool faulted: nodeModel.faulted
activeFocusOnTab: true
Settings {
id: settings
property alias blockclocksize: dial.scale
}
BlockClockDial {
id: dial
anchors.horizontalCenter: root.horizontalCenter
scale: Theme.blockclocksize
width: {Math.max(Math.min(200, Math.min(root.parentWidth - 30, root.parentHeight - 30)),
Math.min((root.parentWidth * dial.scale), (root.parentHeight * dial.scale)))}
height: dial.width
penWidth: dial.width / 50
timeRatioList: chainModel.timeRatioList
verificationProgress: nodeModel.verificationProgress
paused: root.paused || root.faulted
connected: root.connected
synced: root.synced
backgroundColor: Theme.color.neutral2
timeTickColor: Theme.color.neutral5
confirmationColors: Theme.color.confirmationColors
Behavior on backgroundColor {
ColorAnimation { duration: 150 }
}
Behavior on timeTickColor {
ColorAnimation { duration: 150 }
}
Behavior on confirmationColors {
ColorAnimation { duration: 150 }
}
}
Icon {
id: bitcoinIcon
source: "image://images/bitcoin-circle"
color: Theme.color.neutral9
size: Math.max(dial.width / 5, 1)
anchors.bottom: mainText.top
anchors.horizontalCenter: root.horizontalCenter
}
Label {
id: mainText
anchors.centerIn: dial
font.family: "Inter"
font.styleName: "Semi Bold"
font.pixelSize: dial.width * (4/25)
color: Theme.color.neutral9
Behavior on color {
ColorAnimation { duration: 150 }
}
}
Label {
id: subText
anchors.top: mainText.bottom
property bool estimating: root.estimating
anchors.horizontalCenter: root.horizontalCenter
font.family: "Inter"
font.styleName: "Semi Bold"
font.pixelSize: dial.width * (9/100)
color: Theme.color.neutral4
Component.onCompleted: {
colorChanged.connect(function() {
if (!subText.estimating) {
themeChange.restart();
}
});
estimatingChanged.connect(function() {
if (subText.estimating) {
estimatingTime.start();
} else {
estimatingTime.stop();
}
});
subText.estimatingChanged(subText.estimating);
}
ColorAnimation on color{
id: themeChange
target: subText
duration: 150
}
SequentialAnimation {
id: estimatingTime
loops: Animation.Infinite
ColorAnimation { target: subText; property: "color"; from: subText.color; to: Theme.color.neutral6; duration: 1000 }
ColorAnimation { target: subText; property: "color"; from: Theme.color.neutral6; to: subText.color; duration: 1000 }
}
}
PeersIndicator {
anchors.top: subText.bottom
anchors.topMargin: dial.width / 10
anchors.horizontalCenter: root.horizontalCenter
numOutboundPeers: nodeModel.numOutboundPeers
maxNumOutboundPeers: nodeModel.maxNumOutboundPeers
indicatorDimensions: dial.width * (3/200)
indicatorSpacing: dial.width / 40
paused: root.paused || root.faulted
}
NetworkIndicator {
id: networkIndicator
show: root.showNetworkIndicator
anchors.top: dial.bottom
anchors.topMargin: networkIndicator.visible ? 30 : 0
anchors.horizontalCenter: root.horizontalCenter
}
MouseArea {
anchors.fill: dial
cursorShape: root.faulted ? Qt.ArrowCursor : Qt.PointingHandCursor
enabled: !root.faulted
onClicked: {
if (!root.faulted) {
root.paused = !root.paused
nodeModel.pause = root.paused
}
}
FocusBorder {
visible: root.activeFocus
}
}
states: [
State {
name: "IBD"; when: !synced && !paused && connected
PropertyChanges {
target: root
header: root.syncProgress
subText: root.syncTime
}
},
State {
name: "BLOCKCLOCK"; when: synced && !paused && connected
PropertyChanges {
target: root
header: Number(nodeModel.blockTipHeight).toLocaleString(Qt.locale(), 'f', 0)
subText: "Blocktime"
estimating: false
}
},
State {
name: "PAUSE"; when: paused && !faulted
PropertyChanges {
target: root
header: "Paused"
headerSize: dial.width * (3/25)
subText: "Tap to resume"
estimating: false
}
PropertyChanges {
target: bitcoinIcon
anchors.bottomMargin: dial.width / 40
}
PropertyChanges {
target: subText
anchors.topMargin: dial.width / 50
}
},
State {
name: "ERROR"; when: faulted
PropertyChanges {
target: root
header: "Error"
headerSize: dial.width * (3/25)
}
PropertyChanges {
target: bitcoinIcon
anchors.bottomMargin: dial.width / 40
icon.source: "image://images/error"
}
},
State {
name: "CONNECTING"; when: !paused && !connected
PropertyChanges {
target: root
header: "Connecting"
headerSize: dial.width * (3/25)
subText: "Please wait"
estimating: false
}
PropertyChanges {
target: bitcoinIcon
anchors.bottomMargin: dial.width / 40
}
PropertyChanges {
target: subText
anchors.topMargin: dial.width / 50
}
}
]
}