|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace JeroenNoten\LaravelAdminLte\Components\Form; |
|
4
|
|
|
|
|
5
|
|
|
use Illuminate\Support\Arr; |
|
6
|
|
|
use Illuminate\View\Component; |
|
7
|
|
|
|
|
8
|
|
|
class Options extends Component |
|
9
|
|
|
{ |
|
10
|
|
|
/** |
|
11
|
|
|
* The list of options as key value pairs. |
|
12
|
|
|
* |
|
13
|
|
|
* @var array |
|
14
|
|
|
*/ |
|
15
|
|
|
public $options; |
|
16
|
|
|
|
|
17
|
|
|
/** |
|
18
|
|
|
* The list of selected option keys. |
|
19
|
|
|
* |
|
20
|
|
|
* @var array |
|
21
|
|
|
*/ |
|
22
|
|
|
public $selected; |
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* The list of disabled option keys. |
|
26
|
|
|
* |
|
27
|
|
|
* @var array |
|
28
|
|
|
*/ |
|
29
|
|
|
public $disabled; |
|
30
|
|
|
|
|
31
|
|
|
/** |
|
32
|
|
|
* Whether to use strict comparison between the option keys and the keys of |
|
33
|
|
|
* the selected/disabled options. |
|
34
|
|
|
* |
|
35
|
|
|
* @var bool |
|
36
|
|
|
*/ |
|
37
|
|
|
public $strict; |
|
38
|
|
|
|
|
39
|
|
|
/** |
|
40
|
|
|
* Whether to add a selectable empty option to the list of options. If the |
|
41
|
|
|
* value is a string, it will be used as the option label, otherwise no |
|
42
|
|
|
* label will be available for the empty option. |
|
43
|
|
|
* |
|
44
|
|
|
* @var bool|string |
|
45
|
|
|
*/ |
|
46
|
|
|
public $emptyOption; |
|
47
|
|
|
|
|
48
|
|
|
/** |
|
49
|
|
|
* Whether to add a placeholder (non-selectable option) to the list of |
|
50
|
|
|
* options. If the value is a string, it will be used as the placeholder |
|
51
|
|
|
* label, otherwise no label will be available for the placeholder. |
|
52
|
|
|
* |
|
53
|
|
|
* @var bool|string |
|
54
|
|
|
*/ |
|
55
|
|
|
public $placeholder; |
|
56
|
|
|
|
|
57
|
|
|
/** |
|
58
|
|
|
* Create a new component instance. |
|
59
|
|
|
*/ |
|
60
|
2 |
|
public function __construct( |
|
61
|
|
|
$options, $selected = null, $disabled = null, |
|
62
|
|
|
$strict = null, $emptyOption = null, $placeholder = null |
|
63
|
|
|
) { |
|
64
|
2 |
|
$this->options = Arr::wrap($options); |
|
65
|
2 |
|
$this->selected = Arr::wrap($selected); |
|
66
|
2 |
|
$this->disabled = Arr::wrap($disabled); |
|
67
|
2 |
|
$this->strict = isset($strict); |
|
68
|
2 |
|
$this->emptyOption = $emptyOption; |
|
69
|
2 |
|
$this->placeholder = $placeholder; |
|
70
|
2 |
|
} |
|
71
|
|
|
|
|
72
|
|
|
/** |
|
73
|
|
|
* Determines if an option's key is on selected state. |
|
74
|
|
|
* |
|
75
|
|
|
* @param string $key The option's key. |
|
76
|
|
|
* @return bool |
|
77
|
|
|
*/ |
|
78
|
1 |
|
public function isSelected($key) |
|
79
|
|
|
{ |
|
80
|
1 |
|
return in_array($key, $this->selected, $this->strict); |
|
81
|
|
|
} |
|
82
|
|
|
|
|
83
|
|
|
/** |
|
84
|
|
|
* Determines if an option's key is on disabled state. |
|
85
|
|
|
* |
|
86
|
|
|
* @param string $key The option's key. |
|
87
|
|
|
* @return bool |
|
88
|
|
|
*/ |
|
89
|
1 |
|
public function isDisabled($key) |
|
90
|
|
|
{ |
|
91
|
1 |
|
return in_array($key, $this->disabled, $this->strict); |
|
92
|
|
|
} |
|
93
|
|
|
|
|
94
|
|
|
/** |
|
95
|
|
|
* Get the view / contents that represent the component. |
|
96
|
|
|
* |
|
97
|
|
|
* @return \Illuminate\View\View|string |
|
98
|
|
|
*/ |
|
99
|
2 |
|
public function render() |
|
100
|
|
|
{ |
|
101
|
2 |
|
return view('adminlte::components.form.options'); |
|
102
|
|
|
} |
|
103
|
|
|
} |
|
104
|
|
|
|