forked from HabitRPG/habitica-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddTaskWidget.swift
245 lines (223 loc) · 8.82 KB
/
AddTaskWidget.swift
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
//
// AddTaskWidget.swift
// Habitica WidgetsExtension
//
// Created by Phillip Thelen on 08.10.20.
// Copyright © 2020 HabitRPG Inc. All rights reserved.
//
import WidgetKit
import SwiftUI
struct AddTaskSingleProvider: IntentTimelineProvider {
func placeholder(in context: Context) -> AddTaskEntry {
AddTaskEntry(widgetFamily: context.family, taskType: HRPGTaskType.none)
}
func getSnapshot(for configuration: HRPGAddTaskSingleIntent, in context: Context, completion: @escaping (AddTaskEntry) -> Void) {
let entry = AddTaskEntry(widgetFamily: context.family, taskType: configuration.taskType)
completion(entry)
}
func getTimeline(for configuration: HRPGAddTaskSingleIntent, in context: Context, completion: @escaping (Timeline<AddTaskEntry>) -> Void) {
var entries: [AddTaskEntry] = []
let entry = AddTaskEntry(widgetFamily: context.family, taskType: configuration.taskType)
entries.append(entry)
let timeline = Timeline(entries: entries, policy: .atEnd)
completion(timeline)
}
}
struct AddTaskProvider: IntentTimelineProvider {
func placeholder(in context: Context) -> AddTaskEntry {
AddTaskEntry(widgetFamily: context.family, taskType: HRPGTaskType.none)
}
func getSnapshot(for configuration: HRPGAddTaskIntent, in context: Context, completion: @escaping (AddTaskEntry) -> Void) {
let entry = AddTaskEntry(widgetFamily: context.family, showLabels: (configuration.showLabel?.boolValue == true))
completion(entry)
}
func getTimeline(for configuration: HRPGAddTaskIntent, in context: Context, completion: @escaping (Timeline<AddTaskEntry>) -> Void) {
var entries: [AddTaskEntry] = []
let entry = AddTaskEntry(widgetFamily: context.family, showLabels: (configuration.showLabel?.boolValue == true))
entries.append(entry)
let timeline = Timeline(entries: entries, policy: .atEnd)
completion(timeline)
}
}
struct AddTaskEntry: TimelineEntry {
var date: Date = Date()
var widgetFamily: WidgetFamily
var taskType: HRPGTaskType?
var showLabels = false
}
struct AddTaskWidgetView: View {
var entry: AddTaskProvider.Entry
var taskIdentifier: String? {
switch entry.taskType {
case .habit:
return "habit"
case .daily:
return "daily"
case .todo:
return "todo"
case .reward:
return "reward"
default:
return nil
}
}
func taskColor(taskType: HRPGTaskType) -> Color {
switch taskType {
case .habit:
return Color.barRed
case .daily:
return Color.barYellow
case .todo:
return Color.barBlue
case .reward:
return Color.barGreen
default:
return Color.barGray
}
}
var body: some View {
HStack(spacing: 12) {
if entry.widgetFamily == .systemSmall {
if let identifier = taskIdentifier {
AddView(taskType: entry.taskType ?? HRPGTaskType.none, isSingle: true, showLabel: true)
.widgetURL(URL(string: "/user/tasks/\(identifier)/add"))
.padding(widgetPadding())
.widgetBackground(taskColor(taskType: entry.taskType ?? .none))
} else {
AddView(taskType: nil, isSingle: true, showLabel: true)
.padding(widgetPadding())
.widgetBackground(taskColor(taskType: .none))
}
} else {
VStack(alignment: .center) {
if let habitURL = URL(string: "/user/tasks/habit/add") {
Link(destination: habitURL, label: {
AddView(taskType: .habit, showLabel: entry.showLabels).background(taskColor(taskType: .habit)).cornerRadius(16).padding(.bottom, 4)
})
}
if let todoURL = URL(string: "/user/tasks/todo/add") {
Link(destination: todoURL, label: {
AddView(taskType: .todo, showLabel: entry.showLabels).background(taskColor(taskType: .todo)).cornerRadius(16).padding(.top, 4)
})
}
}
VStack(alignment: .center) {
if let dailyURL = URL(string: "/user/tasks/daily/add") {
Link(destination: dailyURL, label: {
AddView(taskType: .daily, showLabel: entry.showLabels).background(taskColor(taskType: .daily)).cornerRadius(16).padding(.bottom, 4)
})
}
if let rewardURL = URL(string: "/user/tasks/reward/add") {
Link(destination: rewardURL, label: {
AddView(taskType: .reward, showLabel: entry.showLabels).background(taskColor(taskType: .reward)).cornerRadius(16).padding(.top, 4)
})
}
}
.padding(widgetPadding())
.widgetBackground(Color.widgetBackground)
}
}.frame(minWidth: 0, maxWidth: .infinity, minHeight: 0, maxHeight: .infinity, alignment: .center)
}
}
struct AddView: View {
var taskType: HRPGTaskType?
var isSingle: Bool = false
var showLabel: Bool = false
var iconName: String {
if isSingle && showLabel {
switch taskType {
case .habit:
return "AddHabitText"
case .daily:
return "AddDailyText"
case .todo:
return "AddToDoText"
case .reward:
return "AddRewardText"
default:
return "Settings"
}
} else if showLabel {
switch taskType {
case .habit:
return "AddHabitSmall"
case .daily:
return "AddDailySmall"
case .todo:
return "AddToDoSmall"
case .reward:
return "AddRewardSmall"
default:
return "Settings"
}
} else {
switch taskType {
case .habit:
return "AddHabit"
case .daily:
return "AddDaily"
case .todo:
return "AddToDo"
case .reward:
return "AddReward"
default:
return "Settings"
}
}
}
var taskName: String {
switch taskType {
case .habit:
return "Habit"
case .daily:
return "Daily"
case .todo:
return "To Do"
case .reward:
return "Reward"
default:
return ""
}
}
var body: some View {
VStack(alignment: showLabel ? .leading : .center) {
if showLabel { Spacer() }
Image(iconName)
if showLabel { Text(taskType == nil ? "Edit to select a task type" : "Add new\n\(taskName)")
.foregroundColor(taskType == nil ? Color.gray500 : Color(white: 0, opacity: 0.6))
.font(.system(size: isSingle ? (taskType == nil ? 17 : 22) : 15, weight: .semibold))
.padding(.top, isSingle ? -4 : -6)
}
}
.padding(EdgeInsets(top: 0, leading: showLabel ? (isSingle ? 0 : 14) : 0, bottom: showLabel ? (isSingle ? 0 : 10) : 0, trailing: showLabel ? (isSingle ? 0 : 14) : 0))
.frame(minWidth: 0, maxWidth: .infinity, minHeight: 0, maxHeight: .infinity, alignment: showLabel ? .leading : .center)
}
}
struct AddTaskWidgetSingle: Widget {
let kind: String = "AddTaskWidgetSingle"
var body: some WidgetConfiguration {
IntentConfiguration(kind: kind, intent: HRPGAddTaskSingleIntent.self, provider: AddTaskSingleProvider()) { entry in
AddTaskWidgetView(entry: entry)
}
.configurationDisplayName("Add Task")
.description("Add a new Task to Habitica" )
.supportedFamilies([.systemSmall])
}
}
struct AddTaskWidget: Widget {
let kind: String = "AddTaskWidget"
var body: some WidgetConfiguration {
IntentConfiguration(kind: kind, intent: HRPGAddTaskIntent.self, provider: AddTaskProvider()) { entry in
AddTaskWidgetView(entry: entry)
}
.configurationDisplayName("Add Tasks")
.description("Add new Tasks to Habitica" )
.supportedFamilies([.systemMedium])
}
}
struct AddTaskWidgetPreview: PreviewProvider {
static var previews: some View {
AddTaskWidgetView(entry: AddTaskEntry(date: Date(), widgetFamily: .systemSmall, taskType: HRPGTaskType.todo))
.previewContext(WidgetPreviewContext(family: .systemSmall))
}
}