-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Expand file tree
/
Copy pathCanOpenModal.php
More file actions
813 lines (629 loc) · 21.7 KB
/
Copy pathCanOpenModal.php
File metadata and controls
813 lines (629 loc) · 21.7 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
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
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
<?php
namespace Filament\Actions\Concerns;
use BackedEnum;
use Closure;
use Filament\Actions\Action;
use Filament\Actions\ActionGroup;
use Filament\Actions\View\ActionsIconAlias;
use Filament\Support\Enums\Alignment;
use Filament\Support\Enums\SlideOverPosition;
use Filament\Support\Enums\Width;
use Filament\Support\Facades\FilamentIcon;
use Filament\Support\Icons\Heroicon;
use Filament\Support\View\Components\ModalComponent;
use Illuminate\Contracts\Support\Htmlable;
use Illuminate\Contracts\View\View;
use Illuminate\Support\Arr;
trait CanOpenModal
{
/**
* @var array<string, Action | ActionGroup>
*/
protected array $cachedExtraModalFooterActions;
/**
* @var array<Action | ActionGroup> | Closure
*/
protected array | Closure $extraModalFooterActions = [];
protected bool | Closure | null $isModalFooterSticky = null;
protected bool | Closure | null $isModalHeaderSticky = null;
/**
* @var array<string, Action>
*/
protected array $cachedModalActions;
/**
* @var array<Action | Closure>
*/
protected array $modalActions = [];
protected bool | Closure $isModalSlideOver = false;
protected SlideOverPosition | Closure | null $modalSlideOverPosition = null;
protected Alignment | string | Closure | null $modalAlignment = null;
/**
* @var array<string, Action | ActionGroup>
*/
protected array $cachedModalFooterActions;
/**
* @var array<Action> | Closure | null
*/
protected array | Closure | null $modalFooterActions = null;
protected Alignment | string | Closure | null $modalFooterActionsAlignment = null;
protected Action | bool | Closure | null $modalCancelAction = null;
protected string | Closure | null $modalCancelActionLabel = null;
protected Action | bool | Closure | null $modalSubmitAction = null;
protected string | Closure | null $modalSubmitActionLabel = null;
protected View | Htmlable | Closure | null $modalContent = null;
protected View | Htmlable | Closure | null $modalContentFooter = null;
protected string | Htmlable | Closure | null $modalHeading = null;
protected string | Htmlable | Closure | null $modalDescription = null;
protected Width | string | Closure | null $modalWidth = null;
protected bool | Closure | null $hasModal = null;
protected bool | Closure | null $isModalHidden = null;
protected bool | Closure | null $isModalClickThrough = null;
protected bool | Closure | null $hasModalCloseButton = null;
protected bool | Closure | null $isModalClosedByClickingAway = null;
protected bool | Closure | null $isModalClosedByEscaping = null;
protected bool | Closure | null $isModalAutofocused = null;
protected bool | Closure | null $hasUnsavedChangesAlert = null;
protected string | BackedEnum | Htmlable | Closure | null $modalIcon = null;
/**
* @var string | array<string> | Closure | null
*/
protected string | array | Closure | null $modalIconColor = null;
public function modalClickThrough(bool | Closure | null $condition = true): static
{
$this->isModalClickThrough = $condition;
return $this;
}
public function closeModalByClickingAway(bool | Closure | null $condition = true): static
{
$this->isModalClosedByClickingAway = $condition;
return $this;
}
public function closeModalByEscaping(bool | Closure | null $condition = true): static
{
$this->isModalClosedByEscaping = $condition;
return $this;
}
public function unsavedChangesAlert(bool | Closure | null $condition = true): static
{
$this->hasUnsavedChangesAlert = $condition;
return $this;
}
/**
* @deprecated Use `modalAlignment(Alignment::Center)` instead.
*/
public function centerModal(bool | Closure | null $condition = true): static
{
if ($this->evaluate($condition)) {
$this->modalAlignment(Alignment::Center);
}
return $this;
}
public function modalAlignment(Alignment | string | Closure | null $alignment = null): static
{
$this->modalAlignment = $alignment;
return $this;
}
public function modalCloseButton(bool | Closure | null $condition = true): static
{
$this->hasModalCloseButton = $condition;
return $this;
}
public function modalAutofocus(bool | Closure | null $condition = true): static
{
$this->isModalAutofocused = $condition;
return $this;
}
public function modalIcon(string | BackedEnum | Htmlable | Closure | null $icon = null): static
{
$this->modalIcon = $icon;
return $this;
}
/**
* @param string | array<string> | Closure | null $color
*/
public function modalIconColor(string | array | Closure | null $color = null): static
{
$this->modalIconColor = $color;
return $this;
}
public function slideOver(bool | Closure $condition = true): static
{
$this->isModalSlideOver = $condition;
return $this;
}
public function slideOverPosition(SlideOverPosition | Closure | null $position = null): static
{
$this->modalSlideOverPosition = $position;
return $this;
}
/**
* @param array<Action> | Closure | null $actions
*
* @deprecated Use `modalFooterActions()` instead.
*/
public function modalActions(array | Closure | null $actions = null): static
{
$this->modalFooterActions($actions);
return $this;
}
/**
* @param array<Action> | Closure | null $actions
*/
public function modalFooterActions(array | Closure | null $actions = null): static
{
$this->modalFooterActions = $actions;
return $this;
}
public function modalFooterActionsAlignment(Alignment | string | Closure | null $alignment = null): static
{
$this->modalFooterActionsAlignment = $alignment;
return $this;
}
/**
* @param array<Action> | Closure $actions
*
* @deprecated Use `extraModalFooterActions()` instead.
*/
public function extraModalActions(array | Closure $actions): static
{
$this->extraModalFooterActions($actions);
return $this;
}
/**
* @param array<Action | ActionGroup> | Closure $actions
*/
public function extraModalFooterActions(array | Closure $actions): static
{
$this->extraModalFooterActions = $actions;
return $this;
}
/**
* @param array<Action | Closure> $actions
*/
public function registerModalActions(array $actions): static
{
$this->modalActions = [
...$this->modalActions,
...$actions,
];
return $this;
}
public function modalSubmitAction(Action | bool | Closure | null $action = null): static
{
$this->modalSubmitAction = $action;
return $this;
}
public function modalCancelAction(Action | bool | Closure | null $action = null): static
{
$this->modalCancelAction = $action;
return $this;
}
public function modalSubmitActionLabel(string | Closure | null $label = null): static
{
$this->modalSubmitActionLabel = $label;
return $this;
}
public function modalCancelActionLabel(string | Closure | null $label = null): static
{
$this->modalCancelActionLabel = $label;
return $this;
}
/**
* @deprecated Use `modalSubmitActionLabel()` instead.
*/
public function modalButton(string | Closure | null $label = null): static
{
$this->modalSubmitActionLabel($label);
return $this;
}
public function modalContent(View | Htmlable | Closure | null $content = null): static
{
$this->modalContent = $content;
return $this;
}
/**
* @deprecated Use `modalContentFooter()` instead.
*/
public function modalFooter(View | Htmlable | Closure | null $footer = null): static
{
return $this->modalContentFooter($footer);
}
public function modalContentFooter(View | Htmlable | Closure | null $footer = null): static
{
$this->modalContentFooter = $footer;
return $this;
}
public function modalHeading(string | Htmlable | Closure | null $heading = null): static
{
$this->modalHeading = $heading;
return $this;
}
public function modalDescription(string | Htmlable | Closure | null $description = null): static
{
$this->modalDescription = $description;
return $this;
}
/**
* @deprecated Use `modalDescription()` instead.
*/
public function modalSubheading(string | Htmlable | Closure | null $subheading = null): static
{
$this->modalDescription($subheading);
return $this;
}
public function modalWidth(Width | string | Closure | null $width = null): static
{
$this->modalWidth = $width;
return $this;
}
public function getLivewireCallMountedActionName(): ?string
{
return null;
}
public function modal(bool | Closure | null $condition = true): static
{
$this->hasModal = $condition;
return $this;
}
public function modalHidden(bool | Closure | null $condition = true): static
{
$this->isModalHidden = $condition;
return $this;
}
/**
* @return array<string, Action | ActionGroup>
*/
public function getModalFooterActions(): array
{
if ($this->isWizard()) {
return [];
}
if (isset($this->cachedModalFooterActions)) {
return $this->cachedModalFooterActions;
}
if ($this->modalFooterActions !== null) {
$actions = [];
foreach ($this->evaluate($this->modalFooterActions) as $modalAction) {
$actions[$modalAction->getName()] = $this->prepareModalAction($modalAction);
}
return $this->cachedModalFooterActions = $actions;
}
$actions = [];
if ($submitAction = $this->getModalSubmitAction()) {
$actions['submit'] = $submitAction;
}
$actions = [
...$actions,
...$this->getExtraModalFooterActions(),
];
if ($cancelAction = $this->getModalCancelAction()) {
$actions['cancel'] = $cancelAction;
}
if (in_array($this->getModalFooterActionsAlignment(), [Alignment::Center, 'center'])) {
$actions = array_reverse($actions);
}
return $this->cachedModalFooterActions = $actions;
}
public function getModalFooterActionsAlignment(): string | Alignment | null
{
if ($alignment = $this->evaluate($this->modalFooterActionsAlignment)) {
return $alignment;
}
if ($this->isConfirmationRequired()) {
return Alignment::Center;
}
return null;
}
/**
* @return array<string, Action>
*/
public function getModalActions(): array
{
if (isset($this->cachedModalActions)) {
return $this->cachedModalActions;
}
$actions = [];
foreach ($this->getModalFooterActions() as $key => $action) {
if ($action instanceof ActionGroup) {
foreach ($action->getFlatActions() as $flatAction) {
$actions[$flatAction->getName()] = $flatAction;
}
} else {
$actions[$key] = $action;
}
}
foreach ($this->modalActions as $action) {
foreach (Arr::wrap($this->evaluate($action)) as $modalAction) {
$actions[$modalAction->getName()] = $this->prepareModalAction($modalAction);
}
}
return $this->cachedModalActions = $actions;
}
public function getModalAction(string $name): ?Action
{
return $this->getModalActions()[$name] ?? null;
}
public function prepareModalAction(Action $action): Action
{
return $action
->parentAction($this)
->schemaContainer($this->getSchemaContainer())
->schemaComponent($this->getSchemaComponent())
->livewire($this->getLivewire())
->when(
! $action->hasRecord(),
fn (Action $action) => $action->record($this->getRecord()),
)
->table($this->getTable());
}
protected function prepareModalActionGroup(ActionGroup $group): ActionGroup
{
$group
->schemaContainer($this->getSchemaContainer())
->schemaComponent($this->getSchemaComponent())
->livewire($this->getLivewire())
->when(
! $group->hasRecord(),
fn (ActionGroup $group) => $group->record($this->getRecord()),
)
->table($this->getTable());
foreach ($group->getActions() as $nestedAction) {
if ($nestedAction instanceof ActionGroup) {
$this->prepareModalActionGroup($nestedAction);
continue;
}
$this->prepareModalAction($nestedAction);
}
return $group;
}
/**
* @return array<Action | ActionGroup>
*/
public function getVisibleModalFooterActions(): array
{
return array_filter(
$this->getModalFooterActions(),
fn (Action | ActionGroup $action): bool => $action->isVisible(),
);
}
public function getModalSubmitAction(): ?Action
{
$hasFormWrapper = $this->hasFormWrapper();
$action = static::makeModalAction('submit')
->label($this->getModalSubmitActionLabel())
->submit($hasFormWrapper ? $this->getLivewireCallMountedActionName() : null)
->action($hasFormWrapper ? null : $this->getLivewireCallMountedActionName())
->color(match ($color = $this->getColor()) {
'gray' => 'primary',
default => $color,
});
if ($this->modalSubmitAction !== null) {
$action = $this->evaluate($this->modalSubmitAction, ['action' => $action]) ?? $action;
}
if ($action === false) {
return null;
}
return $action;
}
public function getModalCancelAction(): ?Action
{
$action = static::makeModalAction('cancel')
->label($this->getModalCancelActionLabel())
->close()
->color('gray');
if ($this->modalCancelAction !== null) {
$action = $this->evaluate($this->modalCancelAction, ['action' => $action]) ?? $action;
}
if ($action === false) {
return null;
}
return $action;
}
/**
* @return array<Action | ActionGroup>
*/
public function getExtraModalFooterActions(): array
{
if (isset($this->cachedExtraModalFooterActions)) {
return $this->cachedExtraModalFooterActions;
}
$actions = [];
foreach ($this->evaluate($this->extraModalFooterActions) as $action) {
if ($action instanceof ActionGroup) {
$actions[] = $this->prepareModalActionGroup($action);
} else {
$actions[$action->getName()] = $this->prepareModalAction($action);
}
}
return $this->cachedExtraModalFooterActions = $actions;
}
public function getModalAlignment(): Alignment | string
{
if ($alignment = $this->evaluate($this->modalAlignment)) {
return $alignment;
}
if ($this->isConfirmationRequired() || in_array($this->getModalWidth(), [Width::ExtraSmall, Width::Small, 'xs', 'sm'])) {
return Alignment::Center;
}
return Alignment::Start;
}
public function getModalSubmitActionLabel(): string
{
if (filled($label = $this->evaluate($this->modalSubmitActionLabel))) {
return $label;
}
if ($this->isConfirmationRequired()) {
return __('filament-actions::modal.actions.confirm.label');
}
return __('filament-actions::modal.actions.submit.label');
}
public function getModalCancelActionLabel(): string
{
return $this->evaluate($this->modalCancelActionLabel) ?? __('filament-actions::modal.actions.cancel.label');
}
public function getModalContent(): View | Htmlable | null
{
return $this->evaluate($this->modalContent);
}
public function getModalContentFooter(): View | Htmlable | null
{
return $this->evaluate($this->modalContentFooter);
}
public function hasModalContent(): bool
{
return $this->modalContent !== null;
}
public function hasModalContentFooter(): bool
{
return $this->modalContentFooter !== null;
}
public function getCustomModalHeading(): string | Htmlable | null
{
return $this->evaluate($this->modalHeading);
}
public function getModalHeading(): string | Htmlable
{
return $this->getCustomModalHeading() ?? $this->getLabel();
}
public function hasCustomModalHeading(): bool
{
return filled($this->getCustomModalHeading());
}
public function getModalDescription(): string | Htmlable | null
{
if (filled($description = $this->evaluate($this->modalDescription))) {
return $description;
}
if ($this->isConfirmationRequired()) {
return __('filament-actions::modal.confirmation');
}
return null;
}
public function hasModalDescription(): bool
{
return filled($this->getModalDescription());
}
public function getModalWidth(): Width | string
{
if ($width = $this->evaluate($this->modalWidth)) {
return $width;
}
if ($this->isConfirmationRequired()) {
return Width::Medium;
}
return Width::FourExtraLarge;
}
public function isModalFooterSticky(): bool
{
return (bool) ($this->evaluate($this->isModalFooterSticky) ?? $this->isModalSlideOver());
}
public function isModalHeaderSticky(): bool
{
return (bool) ($this->evaluate($this->isModalHeaderSticky) ?? $this->isModalSlideOver());
}
public function isModalSlideOver(): bool
{
return (bool) $this->evaluate($this->isModalSlideOver);
}
public function getModalSlideOverPosition(): ?SlideOverPosition
{
return $this->evaluate($this->modalSlideOverPosition);
}
public function hasModal(): ?bool
{
return $this->evaluate($this->hasModal);
}
public function shouldOpenModal(?Closure $checkForSchemaUsing = null): bool
{
if (is_bool($hasModal = $this->hasModal())) {
return $hasModal;
}
if ($this->evaluate($this->isModalHidden)) {
return false;
}
return $this->hasCustomModalHeading() ||
$this->hasModalDescription() ||
$this->hasModalContent() ||
$this->hasModalContentFooter() ||
(value($checkForSchemaUsing, $this) ?? false);
}
public function isModalClickThrough(): bool
{
return (bool) $this->evaluate($this->isModalClickThrough);
}
public function hasModalCloseButton(): bool
{
return $this->evaluate($this->hasModalCloseButton) ?? ModalComponent::$hasCloseButton;
}
public function isModalClosedByClickingAway(): bool
{
return (bool) ($this->evaluate($this->isModalClosedByClickingAway) ?? ModalComponent::$isClosedByClickingAway);
}
public function isModalClosedByEscaping(): bool
{
return (bool) ($this->evaluate($this->isModalClosedByEscaping) ?? ModalComponent::$isClosedByEscaping);
}
public function isModalAutofocused(): bool
{
return $this->evaluate($this->isModalAutofocused) ?? ModalComponent::$isAutofocused;
}
public function hasUnsavedChangesAlert(): bool
{
return (bool) ($this->evaluate($this->hasUnsavedChangesAlert) ?? (! $this->isSchemaDisabled()));
}
/**
* @deprecated Use `makeModalSubmitAction()` instead.
*
* @param array<string, mixed> | null $arguments
*/
public function makeExtraModalAction(string $name, ?array $arguments = null): Action
{
return $this->makeModalSubmitAction($name, $arguments);
}
/**
* @param array<string, mixed> | null $arguments
*/
public function makeModalSubmitAction(string $name, ?array $arguments = null): Action
{
return static::makeModalAction($name)
->callParent($this->getLivewireCallMountedActionName())
->arguments($arguments)
->color('gray');
}
public function makeModalAction(string $name): Action
{
return Action::make($name)
->button();
}
public function getModalIcon(): string | BackedEnum | Htmlable | null
{
if ($icon = $this->evaluate($this->modalIcon)) {
return $icon;
}
if ($this->isConfirmationRequired()) {
return FilamentIcon::resolve(ActionsIconAlias::MODAL_CONFIRMATION) ?? Heroicon::OutlinedExclamationTriangle;
}
return null;
}
/**
* @return string | array<string> | null
*/
public function getModalIconColor(): string | array | null
{
return $this->evaluate($this->modalIconColor) ?? $this->getColor() ?? 'primary';
}
public function stickyModalFooter(bool | Closure $condition = true): static
{
$this->isModalFooterSticky = $condition;
return $this;
}
public function stickyModalHeader(bool | Closure $condition = true): static
{
$this->isModalHeaderSticky = $condition;
return $this;
}
public function hasCustomModalPresence(): bool
{
return $this->hasModal !== null;
}
}