-
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathfield.dart
More file actions
414 lines (387 loc) · 12.4 KB
/
Copy pathfield.dart
File metadata and controls
414 lines (387 loc) · 12.4 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
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
// Copyright 2022-2025 Ilya Zverev
// This file is a part of Every Door, distributed under GPL v3 or later version.
// Refer to LICENSE file and https://www.gnu.org/licenses/gpl-3.0.html for details.
import 'dart:convert';
import 'package:eval_annotation/eval_annotation.dart';
import 'package:country_coder/country_coder.dart';
import 'package:every_door/fields/address.dart';
import 'package:every_door/fields/checkbox.dart';
import 'package:every_door/fields/combo.dart';
import 'package:every_door/fields/direction.dart';
import 'package:every_door/fields/email.dart';
import 'package:every_door/fields/floor.dart';
import 'package:every_door/fields/height.dart';
import 'package:every_door/fields/hours.dart';
import 'package:every_door/fields/inline_combo.dart';
import 'package:every_door/fields/many_combo.dart';
import 'package:every_door/fields/name.dart';
import 'package:every_door/fields/phone.dart';
import 'package:every_door/fields/radio.dart';
import 'package:every_door/fields/section.dart';
import 'package:every_door/fields/text.dart';
import 'package:every_door/fields/website.dart';
import 'package:every_door/fields/wheelchair.dart';
import 'package:every_door/fields/wiki_commons.dart';
import 'package:flutter/material.dart';
import 'package:every_door/models/amenity.dart';
/// Tag dependency definition. Basically a structure that defines
/// which tags and which values should or should not be preset in a tag list.
/// See https://github.com/ideditor/schema-builder/blob/main/README.md#prerequisitetag
@Bind()
class FieldPrerequisite {
final String? key;
final String? keyNot;
final List<String>? values;
final List<String>? valuesNot;
const FieldPrerequisite({this.key, this.values, this.keyNot, this.valuesNot});
bool matches(Map<String, String> tags) {
if (keyNot != null) return !tags.containsKey(keyNot);
if (key == null || !tags.containsKey(key)) return false;
if (values != null) return values!.contains(tags[key]);
if (valuesNot != null) return !valuesNot!.contains(tags[key]);
return false;
}
factory FieldPrerequisite.fromJson(Map<String, dynamic> data) {
final List<String> values = [];
if (data.containsKey('values'))
values.addAll(data['values']);
else if (data.containsKey('value')) values.add(data['value']);
final List<String> valuesNot = [];
if (data.containsKey('valuesNot'))
valuesNot.addAll(data['valuesNot']);
else if (data.containsKey('valueNot')) valuesNot.add(data['valueNot']);
return FieldPrerequisite(
key: data['key'],
keyNot: data['keyNot'],
values: values.isNotEmpty ? values : null,
valuesNot: valuesNot.isNotEmpty ? valuesNot : null,
);
}
}
/// Field definition. Each field type needs to subclass this one.
/// There are multiple examples in the `fields` directory.
@Bind(bridge: true, wrap: true)
abstract class PresetField {
/// OSM tag key for this field. If the field does not use this
/// attribute (or adds more keys, e.g. `contact:phone` for `phone`),
/// do override the [hasRelevantKey] method.
final String key;
/// Field label to display alongside it. Can be overridden for
/// a multi-line field in [buildWidgets].
final String label;
/// Icon for the field. Displayed only in the standard fields block
/// in the full-page editor.
final IconData? icon;
/// Placeholder for text-based fields.
final String? placeholder;
/// Tag prerequisites for moving this field into the main block.
/// If a field is in the "more fields" block, it's collapsed by default.
/// When a prerequisite matches, it is moved to the main "fields" block.
final FieldPrerequisite? prerequisite;
/// Locations to determine whether to skip the field. It allows for
/// country-specific fields.
final LocationSet? locationSet;
const PresetField({
required this.key,
required this.label,
this.icon,
this.placeholder,
this.prerequisite,
this.locationSet,
});
/// Builds a field-editing widget for the given [element].
Widget buildWidget(OsmChange element);
/// Tests whether the object has tags matching this field.
/// The purpose is to check whether the field has a non-empty value.
bool hasRelevantKey(Map<String, String> tags) => tags.containsKey(key);
}
@Bind()
class PresetFieldContext {
late final String key;
late final String label;
late final String? placeholder;
late final FieldPrerequisite? prerequisite;
late final LocationSet? locationSet;
PresetFieldContext(Map<String, dynamic> data) {
key = data['key'];
label = data['loc_label'] ?? data['label'] ?? data['name'] ?? key;
placeholder = data['loc_placeholder'] ?? data['placeholder'];
prerequisite = data.containsKey('prerequisiteTag')
? FieldPrerequisite.fromJson(data['prerequisiteTag'])
: null;
locationSet = data['locations'] == null
? null
: LocationSet.fromJson(jsonDecode(data['locations']));
}
}
PresetField? fieldForKey(Map<String, dynamic> data, List<ComboOption> options) {
final ctx = PresetFieldContext(data);
final String key = ctx.key;
final String label = ctx.label;
final placeholder = ctx.placeholder;
final prerequisite = ctx.prerequisite;
final locationSet = ctx.locationSet;
// This switch should include at least every tag
// from [PresetProvider.getStandardFields].
switch (key) {
case 'name':
return NamePresetField(
key: key,
label: label,
icon: Icons.format_quote,
placeholder: placeholder,
prerequisite: prerequisite,
);
case 'operator':
return TextPresetField(
key: key,
label: label,
capitalize: TextFieldCapitalize.asName,
icon: Icons.work_outlined,
placeholder: placeholder,
prerequisite: prerequisite,
);
case 'description':
return TextPresetField(
key: key,
label: label,
icon: Icons.comment_outlined,
placeholder: placeholder,
prerequisite: prerequisite,
maxLines: 4,
);
case 'email':
return EmailPresetField(
label: label,
placeholder: placeholder,
prerequisite: prerequisite,
);
case 'phone':
return PhonePresetField(
key: key,
label: label,
prerequisite: prerequisite,
);
case 'website':
return WebsiteField(label: label);
case 'opening_hours':
return HoursPresetField(
key: key,
label: label,
);
case 'fixme':
return TextPresetField(
key: key,
label: label,
placeholder: placeholder,
prerequisite: prerequisite,
locationSet: locationSet,
showClearButton: true,
);
case 'payment:':
return ComboPresetField(
key: key,
label: label,
icon: Icons.credit_card,
prerequisite: prerequisite,
locationSet: locationSet,
customValues: data['custom_values'] == 1,
snakeCase: data['snake_case'] == 1,
type: ComboType.multi,
options: options,
);
case 'wheelchair':
return WheelchairPresetField(label: label);
case 'level':
return FloorPresetField(label: label);
case 'wikimedia_commons':
return WikiCommonsPresetField(
label: label,
placeholder: placeholder,
prerequisite: prerequisite,
);
}
if (key.contains('opening_hours')) {
return HoursPresetField(
key: key,
label: label,
prerequisite: prerequisite,
);
}
return null;
}
PresetField fieldFromJson(Map<String, dynamic> data,
{List<ComboOption> options = const []}) {
final ctx = PresetFieldContext(data);
final String key = ctx.key;
final String label = ctx.label;
final placeholder = ctx.placeholder;
final prerequisite = ctx.prerequisite;
final locationSet = ctx.locationSet;
const kTextLowercase = {
'colour',
'connectivity',
'distance',
'duration',
'geyser:height',
'roof:colour',
'vhf',
'water_tank:volume',
};
// Patching the direction field.
if ({'camera/direction', 'direction_point', 'direction'}
.contains(data['name'])) {
return DirectionPresetField(
label: label, key: key, prerequisite: prerequisite);
}
bool parseBool(dynamic data, [bool def = true]) {
if (data is bool) return data;
if (data is num) return data == 1;
return def;
}
// List of types: https://github.com/ideditor/schema-builder#type
String typ = data['typ'] ?? data['type'] ?? 'text';
if (data['name'] == 'ref') typ = 'number'; // Patch some refs to be numbers
switch (typ) {
case 'text':
case 'colour': // TODO: remove when we have a colour picker
case 'date':
case 'textarea':
TextFieldCapitalize capitalize = kTextLowercase.contains(key)
? TextFieldCapitalize.no
: TextFieldCapitalize.sentence;
switch (data['capitalize']) {
case 'no':
capitalize = TextFieldCapitalize.no;
case 'sentence':
capitalize = TextFieldCapitalize.sentence;
case 'asName':
capitalize = TextFieldCapitalize.asName;
case 'all':
capitalize = TextFieldCapitalize.all;
}
return TextPresetField(
key: key,
label: label,
placeholder: placeholder,
prerequisite: prerequisite,
locationSet: locationSet,
maxLines: typ == 'textarea' ? 4 : null,
capitalize: capitalize,
showClearButton: typ == 'colour' || parseBool(data['clearButton']),
);
case 'number':
case 'roadspeed':
return TextPresetField(
key: key,
label: label,
placeholder: placeholder,
prerequisite: prerequisite,
locationSet: locationSet,
keyboardType: TextInputType.number,
showClearButton: true,
);
case 'tel':
return PhonePresetField(
key: key,
label: label,
prerequisite: prerequisite,
);
case 'email':
return TextPresetField(
key: key,
label: label,
placeholder: placeholder,
prerequisite: prerequisite,
locationSet: locationSet,
keyboardType: TextInputType.emailAddress,
);
case 'url':
return TextPresetField(
key: key,
label: label,
placeholder: placeholder,
prerequisite: prerequisite,
locationSet: locationSet,
keyboardType: TextInputType.url,
);
case 'address':
return AddressField(
key: key,
label: label,
);
case 'inline':
case 'inlineCombo':
return InlineComboPresetField(
key: key,
label: label,
placeholder: placeholder,
options: options,
customValues: parseBool(data['custom_values'] ?? data['customValues']),
numeric: parseBool(data['numeric'], true),
// TODO: other things
);
case 'combo':
case 'typeCombo':
case 'multiCombo':
case 'semiCombo':
return ComboPresetField(
key: key,
label: label,
prerequisite: prerequisite,
locationSet: locationSet,
customValues: parseBool(data['custom_values'] ?? data['customValues']),
snakeCase: parseBool(data['snake_case'] ?? data['snakeCase']),
type: kComboMapping[typ]!,
options: options,
);
case 'manyCombo':
return ManyComboPresetField(
keys: key.split('\\'),
label: label,
prerequisite: prerequisite,
locationSet: locationSet,
options: options,
);
case 'radio':
return RadioPresetField(
key: key,
label: label,
options: options.map((e) => e.value).toList(),
prerequisite: prerequisite,
locationSet: locationSet,
);
case 'check':
case 'defaultCheck':
return CheckboxPresetField(
key: key,
label: label,
tristate: typ == 'check',
options: options,
prerequisite: prerequisite,
);
case 'roadheight':
return HeightPresetField(
key: key,
label: label,
prerequisite: prerequisite,
);
case 'schedule':
return HoursPresetField(
key: key,
label: label,
prerequisite: prerequisite,
);
case 'label':
case 'section':
return SectionPresetField(label);
default:
return TextPresetField(
key: key,
label: label,
placeholder: placeholder,
prerequisite: prerequisite,
locationSet: locationSet,
);
}
}