3 namespace MediaWiki\HTMLForm\Field
;
5 use InvalidArgumentException
;
6 use MediaWiki\Html\Html
;
7 use MediaWiki\Request\WebRequest
;
8 use MediaWiki\Widget\SelectWithInputWidget
;
11 * Double field with a dropdown list constructed from a system message in the format
14 * * New Optgroup header
15 * Plus a text field underneath for an additional reason. The 'value' of the field is
16 * "<select>: <extra reason>", or "<extra reason>" if nothing has been selected in the
20 * @todo FIXME: If made 'required', only the text field should be compulsory.
22 class HTMLSelectAndOtherField
extends HTMLSelectField
{
23 private const FIELD_CLASS
= 'mw-htmlform-select-and-other-field';
25 private $mFlatOptions;
31 public function __construct( $params ) {
32 if ( array_key_exists( 'other', $params ) ) {
34 } elseif ( array_key_exists( 'other-message', $params ) ) {
35 $params['other'] = $this->getMessage( $params['other-message'] )->plain();
37 $params['other'] = $this->msg( 'htmlform-selectorother-other' )->plain();
40 parent
::__construct( $params );
42 if ( $this->getOptions() === null ) {
43 throw new InvalidArgumentException( 'HTMLSelectAndOtherField called without any options' );
45 if ( !in_array( 'other', $this->mOptions
, true ) ) {
46 // Have 'other' always as first element
47 $this->mOptions
= [ $params['other'] => 'other' ] +
$this->mOptions
;
49 $this->mFlatOptions
= self
::flattenOptions( $this->getOptions() );
52 public function getInputHTML( $value ) {
53 $select = parent
::getInputHTML( $value[1] );
56 'size' => $this->getSize(),
59 if ( isset( $this->mParams
['maxlength-unit'] ) ) {
60 $textAttribs['data-mw-maxlength-unit'] = $this->mParams
['maxlength-unit'];
69 'maxlength', // gets dynamic with javascript, see mediawiki.htmlform.js
70 'maxlength-unit', // 'bytes' or 'codepoints', see mediawiki.htmlform.js
73 $textAttribs +
= $this->getAttributes( $allowedParams );
75 $textbox = Html
::input( $this->mName
. '-other', $value[2], 'text', $textAttribs );
79 'class' => self
::FIELD_CLASS
81 if ( $this->mClass
!== '' ) {
82 $wrapperAttribs['class'] .= ' ' . $this->mClass
;
84 return Html
::rawElement(
87 "$select<br />\n$textbox"
91 protected function getOOUIModules() {
92 return [ 'mediawiki.widgets.SelectWithInputWidget' ];
95 public function getInputOOUI( $value ) {
96 $this->mParent
->getOutput()->addModuleStyles( 'mediawiki.widgets.SelectWithInputWidget.styles' );
100 'name' => $this->mName
. '-other',
101 'value' => $value[2],
113 $textAttribs +
= \OOUI\Element
::configFromHtmlAttributes(
114 $this->getAttributes( $allowedParams )
118 $dropdownInputAttribs = [
119 'name' => $this->mName
,
120 'options' => $this->getOptionsOOUI(),
121 'value' => $value[1],
129 $dropdownInputAttribs +
= \OOUI\Element
::configFromHtmlAttributes(
130 $this->getAttributes( $allowedParams )
134 if ( isset( $this->mParams
[ 'disabled' ] ) && $this->mParams
[ 'disabled' ] ) {
138 $inputClasses = [ self
::FIELD_CLASS
];
139 if ( $this->mClass
!== '' ) {
140 $inputClasses = array_merge( $inputClasses, explode( ' ', $this->mClass
) );
142 return $this->getInputWidget( [
144 'disabled' => $disabled,
145 'textinput' => $textAttribs,
146 'dropdowninput' => $dropdownInputAttribs,
148 'required' => $this->mParams
[ 'required' ] ??
false,
149 'classes' => $inputClasses,
151 'maxlengthUnit' => $this->mParams
['maxlength-unit'] ??
'bytes'
157 * @stable to override
158 * @param array $params
159 * @return \MediaWiki\Widget\SelectWithInputWidget
161 public function getInputWidget( $params ) {
162 return new SelectWithInputWidget( $params );
165 public function getInputCodex( $value, $hasErrors ) {
166 $select = parent
::getInputCodex( $value[1], $hasErrors );
168 // Set up attributes for the text input.
169 $textInputAttribs = [
170 'size' => $this->getSize(),
171 'name' => $this->mName
. '-other'
174 if ( isset( $this->mParams
['maxlength-unit'] ) ) {
175 $textInputAttribs['data-mw-maxlength-unit'] = $this->mParams
['maxlength-unit'];
184 'maxlength', // gets dynamic with javascript, see mediawiki.htmlform.js
185 'maxlength-unit', // 'bytes' or 'codepoints', see mediawiki.htmlform.js
188 $textInputAttribs +
= $this->getAttributes( $allowedParams );
190 // Get text input HTML.
191 $textInput = HTMLTextField
::buildCodexComponent(
195 $this->mName
. '-other',
199 // Set up the wrapper element and return the entire component.
202 'class' => [ self
::FIELD_CLASS
]
204 if ( $this->mClass
!== '' ) {
205 $wrapperAttribs['class'][] = $this->mClass
;
207 return Html
::rawElement(
210 "$select<br />\n$textInput"
217 public function getDefault() {
218 $default = parent
::getDefault();
220 // Default values of empty form
225 if ( $default !== null ) {
227 // Assume the default is a text value, with the 'other' option selected.
228 // Then check if that assumption is correct, and update $list and $text if not.
230 foreach ( $this->mFlatOptions
as $option ) {
231 $match = $option . $this->msg( 'colon-separator' )->inContentLanguage()->text();
232 if ( str_starts_with( $final, $match ) ) {
234 $text = substr( $final, strlen( $match ) );
240 return [ $final, $list, $text ];
244 * @param WebRequest $request
246 * @return array ["<overall message>","<select value>","<text field value>"]
248 public function loadDataFromRequest( $request ) {
249 if ( $request->getCheck( $this->mName
) ) {
250 $list = $request->getText( $this->mName
);
251 $text = $request->getText( $this->mName
. '-other' );
253 // Should be built the same as in mediawiki.htmlform.js
254 if ( $list == 'other' ) {
256 } elseif ( !in_array( $list, $this->mFlatOptions
, true ) ) {
257 # User has spoofed the select form to give an option which wasn't
258 # in the original offer. Sulk...
260 } elseif ( $text == '' ) {
263 $final = $list . $this->msg( 'colon-separator' )->inContentLanguage()->text() . $text;
265 return [ $final, $list, $text ];
267 return $this->getDefault();
270 public function getSize() {
271 return $this->mParams
['size'] ??
45;
274 public function validate( $value, $alldata ) {
275 # HTMLSelectField forces $value to be one of the options in the select
276 # field, which is not useful here. But we do want the validation further up
278 $p = parent
::validate( $value[1], $alldata );
284 if ( isset( $this->mParams
['required'] )
285 && $this->mParams
['required'] !== false
288 return $this->msg( 'htmlform-required' );
295 /** @deprecated class alias since 1.42 */
296 class_alias( HTMLSelectAndOtherField
::class, 'HTMLSelectAndOtherField' );