blob: 0c6c15e4753dd967dab627ceb3d5af9d9726a18f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*!
* MediaWiki Widgets - ComplexTitleInputWidget class.
*
* @copyright 2011-2015 MediaWiki Widgets Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
( function ( $, mw ) {
/**
* Like TitleInputWidget, but the namespace has to be input through a separate dropdown field.
*
* @class
* @extends OO.ui.Widget
*
* @constructor
* @param {Object} [config] Configuration options
* @cfg {Object} namespace Configuration for the NamespaceInputWidget dropdown with list of
* namespaces
* @cfg {Object} title Configuration for the TitleInputWidget text field
*/
mw.widgets.ComplexTitleInputWidget = function MwWidgetsComplexTitleInputWidget( config ) {
// Parent constructor
mw.widgets.ComplexTitleInputWidget.parent.call( this, config );
// Properties
this.namespace = new mw.widgets.NamespaceInputWidget( config.namespace );
this.title = new mw.widgets.TitleInputWidget( $.extend(
{},
config.title,
{
relative: true,
namespace: config.namespace.value || null
}
) );
// Events
this.namespace.connect( this, { change: 'updateTitleNamespace' } );
// Initialization
this.$element
.addClass( 'mw-widget-complexTitleInputWidget' )
.append(
this.namespace.$element,
this.title.$element
);
this.updateTitleNamespace();
};
/* Setup */
OO.inheritClass( mw.widgets.ComplexTitleInputWidget, OO.ui.Widget );
/* Methods */
/**
* Update the namespace to use for search suggestions of the title when the value of namespace
* dropdown changes.
*/
mw.widgets.ComplexTitleInputWidget.prototype.updateTitleNamespace = function () {
this.title.setNamespace( Number( this.namespace.getValue() ) );
};
}( jQuery, mediaWiki ) );
|