-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathBlockClock.qml
295 lines (264 loc) · 8.71 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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
// 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
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.numOutboundPeers > 0
property bool synced: !nodeModel.inIBD
property string syncProgress: formatProgressPercentage(nodeModel.verificationProgress * 100)
property bool paused: false
property var syncState: formatRemainingSyncTime(nodeModel.remainingSyncTime)
property string syncTime: syncState.text
property bool estimating: syncState.estimating
activeFocusOnTab: true
Settings {
id: settings
property alias blockclocksize: dial.scale
}
BlockClockDial {
id: dial
anchors.horizontalCenter: root.horizontalCenter
scale: Theme.blockclocksize
width: 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
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
}
NetworkIndicator {
id: networkIndicator
anchors.top: dial.bottom
anchors.topMargin: networkIndicator.visible ? 30 : 0
anchors.horizontalCenter: root.horizontalCenter
}
MouseArea {
anchors.fill: dial
cursorShape: Qt.PointingHandCursor
onClicked: {
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
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: "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
}
}
]
function formatProgressPercentage(progress) {
if (progress >= 1) {
return Math.round(progress) + "%"
} else if (progress >= 0.1) {
return progress.toFixed(1) + "%"
} else if (progress >= 0.01) {
return progress.toFixed(2) + "%"
} else {
return "0%"
}
}
function formatRemainingSyncTime(milliseconds) {
var minutes = Math.floor(milliseconds / 60000);
var seconds = Math.floor((milliseconds % 60000) / 1000);
var weeks = Math.floor(minutes / 10080);
minutes %= 10080;
var days = Math.floor(minutes / 1440);
minutes %= 1440;
var hours = Math.floor(minutes / 60);
minutes %= 60;
var result = "";
var estimatingStatus = false;
if (weeks > 0) {
return {
text: "~" + weeks + (weeks === 1 ? " week" : " weeks") + " left",
estimating: false
};
}
if (days > 0) {
return {
text: "~" + days + (days === 1 ? " day" : " days") + " left",
estimating: false
};
}
if (hours >= 5) {
return {
text: "~" + hours + (hours === 1 ? " hour" : " hours") + " left",
estimating: false
};
}
if (hours > 0) {
return {
text: "~" + hours + "h " + minutes + "m" + " left",
estimating: false
};
}
if (minutes >= 5) {
return {
text: "~" + minutes + (minutes === 1 ? " minute" : " minutes") + " left",
estimating: false
};
}
if (minutes > 0) {
return {
text: "~" + minutes + "m " + seconds + "s" + " left",
estimating: false
};
}
if (seconds > 0) {
return {
text: "~" + seconds + (seconds === 1 ? " second" : " seconds") + " left",
estimating: false
};
} else {
return {
text: "Estimating",
estimating: true
};
}
}
}