-
Notifications
You must be signed in to change notification settings - Fork 5
/
StructureFormGroup.php
508 lines (438 loc) · 14.5 KB
/
StructureFormGroup.php
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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
<?php
namespace Charcoal\Admin\Widget\FormGroup;
use RuntimeException;
use OutOfBoundsException;
use UnexpectedValueException;
use InvalidArgumentException;
// From 'charcoal-property'
use Charcoal\Property\ModelStructureProperty;
use Charcoal\Property\PropertyInterface;
// From 'charcoal-ui'
use Charcoal\Ui\FormGroup\AbstractFormGroup;
use Charcoal\Ui\FormGroup\FormGroupInterface;
use Charcoal\Ui\FormInput\FormInputInterface;
// From 'charcoal-admin'
use Charcoal\Admin\Widget\FormGroupWidget;
use Charcoal\Admin\Ui\ObjectContainerInterface;
use Charcoal\Admin\Ui\StructureContainerInterface;
use Charcoal\Admin\Ui\StructureContainerTrait;
/**
* Form Group Structure Property
*
* The form group widget displays a set of form controls based on properties
* assigned to the widget directly or a proxy structure property.
*
* ## Examples
*
* **Example #1 — Structure widget**
*
* ```json
* "properties": {
* "extra_data": {
* "type": "structure",
* "structure_metadata": {
* "properties": { … },
* "admin": {
* "form_groups": { … },
* "default_form_group": "…"
* }
* }
* }
* },
* "widgets": [
* {
* "title": "Extra Data",
* "type": "charcoal/admin/widget/form-group/structure",
* "template": "charcoal/admin/widget/form-group/structure",
* "storage_property": "extra_data"
* }
* ]
* ```
*
* **Example #2 — With verbose storage declaration**
*
* {@todo Eventually, the form group could support other storage sources such as
* file-based or a database such as an SQL server.}
*
* ```json
* {
* "title": "Extra Data",
* "type": "charcoal/admin/widget/form-group/structure",
* "template": "charcoal/admin/widget/form-group/structure",
* "storage": {
* "type": "property",
* "property": "extra_data"
* }
* }
* ```
*
*/
class StructureFormGroup extends FormGroupWidget implements
FormInputInterface,
StructureContainerInterface
{
use StructureContainerTrait;
/**
* The form group's storage model.
*
* @var ModelInterface|null
*/
protected $obj;
/**
* The form group's storage medium.
*
* @var array|PropertyInterface|SourceInterface|null
*/
protected $storage;
/**
* The form group's storage target. {@deprecated In favor of $storage.}
*
* @var ModelStructureProperty|null
*/
protected $storageProperty;
/**
* The form group the input belongs to.
*
* @var FormGroupInterface|null
*/
private $formGroup;
/**
* Whether the form is ready.
*
* @var boolean
*/
protected $isStructureFinalized = false;
/**
* The form group's raw data.
*
* @var array|null
*/
protected $rawData;
/**
* @return string
*/
public function type()
{
return 'charcoal/admin/widget/form-group/structure';
}
/**
* @param array $data Widget data.
* @return FormGroupWidget Chainable
*/
public function setData(array $data)
{
if ($this->rawData === null) {
$this->rawData = $data;
}
parent::setData($data);
return $this;
}
/**
* Determine if the header is to be displayed.
*
* @return boolean If TRUE or unset, check if there is a title.
*/
public function showHeader()
{
if ($this->display() === self::SEAMLESS_STRUCT_DISPLAY) {
return false;
} else {
return parent::showHeader();
}
}
/**
* Determine if the footer is to be displayed.
*
* @return boolean If TRUE or unset, check if there are notes.
*/
public function showFooter()
{
if ($this->display() === self::SEAMLESS_STRUCT_DISPLAY) {
return false;
} else {
return parent::showFooter();
}
}
/**
* Retrieve the form's object.
*
* @throws RuntimeException If the form doesn't have a model.
* @return \Charcoal\Model\ModelInterface
*/
public function obj()
{
if ($this->obj === null) {
$formGroup = $this->formGroup();
if ($formGroup instanceof self) {
$prop = $formGroup->storageProperty();
$val = $formGroup->obj()->propertyValue($prop->ident());
$this->obj = $prop->structureVal($val, [ 'default_data' => true ]);
if ($this->obj === null) {
$this->obj = clone $prop->structureProto();
}
} elseif ($this->form() instanceof ObjectContainerInterface) {
$this->obj = $this->form()->obj();
}
if ($this->obj === null) {
throw new RuntimeException(sprintf(
'The [%1$s] widget has no data model.',
static::CLASS
));
}
}
return $this->obj;
}
/**
* Set the form input's parent group.
*
* @param FormGroupInterface $formGroup The parent form group object.
* @return StructureFormGroup
*/
public function setFormGroup(FormGroupInterface $formGroup)
{
$this->formGroup = $formGroup;
return $this;
}
/**
* Retrieve the input's parent group.
*
* @return FormGroupInterface|null
*/
public function formGroup()
{
return $this->formGroup;
}
/**
* Clear the group's parent group.
*
* @return StructureFormGroup
*/
public function clearFormGroup()
{
$this->formGroup = null;
return $this;
}
/**
* Set the form group's storage target.
*
* Must be a property of the form's object model that will receive an associative array
* of the form group's data.
*
* @param string|ModelStructureProperty $propertyIdent The property identifier—or instance—of a storage property.
* @throws InvalidArgumentException If the property identifier is not a string.
* @throws UnexpectedValueException If a property is invalid.
* @return StructureFormGroup
*/
public function setStorageProperty($propertyIdent)
{
$property = null;
if ($propertyIdent instanceof PropertyInterface) {
$property = $propertyIdent;
$propertyIdent = $property->ident();
} elseif (!is_string($propertyIdent)) {
throw new InvalidArgumentException(
'Storage Property identifier must be a string'
);
}
$obj = $this->obj();
if (!$obj->hasProperty($propertyIdent)) {
throw new UnexpectedValueException(sprintf(
'The "%1$s" property is not defined on [%2$s]',
$propertyIdent,
get_class($obj)
));
}
if ($property === null) {
$property = $obj->property($propertyIdent);
}
if ($property instanceof ModelStructureProperty) {
$this->storageProperty = $property;
} else {
throw new UnexpectedValueException(sprintf(
'"%s" [%s] is not a model structure property on [%s].',
$propertyIdent,
(is_object($property) ? get_class($property) : gettype($property)),
(is_object($obj) ? get_class($obj) : gettype($obj))
));
}
return $this;
}
/**
* Retrieve the form group's storage property master.
*
* @throws RuntimeException If the storage property was not previously set.
* @return ModelStructureProperty
*/
public function storageProperty()
{
if ($this->storageProperty === null) {
throw new RuntimeException(sprintf(
'Storage property owner is not defined for "%s"',
get_class($this)
));
}
return $this->storageProperty;
}
/**
* Retrieve the properties from the storage property's structure.
*
* @return array
*/
public function structProperties()
{
$property = $this->storageProperty();
if ($property) {
$struct = $property->structureMetadata();
if (isset($struct['properties'])) {
return $struct['properties'];
}
}
return [];
}
/**
* Finalize the form group's properies, entries, and layout.
*
* @param boolean $reload Rebuild the form group's structure.
* @return void
*/
protected function finalizeStructure($reload = false)
{
if ($reload || !$this->isStructureFinalized) {
$this->isStructureFinalized = true;
$property = $this->storageProperty();
if ($property) {
$struct = $property->structureMetadata();
$formGroup = null;
if (isset($struct['admin']['default_form_group'])) {
$groupName = $struct['admin']['default_form_group'];
if (isset($struct['admin']['form_groups'][$groupName])) {
$formGroup = $struct['admin']['form_groups'][$groupName];
}
} elseif (isset($struct['admin']['form_group'])) {
$formGroup = $struct['admin']['form_group'];
}
if ($formGroup) {
if (is_array($this->rawData)) {
$widgetData = array_replace($formGroup, $this->rawData);
$this->setData($widgetData);
} else {
$this->setData($formGroup);
}
}
}
}
}
/**
* Parse the form group and model properties.
*
* @return array
*/
protected function parsedFormProperties()
{
if ($this->parsedFormProperties === null) {
$this->finalizeStructure();
$groupProperties = $this->groupProperties();
$availableProperties = $this->structProperties();
$structProperties = [];
if (!empty($groupProperties)) {
foreach ($groupProperties as $propertyIdent => $propertyMetadata) {
if (is_string($propertyMetadata)) {
$propertyIdent = $propertyMetadata;
$propertyMetadata = null;
}
if (!isset($availableProperties[$propertyIdent])) {
continue;
}
if (is_array($propertyMetadata)) {
$propertyMetadata = array_merge($propertyMetadata, $availableProperties[$propertyIdent]);
} else {
$propertyMetadata = $availableProperties[$propertyIdent];
}
$structProperties[$propertyIdent] = $propertyMetadata;
}
}
if (empty($structProperties)) {
$structProperties = $availableProperties;
}
$this->parsedFormProperties = $structProperties;
}
return $this->parsedFormProperties;
}
/**
* Retrieve the object's properties from the form.
*
* @todo Add support to StructureProperty and StructureFormGroup for multiple-values:
* `($store->multiple() ? '%1$s['.uniqid().'][%2$s]' : '%1$s[%2$s]' )`.
* @throws UnexpectedValueException If a property data is invalid.
* @return \Charcoal\Admin\Widget\FormPropertyWidget[]|\Generator
*/
public function formProperties()
{
$this->finalizeStructure();
$store = $this->storageProperty();
$form = $this->form();
$obj = $this->obj();
$entry = $obj[$store->ident()];
if (is_string($entry)) {
$entry = $store->parseVal($entry);
}
$propertyIdentPattern = '%1$s[%2$s]';
$propPreferences = $this->propertiesOptions();
$structProperties = $this->parsedFormProperties();
foreach ($structProperties as $propertyIdent => $propertyMetadata) {
if (is_array($propertyMetadata)) {
$propertyMetadata['ident'] = $propertyIdent;
}
if (method_exists($obj, 'filterPropertyMetadata')) {
$propertyMetadata = $obj->filterPropertyMetadata($propertyMetadata, $propertyIdent);
}
if (is_bool($propertyMetadata) && $propertyMetadata === false) {
continue;
}
if (!is_array($propertyMetadata)) {
throw new UnexpectedValueException(sprintf(
'Invalid property data for "%1$s", received %2$s',
$propertyIdent,
(is_object($propertyMetadata) ? get_class($propertyMetadata) : gettype($propertyMetadata))
));
}
if (isset($propertyMetadata['active']) && $propertyMetadata['active'] === false) {
continue;
}
$subPropertyIdent = sprintf(
$propertyIdentPattern,
($store['input_name'] ?: $store->ident()),
$propertyIdent
);
$propertyMetadata['input_name'] = $subPropertyIdent;
$formProperty = $form->createFormProperty();
$formProperty->setViewController($this->viewController());
$formProperty->setPropertyIdent($subPropertyIdent);
$formProperty->setData($propertyMetadata);
if (!empty($propPreferences[$propertyIdent])) {
$propertyOptions = $propPreferences[$propertyIdent];
if (is_array($propertyOptions)) {
$formProperty->merge($propertyOptions);
}
}
if (!empty($entry) && isset($entry[$propertyIdent])) {
$val = $entry[$propertyIdent];
$formProperty->setPropertyVal($val);
}
if (!$formProperty->l10nMode()) {
$formProperty->setL10nMode($this->l10nMode());
}
if ($formProperty instanceof FormInputInterface) {
$formProperty->setFormGroup($this);
}
if ($formProperty->hidden()) {
$form->addHiddenProperty($subPropertyIdent, $formProperty);
} else {
yield $propertyIdent => $formProperty;
}
if ($formProperty instanceof FormInputInterface) {
$formProperty->clearFormGroup();
}
}
}
}