blob: ae541a66d4f62d773e9c73c7f7c33ed14ccdd65a (
plain)
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
|
<?php
namespace OOUI;
/**
* Dropdown input widget, wrapping a `<select>` element. Intended to be used within a
* OO.ui.FormLayout.
*/
class DropdownInputWidget extends InputWidget {
/**
* HTML `<option>` tags for this widget.
* @var Tag[]
*/
protected $options = array();
/**
* @param array $config Configuration options
* @param array[] $config['options'] Array of menu options in the format
* `array( 'data' => …, 'label' => … )`
*/
public function __construct( array $config = array() ) {
// Parent constructor
parent::__construct( $config );
// Initialization
$this->setOptions( isset( $config['options'] ) ? $config['options'] : array() );
$this->addClasses( array( 'oo-ui-dropdownInputWidget' ) );
}
protected function getInputElement( $config ) {
return new Tag( 'select' );
}
public function setValue( $value ) {
$this->value = $this->cleanUpValue( $value );
foreach ( $this->options as &$opt ) {
if ( $opt->getAttribute( 'value' ) === $this->value ) {
$opt->setAttributes( array( 'selected' => 'selected' ) );
} else {
$opt->removeAttributes( array( 'selected' ) );
}
}
return $this;
}
/**
* Set the options available for this input.
*
* @param array[] $options Array of menu options in the format
* `array( 'data' => …, 'label' => … )`
* @chainable
*/
public function setOptions( $options ) {
$value = $this->getValue();
$isValueAvailable = false;
$this->options = array();
// Rebuild the dropdown menu
$this->input->clearContent();
foreach ( $options as $opt ) {
$option = new Tag( 'option' );
$option->setAttributes( array( 'value' => $opt['data'] ) );
$option->appendContent( isset( $opt['label'] ) ? $opt['label'] : $opt['data'] );
if ( $value === $opt['data'] ) {
$isValueAvailable = true;
}
$this->options[] = $option;
$this->input->appendContent( $option );
}
// Restore the previous value, or reset to something sensible
if ( $isValueAvailable ) {
// Previous value is still available
$this->setValue( $value );
} else {
// No longer valid, reset
if ( count( $options ) ) {
$this->setValue( $options[0]['data'] );
}
}
return $this;
}
public function getConfig( &$config ) {
$o = array();
foreach ( $this->options as $option ) {
$label = $option->content[0];
$data = $option->getAttribute( 'value' );
$o[] = array( 'data' => $data, 'label' => $label );
}
$config['options'] = $o;
return parent::getConfig( $config );
}
}
|