-
Notifications
You must be signed in to change notification settings - Fork 1
/
Pages.qml
456 lines (342 loc) · 10.4 KB
/
Pages.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
import QtQuick 2.9
import QtQml 2.2
import QtGraphicalEffects 1.0
//import QtQuick.Controls 1.3
/*!
\brief MainView with a Label and Button elements.
*/
import QtQuick.LocalStorage 2.0 as Sql
import "main.js" as Scripts
import "openseed.js" as OpenSeed
//import "plugins/webpage.js" as WebPage
//import "plugins/youtube.js" as YouTube
import "./plugins/"
Item {
id:webthing
property int number: pageindex
property string list:""
property string page: webpage
property int custompage: 0
property string thesource:""
property string mycard: cardId
property string thebanner:""
property string theurl:""
property string theavatar:""
property string thename:""
property string themessage:""
property string thestats:""
property string theposttitle:""
property string thepost:""
property string thepostimage:""
property string thelink:""
property string theinfo1:""
property string theinfo2:""
property string theinfo3:""
property string theinfo4:""
property string theinfo5:""
property string thebackers:""
property string theammount:""
property string thetotal:""
property int thepercent: 0
property int thetimeleft: 0
property string aquote:""
property int pindex:0
property int postcount: 0
property int ispersonal:0
property int hasrss: 0
state:thestate
clip: true
//x:passerbyGrid.width + units.gu(1)
width: pagewidth
height:pageheight
//anchors.centerIn:parent
onStateChanged: { if(state == "Active") {
if(fromRequest == true) {
notification1.visible = true;notification1.themessage = "\"contact button\" to accept the request. Delete button to decline.";
}
//if(layouts.width < mobile_width) {
if(page.search("facebook") != -1) {
custompage = 1;
} else if(page.search("linkedin") != -1) {
custompage = 2;
} else if(page.search("twitter") != -1) {
custompage = 3;
} else if(page.search("twitch") != -1) {
custompage = 4;
} else if(page.search("youtube") != -1) {
custompage = 5;
} else if(page.search("jamendo") != -1) {
custompage = 6;
} else if(page.search("vimeo") != -1) {
custompage = 7;
} else if(page.search("soundcloud") != -1) {
custompage = 8;
} else if(page.search("tumblr") != -1) {
custompage = 9;
} else if(page.search("etsy") != -1) {
custompage = 10;
} else if(page.search("kickstarter") != -1) {
custompage = 11;
} else if(page.search("gofundme") != -1) {
custompage = 12;
} else if(page.search("medium") != -1) {
custompage = 13;
} else if(page.search("wordpress") != -1) {
custompage = 13;
}else if(page.search("blog") != -1) {
custompage = 13;
} else if(page.search("steemit") != -1) {
custompage = 14;
} else if(custompage == 0) {
console.log("Custom Page is naught");
}
}
}
states: [
State {
name:"Active"
PropertyChanges {
target: webthing
visible:true
}
PropertyChanges {
target: web
visible:true
enabled:true
}
PropertyChanges {
target: internal
visible:false
enabled:false
thetype: "none"
}
},
State {
name:"InActive"
PropertyChanges {
target: webthing
visible:false
}
PropertyChanges {
target: web
visible:false
enabled:false
}
PropertyChanges {
target: internal
visible:false
enabled:false
thetype: "none"
}
},
State {
name:"Info"
PropertyChanges {
target: webthing
visible:false
}
},
State {
name:"FullWeb"
PropertyChanges {
target: webthing
visible:false
}
},
State {
name:"Home"
PropertyChanges {
target: webthing
visible:true
}
PropertyChanges {
target: web
visible:false
enabled:false
}
PropertyChanges {
target: internal
visible:true
enabled:true
thetype: "Home"
}
},
State {
name:"MicroBlog"
PropertyChanges {
target: webthing
visible:true
}
PropertyChanges {
target: web
visible:false
enabled:false
}
PropertyChanges {
target: internal
visible:true
enabled:true
thetype: "Microblog"
}
}
]
transitions: [
Transition {
//id:sanimation
NumberAnimation { properties: "x,y"; easing.type: Easing.InOutQuad;duration:500;}
},
Transition {
NumberAnimation { properties: "x,y"; easing.type: Easing.InOutQuad;duration:100;}
}
]
Item {
id:web
anchors.fill:parent
Rectangle {
id:backing
x:0
y:0
color:backgroundColor
//border.color:"black"
radius: 2
anchors.fill: parent
width:parent.width
height:parent.height
FaceBook {
state:if(custompage === 1 && pindex-1 <= ms.indexAt(ms.contentX,0)) {"Active"} else {"InActive"}
anchors.fill:parent
pagesource:thesource
service:page
}
Linkedin {
state:if(custompage === 2 && pindex-1 <= ms.indexAt(ms.contentX,0)) {"Active"} else {"InActive"}
anchors.fill:parent
pagesource:thesource
service:page
}
Twitter {
state:if(custompage === 3 && pindex-1 <= ms.indexAt(ms.contentX,0)) {"Active"} else {"InActive"}
anchors.fill:parent
pagesource:thesource
service:page
}
/* Twitch {
state:if(custompage == 4) {"Active"} else {"InActive"}
anchors.fill:parent
pagesource:thesource
service:page
} */
/* YouTube {
state:if(custompage == 5) {"Active"} else {"InActive"}
anchors.fill:parent
pagesource:thesource
service:page
banner:thebanner
avatar:theavatar
profilename:thename
message:themessage
stats:thestats
} */
/* Jamendo {
state:if(custompage == 6) {"Active"} else {"InActive"}
anchors.fill:parent
pagesource:thesource
service:page
}
Vimeo {
state:if(custompage == 7) {"Active"} else {"InActive"}
anchors.fill:parent
pagesource:thesource
service:page
} */
SoundCloud {
state:if(custompage === 8 && pindex <= ms.indexAt(ms.contentX,0)) {"Active"} else {"InActive"}
anchors.fill:parent
pagesource:thesource
service:page
}
Tumblr {
state:if(custompage === 9 && pindex <= ms.indexAt(ms.contentX,0)) {"Active"} else {"InActive"}
anchors.fill:parent
pagesource:thesource
service:page
}
RSS {
state:if(custompage === 13 && pindex <= ms.indexAt(ms.contentX,0)) {"Active"} else {"InActive"}
anchors.fill:parent
pagesource:thesource
service:page
// banner:thebanner
// avatar:theavatar
// name:thename
// message:themessage
// posttitle:theposttitle
// post:thepost
// postimage:thepostimage
// link:thelink
}
Etsy {
state:if(custompage == 10 && pindex <= ms.indexAt(ms.contentX,0)) {"Active"} else {"InActive"}
anchors.fill:parent
pagesource:thesource
service:page
}
Steemit {
state:if(custompage == 14 && pindex <= ms.indexAt(ms.contentX,0)) {"Active"} else {"InActive"}
anchors.fill:parent
pagesource:thesource
service:page
}
/* Kickstarter {
state:if(custompage == 11) {"Active"} else {"InActive"}
anchors.fill:parent
pagesource:thesource
service:page
}
GoFundMe {
state:if(custompage == 12) {"Active"} else {"InActive"}
anchors.fill:parent
pagesource:thesource
service:page
} */
/*URL {
state:if(custompage == 0 && hasrss == 0) {"Active"} else {"InActive"}
anchors.fill:parent
pagesource:thesource
service:page
} */
}
}
Item {
id:internal
anchors.fill:parent
property string thetype: ""
Home {
// enabled: if(custompage == 0 && pindex == ms.indexAt(ms.contentX,0)) {true} else {false}
id:home
visible:if(internal.thetype == "Home"){true} else {false}
enabled:if(internal.thetype == "Home"){true} else {false}
}
MicroBlogger {
// enabled: if(custompage == 0 && pindex == ms.indexAt(ms.contentX,0)) {true} else {false}
id:log
visible:if(internal.thetype == "Microblog"){true} else {false}
enabled: if(internal.thetype == "Microblog"){true} else {false}
}
}
ListModel {
id:rssposts
}
ListModel {
id:tumblrposts
}
ListModel {
id:twitterposts
}
ListModel {
id:shopposts
}
ListModel {
id:steemitposts
}
}