|
1 | 1 | <?php
|
2 | 2 |
|
3 | 3 | use Illuminate\Support\Js;
|
4 |
| -use Illuminate\View\ComponentAttributeBag; |
5 | 4 |
|
6 | 5 | return [
|
7 | 6 |
|
|
112 | 111 | */
|
113 | 112 |
|
114 | 113 | 'filter_attributes' => [
|
115 |
| - 'input_text' => function (string $field, string $title): array { |
116 |
| - return [ |
117 |
| - 'inputAttributes' => new ComponentAttributeBag([ |
118 |
| - 'wire:model' => 'filters.input_text.' . $field, |
119 |
| - 'wire:input.live.debounce.600ms' => 'filterInputText(\'' . $field . '\', $event.target.value, \'' . $title . '\')', |
120 |
| - ]), |
121 |
| - 'selectAttributes' => new ComponentAttributeBag([ |
122 |
| - 'wire:model' => 'filters.input_text_options.' . $field, |
123 |
| - 'wire:input.live.debounce.600ms' => 'filterInputTextOptions(\'' . $field . '\', $event.target.value, \'' . $title . '\')', |
124 |
| - ]), |
125 |
| - ]; |
126 |
| - }, |
127 |
| - 'boolean' => function (string $field, string $title): array { |
128 |
| - return [ |
129 |
| - 'selectAttributes' => new ComponentAttributeBag([ |
130 |
| - 'wire:input.live.debounce.600ms' => 'filterBoolean(\'' . $field . '\', $event.target.value, \'' . $title . '\')', |
131 |
| - 'wire:model' => 'filters.boolean.' . $field, |
132 |
| - ]), |
133 |
| - ]; |
134 |
| - }, |
135 |
| - 'number' => function (string $field, array $filter): array { |
136 |
| - return [ |
137 |
| - 'inputStartAttributes' => new ComponentAttributeBag([ |
138 |
| - 'wire:model' => 'filters.number.' . $field . '.start', |
139 |
| - 'wire:input.live.debounce.600ms' => 'filterNumberStart(\'' . $field . '\', ' . Js::from($filter) . ', $event.target.value)', |
140 |
| - ]), |
141 |
| - 'inputEndAttributes' => new ComponentAttributeBag([ |
142 |
| - 'wire:model' => 'filters.number.' . $field . '.end', |
143 |
| - 'wire:input.live.debounce.600ms' => 'filterNumberEnd(\'' . $field . '\', ' . Js::from($filter) . ', $event.target.value)', |
144 |
| - ]), |
145 |
| - ]; |
146 |
| - }, |
| 114 | + 'input_text' => \PowerComponents\LivewirePowerGrid\FilterAttributes\InputText::class, |
| 115 | + 'boolean' => \PowerComponents\LivewirePowerGrid\FilterAttributes\Boolean::class, |
| 116 | + 'number' => \PowerComponents\LivewirePowerGrid\FilterAttributes\Number::class, |
| 117 | + 'select' => \PowerComponents\LivewirePowerGrid\FilterAttributes\Select::class, |
147 | 118 | ],
|
148 | 119 |
|
149 | 120 | /*
|
|
0 commit comments