-
Notifications
You must be signed in to change notification settings - Fork 1
/
Events.qml
517 lines (454 loc) · 15.8 KB
/
Events.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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
import QtQuick 2.10
import QtQuick.Dialogs 1.2
import QtQuick.Controls 2.2
import QtQuick.Controls.Material 2.2
import QtGraphicalEffects 1.0
import QtQuick.LocalStorage 2.0 as Sql
import "events.js" as Events
import "text.js" as Strings
Item {
id: thisWindow
property string type: "current"
property bool updateevents: false
property bool invitecheck: true
property bool updatecheck: true
property int counter: 0
states: [
State {
name: "Active"
PropertyChanges {
target: thisWindow
x: 0
}
},
State {
name: "InActive"
PropertyChanges {
target: thisWindow
x: width * -1
}
}
]
transitions: [
Transition {
from: "InActive"
to: "Active"
reversible: true
NumberAnimation {
target: thisWindow
property: "x"
duration: 200
easing.type: Easing.InOutQuad
}
}
]
Component.onCompleted: Events.load_current()
onUpdateeventsChanged: {
Events.load_current()
Events.check_invites()
updateevents = false
}
Timer {
id: eventInvites
interval: 5007
running: invitecheck
repeat: true
onTriggered: {
if (heart != "Offline" && firstrun.state == "InActive") {
Events.check_invites()
}
}
}
Timer {
id: eventsUpdate
interval: 10000
running: updatecheck
repeat: true
onTriggered: {
if (heart != "Offline" && firstrun.state == "InActive") {
Events.get_events()
}
}
}
Rectangle {
anchors.fill: parent
color: backgroundColor
}
Item {
anchors.top: parent.top
anchors.horizontalCenter: parent.horizontalCenter
width: parent.width
height: parent.height * 0.10
clip: true
Button {
width: parent.width * 0.49
height: parent.height * 0.80
text: "Scheduled"
anchors.left: parent.left
anchors.verticalCenter: parent.verticalCenter
contentItem: Text {
width: parent.width
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
font: parent.font
text: parent.text
color: fontColorTitle
}
background: Rectangle {
color: if (type == "current") {
highLightColor1
} else {
backgroundColor
}
}
onClicked: {
type = "current"
Events.load_current()
}
}
Button {
width: parent.width * 0.49
height: parent.height * 0.80
text: "Log"
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
contentItem: Text {
width: parent.width
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
font: parent.font
text: parent.text
color: fontColorTitle
}
background: Rectangle {
color: if (type == "log") {
highLightColor1
} else {
backgroundColor
}
}
onClicked: {
type = "log"
Events.load_log()
}
}
}
ListView {
id: eventListLog
visible: if (type == "log") {
true
} else {
false
}
anchors.bottom: parent.bottom
anchors.horizontalCenter: parent.horizontalCenter
width: parent.width * 0.98
height: parent.height * 0.90
spacing: thisWindow.width * 0.02
clip: true
model: elLog
delegate: Item {
width: parent.width * 0.95
anchors.horizontalCenter: parent.horizontalCenter
height: if (itemtype != 9) {
logcard.height
} else {
logspacer.height
}
Item {
id: logspacer
visible: if (itemtype == 9) {
true
} else {
false
}
width: parent.width
height: mainView.height * 0.04
Text {
anchors.right: parent.right
anchors.rightMargin: mainView.width * 0.01
horizontalAlignment: Text.AlignRight
anchors.verticalCenter: parent.verticalCenter
text: "" + date
color: fontColor
}
Rectangle {
color: seperatorColor1
width: parent.width
height: parent.height * 0.1
anchors.bottom: parent.bottom
}
}
Item {
id: logcard
height: thisWindow.height * 0.30
width: parent.width
anchors.horizontalCenter: parent.horizontalCenter
clip: true
visible: if (itemtype == 0) {
true
} else {
false
}
Rectangle {
id: backfill
anchors.fill: parent
color: cardcolor
}
DropShadow {
anchors.fill: backfill
source: backfill
samples: 17
radius: 5.0
horizontalOffset: 0
verticalOffset: 0
color: "#80000000"
}
Text {
id: logTitle
anchors.top: parent.top
anchors.left: parent.left
anchors.margins: thisWindow.width * 0.02
text: eventname
font.pixelSize: parent.width * 0.07
color: fontColor
Text {
anchors.top: parent.bottom
anchors.left: parent.left
anchors.margins: thisWindow.width * 0.01
text: location
font.pixelSize: parent.height * 0.4
color: fontColor
}
}
Rectangle {
anchors.centerIn: memberRow
width: memberRow.width * 1.1
height: memberRow.height * 1.1
border.color: seperatorColor1
border.width: 2
color: backfill.color
}
Row {
id: memberRow
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: logTitle.height / 2
width: parent.width * 0.98
height: parent.height * 0.40
spacing: parent.width * 0.01
clip: true
Repeater {
model: partymembers.split(",")
CirclePic {
anchors.verticalCenter: parent.verticalCenter
width: parent.height * 0.9
height: parent.height * 0.9
whichPic: modelData.split(":")[0]
where: if (modelData.split(
":")[0] === usercardNum) {
"mycard"
} else {
"saved"
}
badge: modelData.split(":")[1]
}
}
}
Text {
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.margins: thisWindow.width * 0.02
text: date
font.pixelSize: parent.width * 0.04
color: fontColor
}
Text {
anchors.bottom: parent.bottom
anchors.right: parent.right
anchors.margins: thisWindow.width * 0.02
text: time
font.pixelSize: parent.width * 0.04
color: fontColor
}
}
}
}
Item {
visible: if (type == "current") {
true
} else {
false
}
anchors.fill: parent
ListView {
id: eventListCurrent
anchors.bottom: parent.bottom
anchors.horizontalCenter: parent.horizontalCenter
width: parent.width * 0.98
height: parent.height * 0.90
spacing: thisWindow.width * 0.02
clip: true
model: elCurrent
delegate: Item {
width: parent.width * 0.95
anchors.horizontalCenter: parent.horizontalCenter
height: if (itemtype != 9) {
thecard.height
} else {
spacer.height
}
Item {
id: spacer
visible: if (itemtype == 9) {
true
} else {
false
}
width: parent.width
height: mainView.height * 0.04
Text {
anchors.right: parent.right
anchors.rightMargin: mainView.width * 0.01
horizontalAlignment: Text.AlignRight
anchors.verticalCenter: parent.verticalCenter
text: "" + date
color: fontColor
}
Rectangle {
color: seperatorColor1
width: parent.width
height: parent.height * 0.1
anchors.bottom: parent.bottom
}
}
Item {
id: thecard
height: thisWindow.height * 0.30
width: parent.width
visible: if (itemtype == 0) {
true
} else {
false
}
clip: true
Rectangle {
id: backing
anchors.fill: parent
color: cardcolor
visible: false
}
DropShadow {
anchors.fill: backing
source: backing
samples: 17
radius: 5.0
horizontalOffset: 0
verticalOffset: 0
color: "#80000000"
}
Text {
id: eventTitle
anchors.top: parent.top
anchors.left: parent.left
anchors.margins: thisWindow.width * 0.02
text: eventname
font.pixelSize: parent.width * 0.07
color: fontColor
Text {
anchors.top: parent.bottom
anchors.left: parent.left
anchors.margins: thisWindow.width * 0.01
text: location
font.pixelSize: parent.height * 0.4
color: fontColor
}
}
Rectangle {
anchors.centerIn: partyRow
width: partyRow.width * 1.1
height: partyRow.height * 1.1
border.color: seperatorColor1
border.width: 2
color: backing.color
}
Row {
id: partyRow
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: eventTitle.height / 2
width: parent.width
height: parent.height * 0.40
spacing: parent.width * 0.01
Repeater {
model: partymembers.split(",")
CirclePic {
anchors.verticalCenter: parent.verticalCenter
width: parent.height * 0.9
height: parent.height * 0.9
whichPic: modelData.split(":")[0]
where: if (whichPic === usercardNum) {
"mycard"
} else {
"saved"
}
badge: modelData.split(":")[1]
}
}
}
Text {
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.margins: thisWindow.width * 0.02
text: date
font.pixelSize: parent.width * 0.04
color: fontColor
}
Text {
anchors.bottom: parent.bottom
anchors.right: parent.right
anchors.margins: thisWindow.width * 0.02
text: time
font.pixelSize: parent.width * 0.04
color: fontColor
}
}
}
}
Item {
anchors.bottom: parent.bottom
anchors.right: parent.right
anchors.rightMargin: thisWindow.width * 0.04
anchors.bottomMargin: thisWindow.width * 0.04
width: thisWindow.width * 0.09
height: thisWindow.width * 0.09
z: 2
Image {
id: sicon
visible: false
anchors.centerIn: parent
width: parent.width * 0.8
fillMode: Image.PreserveAspectFit
source: "./icons/calendar-today.svg"
}
ColorOverlay {
source: sicon
anchors.fill: sicon
color: overlayColor
}
Flasher {
}
MouseArea {
anchors.fill: parent
onClicked: {
eventEdit.edit = false
eventEdit.state = "Active"
}
}
}
}
ListModel {
id: elLog
}
ListModel {
id: elCurrent
}
}