-
Notifications
You must be signed in to change notification settings - Fork 586
/
Copy pathTwillBlockComponent.php
139 lines (114 loc) · 3.49 KB
/
TwillBlockComponent.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
<?php
namespace A17\Twill\View\Components\Blocks;
use A17\Twill\Models\Block;
use A17\Twill\Services\Blocks\Block as A17Block;
use A17\Twill\Services\Blocks\RenderData;
use A17\Twill\Services\Forms\Form;
use Illuminate\Contracts\View\View;
use Illuminate\Support\Collection;
use Illuminate\Support\Str;
use Illuminate\View\Component;
abstract class TwillBlockComponent extends Component
{
public ?Block $block = null;
public ?RenderData $renderData = null;
public bool $inEditor = false;
final public function __construct()
{
}
public static function forRendering(Block $block, RenderData $renderData, bool $inEditor): static
{
$instance = new static();
$instance->block = $block;
$instance->renderData = $renderData;
$instance->inEditor = $inEditor;
return $instance;
}
public function image(string $role, string $crop = 'default', array $params = []): ?string
{
return $this->block->image($role, $crop, $params);
}
public function input(string $fieldName): mixed
{
return $this->block->input($fieldName);
}
public function translatedInput(string $fieldName): mixed
{
return $this->block->translatedInput($fieldName);
}
public static function getCrops(): array
{
return [];
}
/**
* This string should contain no special characters or spaces.
*
* It will be used as the database identifier for the block, it should not change dynamically nor should it overlap
* with an existing block.
*/
public static function getBlockIdentifier(): string
{
$class = Str::afterLast(static::class, '\\');
return Str::slug(static::getBlockGroup() . '--' . $class);
}
/**
* @return Collection<A17Block>
*/
public function repeater(string $repeaterName): Collection
{
$baseList = collect($this->renderData->children)
->where('name', $repeaterName);
if ($baseList->isEmpty()) {
$baseList = collect($this->renderData->children)
->where('name', 'dynamic-repeater-' . $repeaterName);
}
return $baseList;
}
/**
* You can use this method to use a form field to get the title of the block in the used blocks list.
*
* By default this will be prefixed with getBlockTitle, you can disable that by returning true in shouldHidePrefix.
*/
public static function getBlockTitleField(): ?string
{
return null;
}
/**
* If the prefix should be hidden when using getBlockTitleField.
*/
public static function shouldHidePrefix(): bool
{
return false;
}
public static function getBlockTitle(): string
{
return Str::replace('Block', '', Str::afterLast(static::class, '\\'));
}
public static function getBlockGroup(): string
{
return Str::slug(Str::before(static::class, '\\'));
}
public static function getBlockIcon(): string
{
return 'text';
}
public function getValidationRules(): array
{
return [];
}
public function getTranslatableValidationRules(): array
{
return [];
}
public function getValidationMessages(): array
{
return [];
}
abstract public function getForm(): Form;
final public function renderForm(): View
{
return view('twill::partials.form.renderer.block_form', [
'fields' => $this->getForm()->renderForBlocks()
]);
}
}