-
Notifications
You must be signed in to change notification settings - Fork 586
/
Copy pathBlock.php
720 lines (606 loc) · 19.9 KB
/
Block.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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
<?php
namespace A17\Twill\Services\Blocks;
use A17\Twill\Facades\TwillBlocks;
use A17\Twill\Services\Forms\InlineRepeater;
use A17\Twill\View\Components\Blocks\TwillBlockComponent;
use Exception;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Blade;
use Illuminate\Support\Facades\View;
use Illuminate\Support\Str;
use Illuminate\Container\Container;
class Block
{
public const SOURCE_APP = 'app';
public const SOURCE_TWILL = 'twill';
public const SOURCE_CUSTOM = 'custom';
public const SOURCE_VENDOR = 'vendor';
public const TYPE_BLOCK = 'block';
public const TYPE_SETTINGS = 'settings';
public const TYPE_REPEATER = 'repeater';
public const PREG_REPLACE_INNER = '(\(((?>[^()]+)|(?-2))*\))';
/**
* @var string
*/
public $title;
/**
* @var string
*/
public $titleField;
/**
* @var bool
*/
public $hideTitlePrefix;
/**
* @var string
*/
public $trigger;
/**
* For repeaters only: The select existing button text.
*/
public ?string $selectTrigger;
/**
* @var string
*/
public $source;
/**
* @var string
*/
public $name;
/**
* @var string
*/
public $group;
/**
* @var string
*/
public $type;
/**
* @var string
*/
public $icon;
/**
* @var bool
*/
public $compiled;
/**
* @var string
*/
public $component;
/**
* @var int
*/
public $max = 999;
/**
* @var bool
*/
public $isNewFormat;
/**
* @var \Symfony\Component\Finder\SplFileInfo
*/
public $file;
/**
* @var string
*/
public $fileName;
/**
* @var string
*/
public $renderNamespace;
/**
* @var string
*/
public $contents;
/**
* @var array
*/
public $rules = [];
/**
* @var array
*/
public $rulesForTranslatedFields = [];
/**
* @var array
*/
public $messages = [];
/**
* Renderedata.
*/
public ?RenderData $renderData = null;
/**
* @var TwillBlockComponent
*/
public ?string $componentClass = null;
public ?InlineRepeater $inlineRepeater = null;
/**
* @param TwillBlockComponent $componentClass
*/
public static function forComponent(string $componentClass): self
{
$class = new self(
file: null,
type: 'block',
source: $componentClass::getBlockGroup(),
name: $componentClass::getBlockIdentifier(),
componentClass: $componentClass
);
$class->title = $componentClass::getBlockTitle();
$class->icon = $componentClass::getBlockIcon();
$class->titleField = $componentClass::getBlockTitleField();
$class->hideTitlePrefix = $componentClass::shouldHidePrefix();
$class->rulesForTranslatedFields = (new $componentClass())->getTranslatableValidationRules();
$class->rules = (new $componentClass())->getValidationRules();
$class->messages = (new $componentClass())->getValidationMessages();
return $class;
}
/**
* Make a block instance out of arguments.
*
* @param $file
* @param $type
* @param $source
* @param $name
* @param string $renderNamespace
* Mainly for packages, but this will get the preview/render view file from that namespace.
* @return static
*/
public static function make($file, $type, $source, $name = null, string $renderNamespace = null): self
{
$name = $name ?? Str::before(
$file->getFilename(),
'.blade.php'
);
$transformed = Str::studly($name) . 'Block';
// @todo: Package block classes?
$className = "\App\Twill\Block\\$transformed";
if (class_exists($className)) {
return new $className($file, $type, $source, $name);
}
return new self($file, $type, $source, $name, $renderNamespace);
}
public function newInstance(): static
{
return new static(
$this->file,
$this->type,
$this->source,
$this->name,
$this->renderNamespace,
$this->componentClass,
$this->inlineRepeater
);
}
/**
* Gets the first match being a block or repeater.
*/
public static function findFirstWithType(string $type): ?self
{
return TwillBlocks::getBlockCollection()->findByName($type);
}
public static function getForType(string $type, bool $repeater = false): self
{
if ($repeater) {
$blocksList = TwillBlocks::getRepeaters();
} else {
// Here we include the settings blocks as well.
$blocksList = TwillBlocks::getBlocks(true);
}
return $blocksList->first(function (self $blockConfig) use ($type) {
return $blockConfig->name === $type;
});
}
public static function getForComponent(string $type, bool $repeater = false): ?self
{
if ($repeater) {
$blocksList = TwillBlocks::getRepeaters();
} else {
// Here we include the settings blocks as well.
$blocksList = TwillBlocks::getBlocks(true);
}
return $blocksList->first(function (self $blockConfig) use ($type) {
return $blockConfig->component === $type;
});
}
/**
* Block constructor.
* @param Symfony\Component\Finder\SplFileInfo|null $file
* @param string|null $type
* @param $source
* @param $name
* @param string $renderNamespace
* Mainly for packages, but this will get the preview/render view file from that namespace.
* @param InlineRepeater $inlineRepeater used when registering dynamic repeaters.
* @throws \Exception
*/
final public function __construct(
$file,
$type,
$source,
$name = null,
?string $renderNamespace = null,
?string $componentClass = null,
?InlineRepeater $inlineRepeater = null
) {
$this->file = $file;
$this->type = $type;
$this->source = $source;
$this->componentClass = $componentClass;
$this->inlineRepeater = $inlineRepeater;
if (! $this->componentClass) {
$this->fileName = $this->file ? $this->file->getPathName() : 'Custom vue file';
}
$this->renderNamespace = $renderNamespace;
$this->name = $name ?? Str::before(
$this->file->getFilename(),
'.blade.php'
);
// @todo: This may not be needed.
if ($type === self::TYPE_BLOCK && config('twill.block_editor.repeaters.' . $this->name) !== null) {
$this->type = self::TYPE_REPEATER;
}
if (! $inlineRepeater) {
$this->parse();
}
}
public function setSource(string $source): self
{
$this->source = $source;
return $this;
}
public function getData(array $data, \A17\Twill\Models\Block $block): array
{
return $data;
}
/**
* Gets the form data. This is only called once and not per create.
*
* This function is not aware of the context. If you need to know the current module you have to figure that out
* yourself by for example parsing the route.
*/
public function getFormData(): array
{
return [];
}
public function toList(): Collection
{
return collect([
'title' => $this->title,
'titleField' => $this->titleField,
'hideTitlePrefix' => $this->hideTitlePrefix,
'trigger' => $this->trigger,
'selectTrigger' => $this->selectTrigger,
'name' => $this->name,
'group' => $this->group,
'type' => $this->type,
'icon' => $this->icon,
'compiled' => $this->compiled ? 'yes' : '-',
'source' => $this->source,
'new_format' => $this->isNewFormat ? 'yes' : '-',
'file' => $this->getFilename(),
'component' => $this->component,
'rules' => $this->getRules(),
'rulesForTranslatedFields' => $this->getRulesForTranslatedFields(),
'max' => $this->type === self::TYPE_REPEATER ? $this->max : null,
]);
}
public function toShortList(): Collection
{
return collect([
'title' => $this->title,
'name' => $this->name,
'group' => $this->group,
'type' => $this->type,
'icon' => $this->icon,
]);
}
public function makeName(string $name): string
{
return Str::kebab($name);
}
/**
* @throws \Exception
*/
public function parse(): self
{
$contents = $this->file ? file_get_contents($this->file->getPathName()) : '';
$this->title = $this->parseProperty('title', $contents, $this->name);
$this->trigger = $this->parseProperty(
'trigger',
$contents,
$this->name,
$this->type === self::TYPE_REPEATER ? twillTrans('twill::lang.fields.block-editor.add-item') : null
);
$this->selectTrigger = $this->parseProperty(
'SelectTrigger',
$contents,
$this->name,
$this->type === self::TYPE_REPEATER ? twillTrans('twill::lang.fields.block-editor.select-existing') : null
);
$this->max = (int)$this->parseProperty('max', $contents, $this->name, 999);
$this->group = $this->parseProperty('group', $contents, $this->name, 'app');
$this->icon = $this->parseProperty('icon', $contents, $this->name, 'text');
$this->compiled = (bool)$this->parseProperty('compiled', $contents, $this->name, false);
$this->component = $this->parseProperty('component', $contents, $this->name, "a17-block-{$this->name}");
$this->isNewFormat = $this->isNewFormat($contents);
$this->contents = $contents;
$this->parseArrayProperty('ValidationRules', $contents, $this->name, function ($value) {
$this->rules = $value ?? $this->rules;
});
$this->parseArrayProperty('ValidationRulesForTranslatedFields', $contents, $this->name, function ($value) {
$this->rulesForTranslatedFields = $value ?? $this->rulesForTranslatedFields;
});
$this->parseArrayProperty('ValidationMessages', $contents, $this->name, function ($value) {
$this->messages = $value ?? $this->messages;
});
$this->parseMixedProperty('titleField', $contents, $this->name, function ($value, $options) {
$this->titleField = $value;
$this->hideTitlePrefix = (bool)($options['hidePrefix'] ?? false);
});
return $this;
}
/**
* Checks both the blade file or helper class for validation rules. Returns in order the first one with data.
*/
public function getRules(): array
{
return $this->rules;
}
/**
* Checks both the blade file or helper class for validation rules. Returns in order the first one with data.
*/
public function getRulesForTranslatedFields(): array
{
return $this->rulesForTranslatedFields;
}
/**
* Checks both the blade file or helper class for validation rules. Returns in order the first one with data.
*/
public function getMessages(): array
{
return $this->messages;
}
/**
* Parse a string property directive in the form of `@twillTypeProperty('value')`.
*
* @param string $property
* @param string $block
* @param string $blockName
* @param string|null $default
* @return string
* @throws \Exception
*/
public function parseProperty(
$property,
$block,
$blockName,
$default = null
) {
$bladeProperty = ucfirst($property);
foreach (['twillProp', 'twillBlock', 'twillRepeater'] as $pattern) {
preg_match("/@{$pattern}{$bladeProperty}" . self::PREG_REPLACE_INNER . '/', $block, $matches);
if (filled($matches)) {
$result = $matches[1];
$result = Str::replaceLast(')', '', Str::replaceFirst('(', '', $result));
// Process the match if it is __(translatable).
if (Str::startsWith($result, '__(')) {
return twillTrans(preg_replace('/__\((?:"|\')(.*)(?:"|\')\)/', '$1', $result));
}
// Process the match if it is twillTrans(translatable).
if (Str::startsWith($result, 'twillTrans(')) {
return twillTrans(preg_replace('/twillTrans\((?:"|\')(.*)(?:"|\')\)/', '$1', $result));
}
return trim($result, '\'"');
}
}
return $this->parsePropertyFallback($property, $blockName, $default);
}
/**
* Parse an array property directive in the form of `@twillTypeProperty([...])`
* and pass the result to a given callback.
*
* @param string $property
* @param string $block
* @param string $blockName
* @param callable $callback Should have the following signature: `function (array $value)`
* @return void
* @throws \Exception
*/
public function parseArrayProperty(
$property,
$block,
$blockName,
$callback
): void {
$this->parseMixedProperty($property, $block, $blockName, function ($value) use ($callback) {
$callback($value);
});
}
/**
* Parse a mixed property directive in the form of `@twillTypeProperty('value', [...])`
* and pass the result to a given callback.
*
* @param string $property
* @param string $block
* @param string $blockName
* @param callable $callback Should have the following signature: `function ($value, $options)`
* @return mixed
* @throws \Exception
*/
public function parseMixedProperty(
$property,
$block,
$blockName,
$callback
) {
$bladeProperty = ucfirst($property);
foreach (['twillProp', 'twillBlock', 'twillRepeater'] as $pattern) {
// Regexp modifiers:
// `s` allows newlines as part of the `.*` match
// `U` stops the match at the first closing parenthesis
preg_match("/@{$pattern}{$bladeProperty}\((.*)\)/sU", $block, $matches);
if (filled($matches)) {
// Wrap the match in array notation and feed it to `eval` to get an actual array.
// In this context, we're only interested in the first two possible values.
$content = "[{$matches[1]}]";
$parsedContent = eval("return {$content};");
$value = $parsedContent[0] ?? null;
$options = $parsedContent[1] ?? null;
return $callback($value, $options);
}
}
$value = $this->parseProperty($property, $block, $blockName, null);
return $callback($value, null);
}
/**
* @param $property
* @param $blockName
* @param null $default
* @return mixed
* @throws \Exception
*/
private function parsePropertyFallback(
$property,
$blockName,
$default = null
) {
if (
$value = config(
"twill.block_editor.blocks.{$blockName}.{$property}"
)
) {
return $value;
}
if (
$value = config(
"twill.block_editor.repeaters.{$blockName}.{$property}"
)
) {
return $value;
}
if (
$configBlock = collect(config('twill.block_editor.blocks'))->filter(
function ($block) use ($blockName) {
return Str::contains($block['component'], $blockName);
}
)->first()
) {
if ($value = ($configBlock[$property] ?? null)) {
return $value;
}
}
if (
$configRepeater = collect(config('twill.block_editor.repeaters'))->filter(
function ($repeater) use ($blockName) {
return Str::contains($repeater['component'], $blockName);
}
)->first()
) {
if ($value = ($configRepeater[$property] ?? null)) {
return $value;
}
}
if ($property === 'title' && $this->componentClass) {
return $this->componentClass::getBlockTitle();
}
if ($property !== 'title') {
return $default;
}
if ($this->{$property} !== null) {
return $this->{$property};
}
// Title is mandatory
throw new Exception(
"Block {$blockName} does not exists or the mandatory property '{$property}' " .
'was not found on this block. If you are still using blocks on the twill.php ' .
'file, please check if the block is present and properly configured.'
);
}
/**
* @param $block
* @return bool
*/
public function isNewFormat($block)
{
preg_match("/@twill(Prop|Block|Repeater).*\('(.*)'\)/", $block, $propMatches);
return filled($propMatches);
}
/**
* @return string
*/
public function getFileName()
{
return $this->file ? $this->file->getFileName() : $this->componentClass;
}
/**
* @return string
* @throws \Throwable
*/
public function renderForm()
{
View::share('TwillUntilConsumed', ['renderForBlocks' => true]);
if ($this->componentClass) {
$block = (new $this->componentClass())->renderForm();
} elseif ($this->inlineRepeater) {
$block = $this->inlineRepeater->renderForm();
} else {
$block = BladeCompiler::render(
$this->contents,
[
'renderForBlocks' => true,
] + $this->getFormData()
);
}
View::share('TwillUntilConsumed', []);
return $block;
}
public function getBlockView($blockViewMappings = [])
{
if ($this->renderNamespace) {
$view = $this->renderNamespace . '::' . $this->name;
} else {
$view = config('twill.block_editor.block_views_path') . '.' . $this->name;
}
if (array_key_exists($this->name, $blockViewMappings)) {
$view = $blockViewMappings[$this->name];
}
return $view;
}
public function setRenderData(RenderData $renderData): void
{
$this->renderData = $renderData;
}
public function block(): ?\A17\Twill\Models\Block
{
return $this->renderData?->block;
}
public function renderView(
array $blockViewMappings,
array $data,
bool $inEditor = false
): string {
if (! $this->renderData) {
throw new \Exception('Cannot render without renderData');
}
$data['inEditor'] = $inEditor;
$view = $this->getBlockView($blockViewMappings);
$data = Container::getInstance()->call([$this, 'getData'], ['data' => $data, 'block' => $this->renderData->block]);
$data['block'] = $this->renderData->block;
$data['renderData'] = $this->renderData;
if ($this->componentClass) {
return Blade::renderComponent($this->componentClass::forRendering($this->renderData->block, $this->renderData, $inEditor));
}
try {
return view($view, $data)->render();
} catch (Exception $e) {
if (config('twill.strict')) {
throw $e;
}
if (config('twill.debug')) {
$error = $e->getMessage() . ' in ' . $e->getFile();
return View::make('twill::errors.block', ['view' => $view, 'error' => $error])->render();
}
report($e);
}
return '';
}
}