Merge "Expose sort orders from search engine in ApiQuerySearch"
[lhc/web/wiklou.git] / includes / htmlform / fields / HTMLSelectOrOtherField.php
1 <?php
2
3 /**
4 * Select dropdown field, with an additional "other" textbox.
5 *
6 * HTMLComboboxField implements the same functionality using a single form field
7 * and should be used instead.
8 */
9 class HTMLSelectOrOtherField extends HTMLTextField {
10 public function __construct( $params ) {
11 parent::__construct( $params );
12 $this->getOptions();
13 if ( !in_array( 'other', $this->mOptions, true ) ) {
14 $msg =
15 $params['other'] ?? wfMessage( 'htmlform-selectorother-other' )->text();
16 // Have 'other' always as first element
17 $this->mOptions = [ $msg => 'other' ] + $this->mOptions;
18 }
19 }
20
21 public function getInputHTML( $value ) {
22 $valInSelect = false;
23
24 if ( $value !== false ) {
25 $value = strval( $value );
26 $valInSelect = in_array(
27 $value, HTMLFormField::flattenOptions( $this->getOptions() ), true
28 );
29 }
30
31 $selected = $valInSelect ? $value : 'other';
32
33 $select = new XmlSelect( $this->mName, $this->mID, $selected );
34 $select->addOptions( $this->getOptions() );
35
36 $select->setAttribute( 'class', 'mw-htmlform-select-or-other' );
37
38 $tbAttribs = [ 'id' => $this->mID . '-other', 'size' => $this->getSize() ];
39
40 if ( !empty( $this->mParams['disabled'] ) ) {
41 $select->setAttribute( 'disabled', 'disabled' );
42 $tbAttribs['disabled'] = 'disabled';
43 }
44
45 if ( isset( $this->mParams['tabindex'] ) ) {
46 $select->setAttribute( 'tabindex', $this->mParams['tabindex'] );
47 $tbAttribs['tabindex'] = $this->mParams['tabindex'];
48 }
49
50 $select = $select->getHTML();
51
52 if ( isset( $this->mParams['maxlength'] ) ) {
53 $tbAttribs['maxlength'] = $this->mParams['maxlength'];
54 }
55
56 if ( $this->mClass !== '' ) {
57 $tbAttribs['class'] = $this->mClass;
58 }
59
60 $textbox = Html::input( $this->mName . '-other', $valInSelect ? '' : $value, 'text', $tbAttribs );
61
62 return "$select<br />\n$textbox";
63 }
64
65 protected function shouldInfuseOOUI() {
66 return true;
67 }
68
69 protected function getOOUIModules() {
70 return [ 'mediawiki.widgets.SelectWithInputWidget' ];
71 }
72
73 public function getInputOOUI( $value ) {
74 $this->mParent->getOutput()->addModuleStyles( 'mediawiki.widgets.SelectWithInputWidget.styles' );
75
76 $valInSelect = false;
77 if ( $value !== false ) {
78 $value = strval( $value );
79 $valInSelect = in_array(
80 $value, HTMLFormField::flattenOptions( $this->getOptions() ), true
81 );
82 }
83
84 # DropdownInput
85 $dropdownAttribs = [
86 'name' => $this->mName,
87 'options' => $this->getOptionsOOUI(),
88 'value' => $valInSelect ? $value : 'other',
89 'class' => [ 'mw-htmlform-select-or-other' ],
90 ];
91
92 $allowedParams = [
93 'disabled',
94 'tabindex',
95 ];
96
97 $dropdownAttribs += OOUI\Element::configFromHtmlAttributes(
98 $this->getAttributes( $allowedParams )
99 );
100
101 # TextInput
102 $textAttribs = [
103 'name' => $this->mName . '-other',
104 'size' => $this->getSize(),
105 'value' => $valInSelect ? '' : $value,
106 ];
107
108 $allowedParams = [
109 'required',
110 'autofocus',
111 'multiple',
112 'disabled',
113 'tabindex',
114 'maxlength',
115 ];
116
117 $textAttribs += OOUI\Element::configFromHtmlAttributes(
118 $this->getAttributes( $allowedParams )
119 );
120
121 if ( $this->mClass !== '' ) {
122 $textAttribs['classes'] = [ $this->mClass ];
123 }
124 if ( $this->mPlaceholder !== '' ) {
125 $textAttribs['placeholder'] = $this->mPlaceholder;
126 }
127
128 return $this->getInputWidget( [
129 'id' => $this->mID,
130 'textinput' => $textAttribs,
131 'dropdowninput' => $dropdownAttribs,
132 'or' => true,
133 ] );
134 }
135
136 public function getInputWidget( $params ) {
137 return new MediaWiki\Widget\SelectWithInputWidget( $params );
138 }
139
140 /**
141 * @param WebRequest $request
142 *
143 * @return string
144 */
145 public function loadDataFromRequest( $request ) {
146 if ( $request->getCheck( $this->mName ) ) {
147 $val = $request->getText( $this->mName );
148
149 if ( $val === 'other' ) {
150 $val = $request->getText( $this->mName . '-other' );
151 }
152
153 return $val;
154 } else {
155 return $this->getDefault();
156 }
157 }
158 }