Localisation updates from https://translatewiki.net.
[mediawiki.git] / resources / src / mediawiki.widgets / mw.widgets.ToggleSwitchWidget.js
blob0618ab6a43d1ae5e5f9d0673b297b61975ef301e
1 /*!
2  * MediaWiki Widgets - ToggleSwitchWidget class.
3  *
4  * @copyright 2017 MediaWiki Widgets Team and others; see AUTHORS.txt
5  * @license The MIT License (MIT); see LICENSE.txt
6  */
7 ( function () {
8         /**
9          * @classdesc Add an invisible checkbox element which will be used to submit the value.
10          *
11          * @class
12          * @extends OO.ui.ToggleSwitchWidget
13          *
14          * @constructor
15          * @description Create an instance of `mw.widgets.ToggleSwitchWidget`.
16          * @param {Object} [config] Configuration options
17          * @param {string} [config.name] Name of input to submit results (when used in HTML forms)
18          */
19         mw.widgets.ToggleSwitchWidget = function MwWidgetsToggleWidget( config ) {
20                 // Parent constructor
21                 mw.widgets.ToggleSwitchWidget.super.call( this, Object.assign( {}, config, {} ) );
23                 if ( 'name' in config ) {
24                         // Use this instead of <input type="hidden">, because hidden inputs do not have separate
25                         // 'value' and 'defaultValue' properties.
26                         this.$hiddenInput = $( '<input>' )
27                                 .addClass( 'oo-ui-element-hidden' )
28                                 .attr( 'type', 'checkbox' )
29                                 .attr( 'name', config.name )
30                                 .attr( 'id', config.inputId )
31                                 .appendTo( this.$element );
32                         // Update with preset values
33                         this.updateHiddenInput();
34                         // Set the default value (it might be different from just being empty)
35                         this.$hiddenInput.prop( 'defaultChecked', this.isSelected() );
36                 }
38                 // Events
39                 // When list of selected tags changes, update hidden input
40                 this.connect( this, {
41                         change: 'updateHiddenInput'
42                 } );
43         };
45         /* Setup */
47         OO.inheritClass( mw.widgets.ToggleSwitchWidget, OO.ui.ToggleSwitchWidget );
49         mw.widgets.ToggleSwitchWidget.static.tagName = 'span';
51         /* Methods */
53         mw.widgets.ToggleSwitchWidget.prototype.isSelected = function () {
54                 return mw.widgets.ToggleSwitchWidget.super.prototype.getValue.call( this );
55         };
57         mw.widgets.ToggleSwitchWidget.prototype.getValue = function () {
58                 return this.isSelected() ? '1' : '0';
59         };
61         /**
62          * If used inside HTML form, then update hiddenInput.
63          *
64          * @private
65          */
66         mw.widgets.ToggleSwitchWidget.prototype.updateHiddenInput = function () {
67                 if ( '$hiddenInput' in this ) {
68                         this.$hiddenInput.prop( 'checked', this.isSelected() );
69                         // Trigger a 'change' event as if a user edited the text
70                         // (it is not triggered when changing the value from JS code).
71                         this.$hiddenInput.trigger( 'change' );
72                 }
73         };
75 }() );