MediaWiki REL1_34
ComplexNamespaceInputWidget.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Widget;
4
12class ComplexNamespaceInputWidget extends \OOUI\Widget {
13
14 protected $config;
15 protected $namespace;
16 protected $associated = null;
17 protected $associatedLabel = null;
18 protected $invert = null;
19 protected $invertLabel = null;
20
38 public function __construct( array $config = [] ) {
39 // Configuration initialization
40 $config = array_merge(
41 [
42 // Config options for nested widgets
43 'namespace' => [],
44 'invert' => [],
45 'invertLabel' => [],
46 'associated' => [],
47 'associatedLabel' => [],
48 ],
50 );
51
52 parent::__construct( $config );
53
54 // Properties
55 $this->config = $config;
56
57 $this->namespace = new NamespaceInputWidget( $config['namespace'] );
58 if ( $config['associated'] !== null ) {
59 $this->associated = new \OOUI\CheckboxInputWidget( array_merge(
60 [ 'value' => '1' ],
61 $config['associated']
62 ) );
63 // TODO Should use a LabelWidget? But they don't work like HTML <label>s yet
64 $this->associatedLabel = new \OOUI\FieldLayout(
65 $this->associated,
66 array_merge(
67 [ 'align' => 'inline' ],
68 $config['associatedLabel']
69 )
70 );
71 }
72 if ( $config['invert'] !== null ) {
73 $this->invert = new \OOUI\CheckboxInputWidget( array_merge(
74 [ 'value' => '1' ],
75 $config['invert']
76 ) );
77 // TODO Should use a LabelWidget? But they don't work like HTML <label>s yet
78 $this->invertLabel = new \OOUI\FieldLayout(
79 $this->invert,
80 array_merge(
81 [ 'align' => 'inline' ],
82 $config['invertLabel']
83 )
84 );
85 }
86
87 // Initialization
88 $this
89 ->addClasses( [ 'mw-widget-complexNamespaceInputWidget' ] )
90 ->appendContent( $this->namespace, $this->associatedLabel, $this->invertLabel );
91 }
92
93 protected function getJavaScriptClassName() {
94 return 'mw.widgets.ComplexNamespaceInputWidget';
95 }
96
97 public function getConfig( &$config ) {
98 $config = array_merge(
99 $config,
100 array_intersect_key(
101 $this->config,
102 array_fill_keys(
103 [
104 'namespace',
105 'invert',
106 'invertLabel',
107 'associated',
108 'associatedLabel'
109 ],
110 true
111 )
112 )
113 );
114 $config['namespace']['dropdown']['$overlay'] = true;
115 return parent::getConfig( $config );
116 }
117}