-
Notifications
You must be signed in to change notification settings - Fork 586
/
Copy pathHandleBrowsers.php
320 lines (285 loc) · 11 KB
/
HandleBrowsers.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
<?php
namespace A17\Twill\Repositories\Behaviors;
use A17\Twill\Models\Behaviors\HasMedias;
use Illuminate\Database\Eloquent\Model as EloquentModel;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\HasOne;
use Illuminate\Database\Eloquent\Relations\MorphTo;
use Illuminate\Support\Arr;
use Illuminate\Support\Str;
trait HandleBrowsers
{
/**
* All browsers used in the model, as an array of browser names:
* [
* 'books',
* 'publications'
* ].
*
* When only the browser name is given, the rest of the parameters are inferred from the name.
* The parameters can also be overridden with an array:
* [
* 'books',
* 'publication' => [
* 'routePrefix' => 'collections',
* 'titleKey' => 'name'
* ]
* ]
*
* @var array
*/
protected $browsers = [];
/**
* @param \A17\Twill\Models\Model $object
* @param array $fields
* @return void
*/
public function afterSaveHandleBrowsers($object, $fields)
{
foreach ($this->getBrowsers() as $browser) {
$this->updateBrowser(
$object,
$fields,
$browser['relation'],
$browser['positionAttribute'],
$browser['browserName']
);
}
}
/**
* @param \A17\Twill\Models\Model $object
* @param array $fields
* @return array
*/
public function getFormFieldsHandleBrowsers($object, $fields)
{
foreach ($this->getBrowsers() as $browser) {
$relation = $browser['relation'];
if (collect($object->$relation)->isNotEmpty()) {
$fields['browsers'][$browser['browserName']] = $this->getFormFieldsForBrowser(
$object,
$relation,
$browser['routePrefix'],
$browser['titleKey'],
$browser['moduleName']
);
}
}
return $fields;
}
/**
* @param \A17\Twill\Models\Contracts\TwillModelContract $object
* @param array $fields
* @param string $relationship
* @param string $positionAttribute
* @param string|null $browserName
* @param array $pivotAttributes
* @return void
*/
public function updateBrowser(
$object,
$fields,
$relationship,
$positionAttribute = 'position',
$browserName = null,
$pivotAttributes = []
) {
$browserName = $browserName ?? $relationship;
$fieldsHasElements = isset($fields['browsers'][$browserName]) && !empty($fields['browsers'][$browserName]);
$relatedElements = $fieldsHasElements ? $fields['browsers'][$browserName] : [];
$relatedElementsWithPosition = [];
$position = 1;
foreach ($relatedElements as $relatedElement) {
$relatedElementsWithPosition[$relatedElement['id']] = [$positionAttribute => $position++] + $pivotAttributes;
}
if ($object->$relationship() instanceof BelongsTo) {
$isMorphTo = method_exists($object, $relationship) && $object->$relationship() instanceof MorphTo;
$foreignKey = $object->$relationship()->getForeignKeyName();
$id = Arr::get($relatedElements, '0.id');
// Set the target id.
$object->$foreignKey = $id;
// If it is a morphTo, we also update the type.
if ($isMorphTo) {
$type = Arr::get($relatedElements, '0.endpointType');
$object->{$object->$relationship()->getMorphType()} = $type;
}
$object->save();
} elseif (
$object->$relationship() instanceof HasOne ||
$object->$relationship() instanceof HasMany
) {
$this->updateBelongsToInverseBrowser($object, $relationship, $relatedElements);
} else {
$object->$relationship()->sync($relatedElementsWithPosition);
}
}
private function updateBelongsToInverseBrowser($object, $relationship, $updatedElements)
{
$foreignKey = $object->$relationship()->getForeignKeyName();
$relatedModel = $object->$relationship()->getRelated();
$related = $this->getRelatedElementsAsCollection($object, $relationship);
$relatedModel
->whereIn('id', $related->pluck('id'))
->update([$foreignKey => null]);
$updated = $relatedModel
->whereIn('id', collect($updatedElements)->pluck('id'))
->get();
if ($updated->isNotEmpty()) {
$object->$relationship()->saveMany($updated);
}
}
/**
* @param \A17\Twill\Models\Model $object
* @param array $fields
* @param string $relationship
* @param string $positionAttribute
* @return void
*/
public function updateOrderedBelongsTomany($object, $fields, $relationship, $positionAttribute = 'position')
{
$this->updateBrowser($object, $fields, $relationship, $positionAttribute);
}
/**
* @param \A17\Twill\Models\Model $object
* @param array $fields
* @param string $browserName
* @return void
*/
public function updateRelatedBrowser($object, $fields, $browserName)
{
$object->saveRelated($fields['browsers'][$browserName] ?? [], $browserName);
}
/**
* @param \A17\Twill\Models\Contracts\TwillModelContract $object
* @param string $relation
* @param string|null $routePrefix
* @param string $titleKey
* @param string|null $moduleName
* @return array
*/
public function getFormFieldsForBrowser(
$object,
$relation,
$routePrefix = null,
$titleKey = 'title',
$moduleName = null
) {
$fields = $this->getRelatedElementsAsCollection($object, $relation);
$isMorphTo = method_exists($object, $relation) && $object->$relation() instanceof MorphTo;
if ($fields->isNotEmpty()) {
return $fields->map(
function ($relatedElement) use ($titleKey, $routePrefix, $relation, $moduleName, $isMorphTo) {
if ($isMorphTo && !$moduleName) {
// @todo: Maybe there is an existing helper for this?
$moduleName = Str::plural(Arr::last(explode('\\', get_class($relatedElement))));
}
return [
'id' => $relatedElement->id,
'name' => $relatedElement->titleInBrowser ?? $relatedElement->$titleKey,
'edit' => $relatedElement->adminEditUrl ?? moduleRoute(
$moduleName ?? $relation,
$routePrefix ?? '',
'edit',
$relatedElement->id
),
'endpointType' => $relatedElement->getMorphClass(),
] + (classHasTrait($relatedElement, HasMedias::class) ? [
'thumbnail' => $relatedElement->defaultCmsImage(['w' => 100, 'h' => 100, 'fit' => 'crop']),
] : []);
}
)->toArray();
}
return [];
}
/**
* @param \A17\Twill\Models\Model $object
* @param string $relation
* @return array
*/
public function getFormFieldsForRelatedBrowser($object, $relation, $titleKey = 'title')
{
return $object->getRelated($relation)->map(function ($relatedElement) use ($titleKey) {
return ($relatedElement != null) ? [
'id' => $relatedElement->id,
'name' => $relatedElement->titleInBrowser ?? $relatedElement->$titleKey,
'endpointType' => $relatedElement->getMorphClass(),
'edit' => $this->getAdminEditUrl($relatedElement),
] + (classHasTrait($relatedElement, HasMedias::class) ? [
'thumbnail' => $relatedElement->defaultCmsImage(['w' => 100, 'h' => 100, 'fit' => 'crop']),
] : []) : [];
})->reject(function ($item) {
return empty($item);
})->values()->toArray();
}
/**
* @param $object
* @return mixed|string
*/
public function getAdminEditUrl($object): mixed
{
if (!empty($object->adminEditUrl)) {
return $object->adminEditUrl;
}
$module = getModuleNameByModel($object);
return moduleRoute(
$module,
config('twill.block_editor.browser_route_prefixes.' . $module),
'edit',
$object->id
);
}
/**
* Get all browser' detail info from the $browsers attribute.
* The missing information will be inferred by convention of Twill.
*
* @return \Illuminate\Support\Collection
*/
protected function getBrowsers()
{
return collect($this->browsers)->map(function ($browser, $key) {
$browserName = is_string($browser) ? $browser : $key;
$moduleName = empty($browser['moduleName']) ? $this->inferModuleNameFromBrowserName(
$browserName
) : $browser['moduleName'];
return [
'relation' => empty($browser['relation']) ? $this->inferRelationFromBrowserName(
$browserName
) : $browser['relation'],
'routePrefix' => isset($browser['routePrefix']) ? $browser['routePrefix'] : null,
'titleKey' => empty($browser['titleKey']) ? 'title' : $browser['titleKey'],
'moduleName' => $moduleName,
'model' => empty($browser['model']) ? $this->inferModelFromModuleName($moduleName) : $browser['model'],
'positionAttribute' => empty($browser['positionAttribute']) ? 'position' : $browser['positionAttribute'],
'browserName' => $browserName,
];
})->values();
}
/**
* Guess the browser's relation name (shoud be lower camel case, ex. userGroup, contactOffice).
*/
protected function inferRelationFromBrowserName(string $browserName): string
{
return Str::camel($browserName);
}
/**
* Guess the module's model name (should be singular upper camel case, ex. User, ArticleType).
*/
protected function inferModelFromModuleName(string $moduleName): string
{
return Str::studly(Str::singular($moduleName));
}
/**
* Guess the browser's module name (should be plural lower camel case, ex. userGroups, contactOffices).
*/
protected function inferModuleNameFromBrowserName(string $browserName): string
{
return Str::camel(Str::plural($browserName));
}
private function getRelatedElementsAsCollection($object, $relation)
{
return collect(
$object->$relation instanceof EloquentModel ? [$object->$relation] : $object->$relation
);
}
}