4 * HTML form generation and submission handling, OOUI style.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
25 * Compact stacked vertical format for forms, implemented using OOUI widgets.
27 class OOUIHTMLForm
extends HTMLForm
{
30 public function __construct( $descriptor, $context = null, $messagePrefix = '' ) {
31 parent
::__construct( $descriptor, $context, $messagePrefix );
32 $this->getOutput()->enableOOUI();
33 $this->getOutput()->addModuleStyles( 'mediawiki.htmlform.ooui.styles' );
37 * Symbolic display format name.
40 protected $displayFormat = 'ooui';
42 public static function loadInputFromParameters( $fieldname, $descriptor,
43 HTMLForm
$parent = null
45 $field = parent
::loadInputFromParameters( $fieldname, $descriptor, $parent );
46 $field->setShowEmptyLabel( false );
50 function getButtons() {
53 // IE<8 has bugs with <button>, so we'll need to avoid them.
54 $isBadIE = preg_match( '/MSIE [1-7]\./i', $this->getRequest()->getHeader( 'User-Agent' ) );
56 if ( $this->mShowSubmit
) {
57 $attribs = [ 'infusable' => true ];
59 if ( isset( $this->mSubmitID
) ) {
60 $attribs['id'] = $this->mSubmitID
;
63 if ( isset( $this->mSubmitName
) ) {
64 $attribs['name'] = $this->mSubmitName
;
67 if ( isset( $this->mSubmitTooltip
) ) {
68 $attribs +
= Linker
::tooltipAndAccesskeyAttribs( $this->mSubmitTooltip
);
71 $attribs['classes'] = [ 'mw-htmlform-submit' ];
72 $attribs['type'] = 'submit';
73 $attribs['label'] = $this->getSubmitText();
74 $attribs['value'] = $this->getSubmitText();
75 $attribs['flags'] = $this->mSubmitFlags
;
76 $attribs['useInputTag'] = $isBadIE;
78 $buttons .= new OOUI\
ButtonInputWidget( $attribs );
81 if ( $this->mShowReset
) {
82 $buttons .= new OOUI\
ButtonInputWidget( [
84 'label' => $this->msg( 'htmlform-reset' )->text(),
85 'useInputTag' => $isBadIE,
89 if ( $this->mShowCancel
) {
90 $target = $this->mCancelTarget ?
: Title
::newMainPage();
91 if ( $target instanceof Title
) {
92 $target = $target->getLocalURL();
94 $buttons .= new OOUI\
ButtonWidget( [
95 'label' => $this->msg( 'cancel' )->text(),
100 foreach ( $this->mButtons
as $button ) {
103 if ( $button['attribs'] ) {
104 $attrs +
= $button['attribs'];
107 if ( isset( $button['id'] ) ) {
108 $attrs['id'] = $button['id'];
112 $label = $button['value'];
113 } elseif ( isset( $button['label-message'] ) ) {
114 $label = new OOUI\
HtmlSnippet( $this->getMessage( $button['label-message'] )->parse() );
115 } elseif ( isset( $button['label'] ) ) {
116 $label = $button['label'];
117 } elseif ( isset( $button['label-raw'] ) ) {
118 $label = new OOUI\
HtmlSnippet( $button['label-raw'] );
120 $label = $button['value'];
123 $attrs['classes'] = isset( $attrs['class'] ) ?
(array)$attrs['class'] : [];
125 $buttons .= new OOUI\
ButtonInputWidget( [
127 'name' => $button['name'],
128 'value' => $button['value'],
130 'flags' => $button['flags'],
131 'framed' => $button['framed'],
132 'useInputTag' => $isBadIE,
140 return Html
::rawElement( 'div',
141 [ 'class' => 'mw-htmlform-submit-buttons' ], "\n$buttons" ) . "\n";
144 protected function wrapFieldSetSection( $legend, $section, $attributes ) {
145 // to get a user visible effect, wrap the fieldset into a framed panel layout
146 $layout = new OOUI\
PanelLayout( [
150 'infusable' => false,
153 $layout->appendContent(
154 new OOUI\
FieldsetLayout( [
156 'infusable' => false,
159 'content' => new OOUI\
HtmlSnippet( $section )
168 * Put a form section together from the individual fields' HTML, merging it and wrapping.
169 * @param OOUI\FieldLayout[] $fieldsHtml
170 * @param string $sectionName
171 * @param bool $anyFieldHasLabel Unused
172 * @return string HTML
174 protected function formatSection( array $fieldsHtml, $sectionName, $anyFieldHasLabel ) {
176 'items' => $fieldsHtml,
178 if ( $sectionName ) {
179 $config['id'] = Sanitizer
::escapeId( $sectionName );
181 if ( is_string( $this->mWrapperLegend
) ) {
182 $config['label'] = $this->mWrapperLegend
;
184 return new OOUI\
FieldsetLayout( $config );
188 * @param string|array|Status $err
191 function getErrors( $err ) {
194 } elseif ( $err instanceof Status
) {
195 if ( $err->isOK() ) {
198 $errors = $err->getErrorsByType( 'error' );
199 foreach ( $errors as &$error ) {
200 // Input: array( 'message' => 'foo', 'errors' => array( 'a', 'b', 'c' ) )
201 // Output: array( 'foo', 'a', 'b', 'c' )
202 $error = array_merge( [ $error['message'] ], $error['params'] );
207 if ( !is_array( $errors ) ) {
208 $errors = [ $errors ];
212 foreach ( $errors as &$error ) {
213 $error = $this->getMessage( $error )->parse();
214 $error = new OOUI\
HtmlSnippet( $error );
218 $this->oouiErrors
= $errors;
222 function getHeaderText( $section = null ) {
223 if ( is_null( $section ) ) {
224 // We handle $this->mHeader elsewhere, in getBody()
227 return parent
::getHeaderText( $section );
232 $fieldset = parent
::getBody();
233 // FIXME This only works for forms with no subsections
234 if ( $fieldset instanceof OOUI\FieldsetLayout
) {
235 $classes = [ 'mw-htmlform-ooui-header' ];
236 if ( $this->oouiErrors
) {
237 $classes[] = 'mw-htmlform-ooui-header-errors';
239 if ( $this->mHeader ||
$this->oouiErrors
) {
240 // if there's no header, don't create an (empty) LabelWidget, simply use a placeholder
241 if ( $this->mHeader
) {
242 $element = new OOUI\
LabelWidget( [ 'label' => new OOUI\
HtmlSnippet( $this->mHeader
) ] );
244 $element = new OOUI\
Widget( [] );
246 $fieldset->addItems( [
247 new OOUI\
FieldLayout(
251 'errors' => $this->oouiErrors
,
252 'classes' => $classes,
261 function wrapForm( $html ) {
262 $form = new OOUI\
FormLayout( $this->getFormAttributes() +
[
263 'classes' => [ 'mw-htmlform-ooui' ],
264 'content' => new OOUI\
HtmlSnippet( $html ),
267 // Include a wrapper for style, if requested.
268 $form = new OOUI\
PanelLayout( [
269 'classes' => [ 'mw-htmlform-ooui-wrapper' ],
271 'padded' => $this->mWrapperLegend
!== false,
272 'framed' => $this->mWrapperLegend
!== false,