|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Encore\Admin\Grid\Concerns; |
|
4
|
|
|
|
|
5
|
|
|
use Closure; |
|
6
|
|
|
use Encore\Admin\Grid; |
|
7
|
|
|
|
|
8
|
|
|
trait HasActions |
|
9
|
|
|
{ |
|
10
|
|
|
/** |
|
11
|
|
|
* Callback for grid actions. |
|
12
|
|
|
* |
|
13
|
|
|
* @var Closure |
|
14
|
|
|
*/ |
|
15
|
|
|
protected $actionsCallback; |
|
16
|
|
|
|
|
17
|
|
|
/** |
|
18
|
|
|
* Actions column display class. |
|
19
|
|
|
* |
|
20
|
|
|
* @var string |
|
21
|
|
|
*/ |
|
22
|
|
|
protected $actionsClass; |
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* Set grid action callback. |
|
26
|
|
|
* |
|
27
|
|
|
* @param Closure|string $actions |
|
28
|
|
|
* |
|
29
|
|
|
* @return $this |
|
30
|
|
|
*/ |
|
31
|
|
|
public function actions($actions) |
|
32
|
|
|
{ |
|
33
|
|
|
if ($actions instanceof Closure) { |
|
34
|
|
|
$this->actionsCallback = $actions; |
|
35
|
|
|
} |
|
36
|
|
|
|
|
37
|
|
|
return $this; |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
/** |
|
41
|
|
|
* Get action display class. |
|
42
|
|
|
* |
|
43
|
|
|
* @return \Illuminate\Config\Repository|mixed|string |
|
44
|
|
|
*/ |
|
45
|
|
|
public function getActionClass() |
|
46
|
|
|
{ |
|
47
|
|
|
if ($this->actionsClass) { |
|
48
|
|
|
return $this->actionsClass; |
|
49
|
|
|
} |
|
50
|
|
|
|
|
51
|
|
|
if ($class = config('admin.grid_action_class')) { |
|
52
|
|
|
return $class; |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
|
|
return Grid\Displayers\Actions::class; |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
|
|
/** |
|
59
|
|
|
* @param string $actionClass |
|
60
|
|
|
* |
|
61
|
|
|
* @return $this |
|
62
|
|
|
*/ |
|
63
|
|
|
public function setActionClass(string $actionClass) |
|
64
|
|
|
{ |
|
65
|
|
|
if (is_subclass_of($actionClass, Grid\Displayers\Actions::class)) { |
|
|
|
|
|
|
66
|
|
|
$this->actionsClass = $actionClass; |
|
67
|
|
|
} |
|
68
|
|
|
|
|
69
|
|
|
return $this; |
|
70
|
|
|
} |
|
71
|
|
|
|
|
72
|
|
|
/** |
|
73
|
|
|
* Disable all actions. |
|
74
|
|
|
* |
|
75
|
|
|
* @return $this |
|
76
|
|
|
*/ |
|
77
|
|
|
public function disableActions(bool $disable = true) |
|
78
|
|
|
{ |
|
79
|
|
|
return $this->option('show_actions', !$disable); |
|
|
|
|
|
|
80
|
|
|
} |
|
81
|
|
|
|
|
82
|
|
|
/** |
|
83
|
|
|
* Set grid batch-action callback. |
|
84
|
|
|
* |
|
85
|
|
|
* @param Closure $closure |
|
86
|
|
|
* |
|
87
|
|
|
* @return $this |
|
88
|
|
|
*/ |
|
89
|
|
|
public function batchActions(Closure $closure) |
|
90
|
|
|
{ |
|
91
|
|
|
$this->tools(function (Grid\Tools $tools) use ($closure) { |
|
|
|
|
|
|
92
|
|
|
$tools->batch($closure); |
|
93
|
|
|
}); |
|
94
|
|
|
|
|
95
|
|
|
return $this; |
|
96
|
|
|
} |
|
97
|
|
|
|
|
98
|
|
|
/** |
|
99
|
|
|
* @param bool $disable |
|
100
|
|
|
* |
|
101
|
|
|
* @return Grid|mixed |
|
102
|
|
|
*/ |
|
103
|
|
|
public function disableBatchActions(bool $disable = true) |
|
104
|
|
|
{ |
|
105
|
|
|
$this->tools->disableBatchActions($disable); |
|
|
|
|
|
|
106
|
|
|
|
|
107
|
|
|
return $this->option('show_row_selector', !$disable); |
|
|
|
|
|
|
108
|
|
|
} |
|
109
|
|
|
|
|
110
|
|
|
/** |
|
111
|
|
|
* Add `actions` column for grid. |
|
112
|
|
|
* |
|
113
|
|
|
* @return void |
|
114
|
|
|
*/ |
|
115
|
|
|
protected function appendActionsColumn() |
|
116
|
|
|
{ |
|
117
|
|
|
if (!$this->option('show_actions')) { |
|
|
|
|
|
|
118
|
|
|
return; |
|
119
|
|
|
} |
|
120
|
|
|
|
|
121
|
|
|
$this->addColumn(Grid\Column::ACTION_COLUMN_NAME, trans('admin.action')) |
|
|
|
|
|
|
122
|
|
|
->displayUsing($this->getActionClass(), [$this->actionsCallback]); |
|
123
|
|
|
} |
|
124
|
|
|
} |