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
|
/*
* Copyright (C) 2018 Christian Mollekopf, <mollekopf@kolabsys.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Window 2.0
import org.kube.framework 1.0 as Kube
import org.kube.test 1.0
import "qml"
ApplicationWindow {
id: app
height: Screen.desktopAvailableHeight * 0.8
width: Screen.desktopAvailableWidth * 0.8
Component.onCompleted: {
var initialState = {
accounts: [{
id: "account1",
name: "Test Account"
}],
identities: [{
account: "account1",
name: "Test Identity",
address: "identity@example.org"
}],
resources: [{
id: "caldavresource",
account: "account1",
type: "caldav",
}],
calendars: [{
id: "calendar1",
resource: "caldavresource",
name: "Test Calendar",
color: "#af1a6a",
events: [
{
resource: "caldavresource",
summary: "Test Event1 with a waaaaaaaay to long summary. Why don't you just use the description you fool!",
description: "This is test event #1",
starts: "2018-04-10T14:03:00",
ends: "2018-04-10T16:03:00",
},
{
resource: "caldavresource",
summary: "Test Event2",
description: "This is test event #2",
starts: "2018-04-11T09:03:00",
ends: "2018-04-11T14:03:00",
},
{
resource: "caldavresource",
summary: "Test Event3",
description: "This is test event #3",
starts: "2018-04-11T10:00:00",
ends: "2018-04-11T15:00:00",
},
{
resource: "caldavresource",
summary: "Test Event4",
description: "This is test event #4",
starts: "2018-04-12T03:00:00",
ends: "2018-04-14T22:00:00",
},
{
resource: "caldavresource",
summary: "!!! Test Event5",
description: "!!! This is test event #5",
starts: "2018-04-22T22:00:00",
ends: "2018-04-25T03:00:00",
},
// Day-long events
{
resource: "caldavresource",
summary: "Test day-long event1",
description: "This is test day-long event #1",
starts: "2018-04-10T00:00:00",
ends: "2018-04-14T00:00:00",
allDay: true,
},
{
resource: "caldavresource",
summary: "Test day-long event2",
description: "This is test day-long event #2",
starts: "2018-04-11",
allDay: true,
},
{
resource: "caldavresource",
summary: "Test day-long event3",
description: "This is test day-long event #3",
starts: "2018-04-01T00:00:00",
ends: "2018-04-13T00:00:00",
allDay: true,
},
{
resource: "caldavresource",
summary: "Test day-long event4",
description: "This is test day-long event #4",
starts: "2018-04-01T00:00:00",
ends: "2018-04-25T00:00:00",
allDay: true,
},
{
resource: "caldavresource",
summary: "!!! Test day-long event5",
description: "!!! This is test day-long event #5",
starts: "2018-04-01T00:00:00",
ends: "2018-04-05T00:00:00",
allDay: true,
},
{
resource: "caldavresource",
summary: "!!! Test day-long event6",
description: "!!! This is test day-long event #6",
starts: "2018-04-23T00:00:00",
ends: "2018-04-25T00:00:00",
allDay: true,
},
],
},
{
id: "calendar2",
resource: "caldavresource",
name: "Test Calendar2",
color: "#f67400"
},
{
id: "calendar3",
resource: "caldavresource",
name: "Test Calendar3 Loooooooooooooooooooooooooooooong Name",
color: "#f67400"
},
{
id: "calendar4",
resource: "caldavresource",
name: "Test Calendar4",
color: "#f67400"
},
{
id: "calendar5",
resource: "caldavresource",
name: "Test Calendar5",
color: "#f67400"
},
{
id: "calendar6",
resource: "caldavresource",
name: "Test Calendar6",
color: "#f67400"
},
{
id: "calendar7",
resource: "caldavresource",
name: "Test Calendar7",
color: "#f67400"
},
{
id: "calendar8",
resource: "caldavresource",
name: "Test Calendar8",
color: "#f67400"
},
{
id: "calendar9",
resource: "caldavresource",
name: "Test Calendar9",
color: "#f67400"
},
{
id: "calendar10",
resource: "caldavresource",
name: "Test Calendar 10",
color: "#f67400"
},
{
id: "calendar11",
resource: "caldavresource",
name: "Test Calendar11",
color: "#f67400"
},
{
id: "calendar12",
resource: "caldavresource",
name: "Test Calendar12",
color: "#f67400"
},
{
id: "calendar13",
resource: "caldavresource",
name: "Test Calendar13",
color: "#f67400"
},
{
id: "calendar14",
resource: "caldavresource",
name: "Test Calendar14",
color: "#f67400"
},
{
id: "calendar15",
resource: "caldavresource",
name: "Test Calendar15",
color: "#f67400"
},
{
id: "calendar16",
resource: "caldavresource",
name: "Test Calendar16",
color: "#f67400"
}],
}
TestStore.setup(initialState)
}
View {
anchors.fill: parent
currentDate: "2018-04-11T13:00:00"
autoUpdateDate: false
}
}
|