-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskCreator.qml
More file actions
389 lines (340 loc) · 12.8 KB
/
TaskCreator.qml
File metadata and controls
389 lines (340 loc) · 12.8 KB
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
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls 2.15
Popup {
id: taskPopup
width: 340
height: 520
signal updateTask(int id, string name, string description, string deadline, string priority)
property alias taskName: taskName
property alias taskDescription: taskDescription
property alias taskNameError: taskNameError
property alias dateError: dateError
property alias addButton: addButton
property string startName: ""
property string startDesc: ""
property string startPriority: ""
property int currentId: -1
property bool isEditing: false
onOpened: {
if (isEditing) {
taskName.text = startName
taskDescription.text = startDesc
taskPriority.currentIndex = startPriority === "Low" ? 0 :
startPriority === "Medium" ? 1 : 2
} else {
taskName.text = ""
taskDescription.text = ""
taskPriority.currentIndex = 0
}
}
onClosed: {
isEditing = false
}
background: Rectangle {
id: popupBackground
color: root.bgColor
radius: 15
border.width: 1
border.color: mode ? "#d0d0d0" : "#404040"
}
Rectangle {
id: headerRect
width: parent.width
height: 60
color: root.bgColor
Text {
text: isEditing ? "Edit task" : "Create a new task"
color: root.textColor
font.pixelSize: 22
font.weight: Font.Medium
anchors.centerIn: parent
}
}
ColumnLayout {
anchors.fill: parent
anchors.margins: 20
anchors.topMargin: 70
spacing: 15
// Task Name Input
ColumnLayout {
Layout.fillWidth: true
spacing: 4
Text {
text: "Task Name"
color: root.textColor
font.pixelSize: 14
Layout.fillWidth: true
}
TextField {
id: taskName
Layout.fillWidth: true
implicitHeight: 36
placeholderText: isEditing ? "" : "Enter task name (required)"
color: root.textColor
placeholderTextColor: root.phTextColor
onTextChanged: root.validateInput()
maximumLength: 30
background: Rectangle {
color: mode ? "#f5f5f5" : "#252525"
border.color: taskName.text.length === 0 ? inputBorderError :
(taskName.text.length > 0 ? inputBorderValid : inputBorderNormal)
border.width: 1
radius: 6
}
}
Text {
id: taskNameError
text: taskName.text.length === 0 ? "Task name is required" :
taskName.text.length > 30 ? "Maximum 30 characters allowed" : ""
color: inputBorderError
font.pixelSize: 12
visible: text !== ""
Layout.fillWidth: true
}
}
// Description Input
ColumnLayout {
Layout.fillWidth: true
spacing: 4
Text {
text: "Description (optional)"
color: root.textColor
font.pixelSize: 14
Layout.fillWidth: true
}
TextField {
id: taskDescription
Layout.fillWidth: true
implicitHeight: 36
placeholderText: isEditing ? "" : "Add details about your task"
color: root.textColor
placeholderTextColor: root.phTextColor
onTextChanged: root.validateInput()
maximumLength: 500
background: Rectangle {
color: mode ? "#f5f5f5" : "#252525"
border.color: inputBorderNormal
border.width: 1
radius: 6
}
}
Text {
id: charCounter
text: taskDescription.text.length + "/500"
color: root.textColor
opacity: 0.7
font.pixelSize: 12
horizontalAlignment: Text.AlignRight
Layout.alignment: Qt.AlignRight
}
}
// Date Selection
ColumnLayout {
Layout.fillWidth: true
spacing: 4
Text {
text: "Deadline"
color: root.textColor
font.pixelSize: 14
Layout.fillWidth: true
}
Rectangle {
id: dateTimePopupBtn
Layout.fillWidth: true
implicitHeight: 36
color: mode ? "#f5f5f5" : "#252525"
border.width: 1
border.color: dateTimeSelector.selectedDate === "" ? inputBorderError : inputBorderValid
radius: 6
RowLayout {
anchors.fill: parent
anchors.margins: 8
spacing: 8
Text {
Layout.fillWidth: true
color: dateTimeSelector.selectedDate === "" ? root.phTextColor : root.textColor
text: dateTimeSelector.selectedDate === "" ? "Select a deadline" : dateTimeSelector.selectedDate
font.pixelSize: 14
}
Text {
text: "📅"
font.pixelSize: 16
}
}
MouseArea {
anchors.fill: parent
onClicked: {
dateTimeSelector.open()
dateTimeSelector.updateTumblersFromDate()
dateTimeSelector.refreshAvailableOptions()
}
}
}
Text {
id: dateError
text: dateTimeSelector.selectedDate === "" ? "Deadline is required" : ""
color: inputBorderError
font.pixelSize: 12
visible: text !== ""
Layout.fillWidth: true
}
}
// Priority Selection
ColumnLayout {
Layout.fillWidth: true
spacing: 4
Text {
text: "Priority"
color: root.textColor
font.pixelSize: 14
Layout.fillWidth: true
}
ComboBox {
id: taskPriority
Layout.fillWidth: true
implicitHeight: 36
currentIndex: taskPopup.startPriority === "Low" || !taskPopup.isEditing ? 0 : taskPopup.startPriority === "Medium" ? 1 : 2
model: ["Low", "Medium", "High"]
background: Rectangle {
color: mode ? "#f5f5f5" : "#252525"
border.width: 1
border.color: inputBorderNormal
radius: 6
}
contentItem: Text {
leftPadding: 8
text: taskPriority.displayText
color: root.textColor
font.pixelSize: 14
verticalAlignment: Text.AlignVCenter
}
delegate: ItemDelegate {
width: taskPriority.width
contentItem: Text {
text: modelData
color: root.textColor
font.pixelSize: 14
elide: Text.ElideRight
verticalAlignment: Text.AlignVCenter
}
highlighted: taskPriority.highlightedIndex === index
// Custom background for highlighted state
background: Rectangle {
color: highlighted ? (mode ? "#d0d0d0" : "#404040") : "transparent"
}
}
popup: Popup {
y: taskPriority.height
width: taskPriority.width
implicitHeight: contentItem.implicitHeight
padding: 1
contentItem: ListView {
clip: true
implicitHeight: contentHeight
model: taskPriority.popup.visible ? taskPriority.delegateModel : null
currentIndex: taskPriority.highlightedIndex
}
background: Rectangle {
color: root.bgColor
border.color: inputBorderNormal
radius: 6
}
}
}
}
Item {
Layout.fillHeight: true
}
// Action Buttons
RowLayout {
Layout.fillWidth: true
spacing: 10
Button {
id: cancelButton
Layout.preferredWidth: 133
implicitHeight: 40
background: Rectangle {
color: mode ? "#e0e0e0" : "#303030"
radius: 6
Text {
anchors.centerIn: parent
text: "Cancel"
color: root.textColor
}
MouseArea{
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
}
}
contentItem: Text {
text: cancelButton.text
color: root.textColor
font.pixelSize: 14
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
onClicked: {
taskName.text = ""
taskDescription.text = ""
taskPriority.currentIndex = 0
dateTimeSelector.selectedDate = ""
taskPopup.close()
}
}
Button {
id: addButton
Layout.preferredWidth: 133
implicitHeight: 40
enabled: taskName.text.length > 0 && dateTimeSelector.selectedDate !== ""
background: Rectangle {
color: addButton.enabled ? (addButton.pressed ? root.greenBtnHover : root.greenBtn) : root.greenBtnDisabled
radius: 6
MouseArea{
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
}
}
contentItem: Text {
text: isEditing ? "Update" : "Add Task"
color: root.textColor
font.pixelSize: 14
font.bold: true
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
onClicked: {
if(!isEditing){
lModel.append({
name: taskName.text,
description: taskDescription.text,
deadline: dateTimeSelector.selectedDate,
priority: taskPriority.currentText,
id: root.taskCounter++,
finished: 0
});
taskManager.insertToTable(root.taskCounter, taskName.text, taskDescription.text, dateTimeSelector.selectedDate, taskPriority.currentText, 0)
taskName.text = ""
taskDescription.text = ""
taskPriority.currentIndex = 0
dateTimeSelector.selectedDate = ""
}
else{
for(let i = 0; i < lModel.count; ++i){
if(lModel.get(i).id === taskPopup.currentId){
lModel.get(i).name = taskName.text
lModel.get(i).description = taskDescription.text
lModel.get(i).deadline = dateTimeSelector.selectedDate
lModel.get(i).priority = taskPriority.currentText
taskManager.updateTaskDB(taskPopup.currentId, taskName.text, taskDescription.text, dateTimeSelector.selectedDate, taskPriority.currentText, lModel.finished);
break;
}
}
}
taskPopup.close();
root.sortTasks();
}
}
}
}
}