-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEventInfo.qml
508 lines (451 loc) · 15.6 KB
/
EventInfo.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
import QtQuick 2.10
import QtQuick.Controls 2.2
import QtQuick.Controls.Material 2.2
import QtGraphicalEffects 1.0
import "events.js" as Events
Item {
id: thisWindow
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
property string type: "chance"
property var party: []
property string who: ""
property string name: ""
property string eventname: ""
property string about: ""
property string when: ""
property string unique: ""
states: [
State {
name: "Active"
PropertyChanges {
target: thisWindow
anchors.verticalCenterOffset: 0
}
PropertyChanges {
target: disappear
running: if (type == "chance") {
true
} else {
false
}
}
PropertyChanges {
target: you
anchors.leftMargin: parent.width * 0.15
opacity: 1
}
PropertyChanges {
target: o1
anchors.rightMargin: parent.width * 0.15
opacity: 1
}
PropertyChanges {
target: o2
anchors.topMargin: parent.width * 0.02
opacity: 1
}
PropertyChanges {
target: o3
anchors.bottomMargin: parent.width * 0.02
opacity: 1
}
PropertyChanges {
target: flipit
running: true
}
},
State {
name: "InActive"
PropertyChanges {
target: thisWindow
anchors.verticalCenterOffset: mainView.height
}
PropertyChanges {
target: you
anchors.leftMargin: parent.width * -0.15
opacity: 0
}
PropertyChanges {
target: o1
anchors.rightMargin: parent.width * -0.15
opacity: 0
}
PropertyChanges {
target: o2
anchors.topMargin: parent.width * -0.12
opacity: 0
}
PropertyChanges {
target: o3
anchors.bottomMargin: parent.width * -0.12
opacity: 0
}
PropertyChanges {
target: flipit
running: false
}
}
]
Timer {
id: disappear
interval: 6000
running: false
repeat: false
onTriggered: thisWindow.state = "InActive"
}
Timer {
id: flipit
interval: 2300
running: false
repeat: false
onTriggered: card.flipped = false
}
transitions: [
Transition {
from: "InActive"
to: "Active"
reversible: true
NumberAnimation {
targets: thisWindow
properties: "anchors.verticalCenterOffset"
duration: 200
easing.type: Easing.InOutQuad
}
NumberAnimation {
targets: [you, o1]
properties: "anchors.leftMargin,anchors.rightMargin,opacity"
duration: 600
easing.type: Easing.InOutQuad
}
NumberAnimation {
targets: [o2, o3]
properties: "anchors.topMargin,anchors.bottomMargin,opacity"
duration: 700
easing.type: Easing.InOutQuad
}
}
]
Flipable {
id: card
anchors.fill: parent
property bool flipped: true
transform: Rotation {
id: rotation
origin.x: card.width / 2
origin.y: card.height / 2
axis.x: 1
axis.y: 0
axis.z: 0 // set axis.y to 1 to rotate around y-axis
angle: 0 // the default angle
}
states: State {
name: "front"
PropertyChanges {
target: rotation
angle: 180
}
when: card.flipped !== true
}
transitions: Transition {
NumberAnimation {
target: rotation
property: "angle"
duration: 400
}
}
back: Item {
anchors.fill: parent
Rectangle {
id: backing
color: cardcolor
radius: mainView.width * 0.02
anchors.centerIn: parent
width: parent.width * 0.98
height: parent.height * 0.98
visible: false
}
DropShadow {
anchors.fill: backing
horizontalOffset: 0
verticalOffset: 10
radius: 8.0
samples: 17
color: "#80000000"
source: backing
}
Image {
anchors.centerIn: parent
source: "./img/overlay.svg"
width: parent.width * 0.80
height: parent.width * 0.80
fillMode: Image.PreserveAspectFit
opacity: 0.1
}
Item {
anchors.fill: parent
visible: if (type == "chance") {
true
} else {
false
}
onVisibleChanged: if (visible == true) {
party.push(usercardNum)
}
CirclePic {
id: you
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
width: if (party.length <= 2) {
parent.width * 0.35
} else {
parent.width * 0.2
}
height: width
whichPic: party[0]
where: if (whichPic === usercardNum) {
"mycard"
} else {
"saved"
}
}
CirclePic {
id: o1
anchors.verticalCenter: parent.verticalCenter
anchors.right: parent.right
width: if (party.length <= 2) {
parent.width * 0.35
} else {
parent.width * 0.2
}
height: width
whichPic: party[1]
where: if (whichPic === usercardNum) {
"mycard"
} else {
"saved"
}
}
CirclePic {
id: o2
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.top
width: parent.width * 0.2
height: width
visible: if (party.length >= 3) {
true
} else {
false
}
whichPic: party[2]
where: if (whichPic === usercardNum) {
"mycard"
} else {
"saved"
}
}
CirclePic {
id: o3
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: parent.bottom
width: parent.width * 0.2
height: width
visible: if (party.length >= 4) {
true
} else {
false
}
whichPic: party[3]
where: if (whichPic === usercardNum) {
"mycard"
} else {
"saved"
}
}
}
Item {
anchors.fill: parent
visible: if (type == "invite") {
true
} else {
false
}
Text {
id: title
anchors.top: parent.top
anchors.topMargin: mainView.width * 0.01
anchors.right: parent.right
anchors.rightMargin: mainView.width * 0.03
font.pixelSize: mainView.width * 0.035
font.italic: true
horizontalAlignment: Text.AlignRight
text: when
width: parent.width * 0.4
wrapMode: Text.WordWrap
color: fontColorTitle
}
CirclePic {
id: inviter
anchors.left: parent.left
anchors.leftMargin: parent.width * 0.01
anchors.top: parent.top
anchors.topMargin: mainView.width * 0.02
width: parent.width * 0.10
height: width
whichPic: who.split(":")[0]
where: if (whichPic === usercardNum) {
"mycard"
} else {
"saved"
}
}
Text {
anchors.top: inviter.top
anchors.left: inviter.right
anchors.topMargin: mainView.width * 0.01
font.pixelSize: mainView.width * 0.05
font.bold: true
width: parent.width * 0.55
wrapMode: Text.WordWrap
maximumLineCount: 2
elide: Text.ElideRight
text: name
color: fontColor
Text {
anchors.top: parent.bottom
anchors.left: parent.left
anchors.margins: parent.height * 0.1
text: qsTr("Party of ") + party.length
font.italic: true
font.pixelSize: mainView.width * 0.03
color: fontColor
}
}
Text {
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: mainView.width * -0.04
font.pixelSize: mainView.width * 0.07
font.bold: true
width: parent.width * 0.95
wrapMode: Text.WordWrap
text: eventname
horizontalAlignment: Text.AlignHCenter
color: fontColor
Text {
anchors.top: parent.bottom
anchors.topMargin: mainView.width * 0.01
width: parent.width
wrapMode: Text.WordWrap
maximumLineCount: 2
elide: Text.ElideRight
text: about
color: fontColor
}
}
Button {
anchors.left: parent.left
anchors.bottom: parent.bottom
anchors.margins: mainView.width * 0.02
width: parent.width * 0.3
text: "Decline"
background: Rectangle {
color: highLightColor1
radius: mainView.width * 0.02
}
onClicked: {
Events.rsvp_event(unique, usercardNum, 3)
}
}
Button {
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: parent.bottom
anchors.margins: mainView.width * 0.02
width: parent.width * 0.3
text: "Maybe"
background: Rectangle {
color: highLightColor1
radius: mainView.width * 0.02
}
onClicked: {
Events.rsvp_event(unique, usercardNum, 2)
}
}
Button {
anchors.right: parent.right
anchors.bottom: parent.bottom
anchors.margins: mainView.width * 0.02
width: parent.width * 0.3
text: "Accept"
background: Rectangle {
color: highLightColor1
radius: mainView.width * 0.02
}
onClicked: {
Events.rsvp_event(unique, usercardNum, 1)
}
}
}
}
front: Item {
anchors.fill: parent
Rectangle {
id: backbacking
color: cardcolor
radius: mainView.width * 0.02
anchors.centerIn: parent
width: parent.width * 0.98
height: parent.height * 0.98
visible: false
}
DropShadow {
anchors.fill: backbacking
horizontalOffset: 0
verticalOffset: 10
radius: 8.0
samples: 17
color: "#80000000"
source: backbacking
}
Image {
anchors.centerIn: parent
source: "./img/overlay.svg"
width: parent.width * 0.80
height: parent.width * 0.80
fillMode: Image.PreserveAspectFit
opacity: 0.4
}
Text {
font.bold: true
font.pixelSize: parent.width * 0.07
horizontalAlignment: Text.AlignHCenter
width: parent.width
wrapMode: Text.WordWrap
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
opacity: 0.4
color: fontColor
text: switch (type) {
case "chance":
qsTr("Chance Meeting")
break
case "invite":
qsTr("Event Invite")
break
case "decline":
qsTr("Event Decline")
break
case "arrived":
qsTr("Arrived")
break
case "canceled":
qsTr("Canceled")
break
case "forgot":
qsTr("Forgot Event")
break
}
}
}
}
}