mParams['disabled-options'] ) ) { $this->mParams['disabled-options'] = []; } if ( isset( $params['dropdown'] ) ) { $this->mDropdown = true; if ( isset( $params['placeholder'] ) ) { $this->mPlaceholder = $params['placeholder']; } elseif ( isset( $params['placeholder-message'] ) ) { $this->mPlaceholder = $this->msg( $params['placeholder-message'] )->text(); } } if ( isset( $params['flatlist'] ) ) { $this->mClass .= ' mw-htmlform-flatlist'; } } /** * @inheritDoc * @stable to override */ public function validate( $value, $alldata ) { $p = parent::validate( $value, $alldata ); if ( $p !== true ) { return $p; } if ( !is_array( $value ) ) { return false; } // Reject nested arrays (T274955) $value = array_filter( $value, 'is_scalar' ); if ( isset( $this->mParams['required'] ) && $this->mParams['required'] !== false && $value === [] ) { return $this->msg( 'htmlform-required' ); } if ( isset( $this->mParams['max'] ) && ( count( $value ) > $this->mParams['max'] ) ) { return $this->msg( 'htmlform-multiselect-toomany', $this->mParams['max'] ); } # If all options are valid, array_intersect of the valid options # and the provided options will return the provided options. $validOptions = HTMLFormField::flattenOptions( $this->getOptions() ); $validValues = array_intersect( $value, $validOptions ); if ( count( $validValues ) == count( $value ) ) { return true; } else { return $this->msg( 'htmlform-select-badoption' ); } } /** * @inheritDoc * @stable to override */ public function getInputHTML( $value ) { $value = HTMLFormField::forceToStringRecursive( $value ); $html = $this->formatOptions( $this->getOptions(), $value ); return $html; } /** * @stable to override * * @param array $options * @param mixed $value * * @return string */ public function formatOptions( $options, $value ) { $html = ''; $attribs = $this->getAttributes( [ 'disabled', 'tabindex' ] ); foreach ( $options as $label => $info ) { if ( is_array( $info ) ) { $html .= Html::rawElement( 'h1', [], $label ) . "\n"; $html .= $this->formatOptions( $info, $value ); } else { $thisAttribs = [ 'id' => "{$this->mID}-$info", 'value' => $info, ]; if ( in_array( $info, $this->mParams['disabled-options'], true ) ) { $thisAttribs['disabled'] = 'disabled'; } $checked = in_array( $info, $value, true ); $checkbox = $this->getOneCheckbox( $checked, $attribs + $thisAttribs, $label ); $html .= ' ' . Html::rawElement( 'div', [ 'class' => 'mw-htmlform-flatlist-item' ], $checkbox ); } } return $html; } protected function getOneCheckbox( $checked, $attribs, $label ) { if ( $this->mParent instanceof OOUIHTMLForm ) { throw new RuntimeException( __METHOD__ . ' is not supported' ); } else { $elementFunc = [ Html::class, $this->mOptionsLabelsNotFromMessage ? 'rawElement' : 'element' ]; $checkbox = Xml::check( "{$this->mName}[]", $checked, $attribs ) . "\u{00A0}" . call_user_func( $elementFunc, 'label', [ 'for' => $attribs['id'] ], $label ); return $checkbox; } } public function getOptionsOOUI() { $optionsOouiSections = []; $options = $this->getOptions(); // If the options are supposed to be split into sections, each section becomes a separate // CheckboxMultiselectInputWidget. foreach ( $options as $label => $section ) { if ( is_array( $section ) ) { $optionsOouiSections[ $label ] = Html::listDropdownOptionsOoui( $section ); unset( $options[$label] ); } } // If anything remains in the array, they are sectionless options. Put them at the beginning. if ( $options ) { $optionsOouiSections = array_merge( [ '' => Html::listDropdownOptionsOoui( $options ) ], $optionsOouiSections ); } return $optionsOouiSections; } /** * Get the OOUI version of this field. * * Returns OOUI\CheckboxMultiselectInputWidget for fields that only have one section, * string otherwise. * * @stable to override * @since 1.28 * @param string[] $value * @return \OOUI\Widget|string * @suppress PhanParamSignatureMismatch */ public function getInputOOUI( $value ) { $this->mParent->getOutput()->addModules( 'oojs-ui-widgets' ); if ( $this->mDropdown ) { $this->mParent->getOutput()->addModuleStyles( 'mediawiki.widgets.TagMultiselectWidget.styles' ); } // Reject nested arrays (T274955) $value = array_filter( $value, 'is_scalar' ); $out = []; $optionsSections = $this->getOptionsOOUI(); foreach ( $optionsSections as $sectionLabel => &$groupedOptions ) { $attr = []; $attr['name'] = "{$this->mName}[]"; $attr['value'] = $value; foreach ( $groupedOptions as &$option ) { $option['disabled'] = in_array( $option['data'], $this->mParams['disabled-options'], true ); } if ( $this->mOptionsLabelsNotFromMessage ) { foreach ( $groupedOptions as &$option ) { // @phan-suppress-next-line SecurityCheck-XSS $option['label'] = new \OOUI\HtmlSnippet( $option['label'] ); } } unset( $option ); $attr['options'] = $groupedOptions; $attr += \OOUI\Element::configFromHtmlAttributes( $this->getAttributes( [ 'disabled', 'tabindex' ] ) ); if ( $this->mClass !== '' ) { $attr['classes'] = [ $this->mClass ]; } $widget = new \OOUI\CheckboxMultiselectInputWidget( $attr ); if ( $sectionLabel ) { $out[] = new \OOUI\FieldsetLayout( [ 'items' => [ $widget ], // @phan-suppress-next-line SecurityCheck-XSS Key is html, taint cannot track that 'label' => new \OOUI\HtmlSnippet( $sectionLabel ), ] ); } else { $out[] = $widget; } } unset( $groupedOptions ); $params = []; if ( $this->mPlaceholder ) { $params['placeholder'] = $this->mPlaceholder; } if ( isset( $this->mParams['max'] ) ) { $params['tagLimit'] = $this->mParams['max']; } if ( $this->mDropdown ) { return new MenuTagMultiselectWidget( [ 'name' => $this->mName, 'options' => $optionsSections, 'default' => $value, 'noJsFallback' => $out, 'allowReordering' => false, ] + $params ); } elseif ( count( $out ) === 1 ) { $firstFieldData = $out[0]->getData() ?: []; $out[0]->setData( $firstFieldData + $params ); // Directly return the only OOUI\CheckboxMultiselectInputWidget. // This allows it to be made infusable and later tweaked by JS code. return $out[0]; } return implode( '', $out ); } protected function getOOUIModules() { return $this->mDropdown ? [ 'mediawiki.widgets.MenuTagMultiselectWidget' ] : []; } protected function shouldInfuseOOUI() { return $this->mDropdown; } /** * @stable to override * @param WebRequest $request * * @return string|array */ public function loadDataFromRequest( $request ) { $fromRequest = $request->getArray( $this->mName, [] ); // Fetch the value in either one of the two following case: // - we have a valid submit attempt (form was just submitted) // - we have a value (an URL manually built by the user, or GET form with no wpFormIdentifier) if ( $this->isSubmitAttempt( $request ) || $fromRequest ) { // Checkboxes are just not added to the request arrays if they're not checked, // so it's perfectly possible for there not to be an entry at all // @phan-suppress-next-line PhanTypeMismatchReturnNullable getArray does not return null return $fromRequest; } else { // That's ok, the user has not yet submitted the form, so show the defaults return $this->getDefault(); } } /** * @inheritDoc * @stable to override */ public function getDefault() { return $this->mDefault ?? []; } /** * @inheritDoc * @stable to override */ public function filterDataForSubmit( $data ) { $data = HTMLFormField::forceToStringRecursive( $data ); $options = HTMLFormField::flattenOptions( $this->getOptions() ); $forcedOn = array_intersect( $this->mParams['disabled-options'], $this->getDefault() ); $res = []; foreach ( $options as $opt ) { $res["$opt"] = in_array( $opt, $forcedOn, true ) || in_array( $opt, $data, true ); } return $res; } /** * @inheritDoc * @stable to override */ protected function needsLabel() { return false; } } /** @deprecated class alias since 1.42 */ class_alias( HTMLMultiSelectField::class, 'HTMLMultiSelectField' );