Completed
Push — master ( 2b7730...10405b )
by wen
11:53
created

Select   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 72
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 6
Bugs 0 Features 0
Metric Value
wmc 8
c 6
b 0
f 0
lcom 1
cbo 3
dl 0
loc 72
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A setOptions() 0 6 1
A __construct() 0 8 2
B getOptions() 0 27 4
A toArray() 0 6 1
1
<?php
2
3
namespace Sco\Admin\Form\Elements;
4
5
use Illuminate\Database\Eloquent\Model;
6
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
7
use Illuminate\Support\Collection;
8
use InvalidArgumentException;
9
use Sco\Admin\Contracts\RepositoryInterface;
10
use Sco\Admin\Traits\SelectOptionsFromModel;
11
12
class Select extends NamedElement
13
{
14
    use SelectOptionsFromModel;
15
16
    protected $type = 'select';
17
18
    protected $cast = 'string';
19
20
    protected $options;
21
22
    /**
23
     *
24
     * @param string $name
25
     * @param string $title
26
     * @param array|Model $options
27
     */
28
    public function __construct(string $name, string $title, $options = null)
29
    {
30
        parent::__construct($name, $title);
31
32
        if (! is_null($options)) {
33
            $this->setOptions($options);
34
        }
35
    }
36
37
    public function getOptions()
38
    {
39
        if ($this->options instanceof \Closure) {
40
            $options = ($this->options)();
41
        } elseif ($this->isOptionsModel()) {
42
            $options = $this->getOptionsFromModel();
43
        } elseif (is_array($this->options)) {
44
            $options = $this->options;
45
        } else {
46
            throw new InvalidArgumentException(
47
                sprintf(
48
                    "The %s element[%s] options must be return array(key=>value)",
49
                    $this->getType(),
50
                    $this->getName()
51
                )
52
            );
53
        }
54
55
        return collect($options)->mapWithKeys(function ($value, $key) {
56
            return [
57
                $key => [
58
                    'label' => $value,
59
                    'value' => (string) $key,
60
                ],
61
            ];
62
        })->values();
63
    }
64
65
    /**
66
     * @param mixed $options
67
     *
68
     * @return $this
69
     */
70
    public function setOptions($options)
71
    {
72
        $this->options = $options;
73
74
        return $this;
75
    }
76
77
    public function toArray()
78
    {
79
        return parent::toArray() + [
80
                'options' => $this->getOptions(),
81
            ];
82
    }
83
}
84