123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- /* global extDependencyMap */
- ( function () {
- $( function () {
- var $label, labelText;
- function syncText() {
- var value = $( this ).val()
- .replace( /[\[\]{}|#<>%+? ]/g, '_' ) // eslint-disable-line no-useless-escape
- .replace( /&/, '&' )
- .replace( /__+/g, '_' )
- .replace( /^_+/, '' )
- .replace( /_+$/, '' );
- value = value.charAt( 0 ).toUpperCase() + value.slice( 1 );
- $label.text( labelText.replace( '$1', value ) );
- }
- // Show/hide code for DB-specific options
- // FIXME: Do we want slow, fast, or even non-animated (instantaneous) showing/hiding here?
- $( '.dbRadio' ).each( function () {
- $( document.getElementById( $( this ).attr( 'rel' ) ) ).hide();
- } );
- $( document.getElementById( $( '.dbRadio:checked' ).attr( 'rel' ) ) ).show();
- $( '.dbRadio' ).on( 'click', function () {
- var $checked = $( '.dbRadio:checked' ),
- $wrapper = $( document.getElementById( $checked.attr( 'rel' ) ) );
- // eslint-disable-next-line no-jquery/no-sizzle
- if ( $wrapper.is( ':hidden' ) ) {
- // FIXME: Use CSS transition
- // eslint-disable-next-line no-jquery/no-animate-toggle
- $( '.dbWrapper' ).hide( 'slow' );
- // eslint-disable-next-line no-jquery/no-animate-toggle
- $wrapper.show( 'slow' );
- }
- } );
- // Scroll to the bottom of upgrade log
- $( '#config-live-log' ).children( 'textarea' ).each( function () {
- this.scrollTop = this.scrollHeight;
- } );
- // Show/hide Creative Commons thingy
- $( '.licenseRadio' ).on( 'click', function () {
- var $wrapper = $( '#config-cc-wrapper' );
- if ( $( '#config__LicenseCode_cc-choose' ).is( ':checked' ) ) {
- // FIXME: Use CSS transition
- // eslint-disable-next-line no-jquery/no-animate-toggle
- $wrapper.show( 'slow' );
- } else {
- // eslint-disable-next-line no-jquery/no-animate-toggle
- $wrapper.hide( 'slow' );
- }
- } );
- // Show/hide random stuff (email, upload)
- $( '.showHideRadio' ).on( 'click', function () {
- var $wrapper = $( '#' + $( this ).attr( 'rel' ) );
- if ( $( this ).is( ':checked' ) ) {
- // FIXME: Use CSS transition
- // eslint-disable-next-line no-jquery/no-animate-toggle
- $wrapper.show( 'slow' );
- } else {
- // eslint-disable-next-line no-jquery/no-animate-toggle
- $wrapper.hide( 'slow' );
- }
- } );
- $( '.hideShowRadio' ).on( 'click', function () {
- var $wrapper = $( '#' + $( this ).attr( 'rel' ) );
- if ( $( this ).is( ':checked' ) ) {
- // FIXME: Use CSS transition
- // eslint-disable-next-line no-jquery/no-animate-toggle
- $wrapper.hide( 'slow' );
- } else {
- // eslint-disable-next-line no-jquery/no-animate-toggle
- $wrapper.show( 'slow' );
- }
- } );
- // Hide "other" textboxes by default
- // Should not be done in CSS for javascript disabled compatibility
- if ( !$( '#config__NamespaceType_other' ).is( ':checked' ) ) {
- $( '.enabledByOther' ).closest( '.config-block' ).hide();
- }
- // Enable/disable "other" textboxes
- $( '.enableForOther' ).on( 'click', function () {
- var $textbox = $( document.getElementById( $( this ).attr( 'rel' ) ) );
- // FIXME: Ugh, this is ugly
- if ( $( this ).val() === 'other' ) {
- // FIXME: Use CSS transition
- // eslint-disable-next-line no-jquery/no-slide
- $textbox.prop( 'readonly', false ).closest( '.config-block' ).slideDown( 'fast' );
- } else {
- // eslint-disable-next-line no-jquery/no-slide
- $textbox.prop( 'readonly', true ).closest( '.config-block' ).slideUp( 'fast' );
- }
- } );
- // Synchronize radio button label for sitename with textbox
- $label = $( 'label[for="config__NamespaceType_site-name"]' );
- labelText = $label.text();
- $label.text( labelText.replace( '$1', '' ) );
- $( '#config_wgSitename' ).on( 'keyup change', syncText ).each( syncText );
- // Show/Hide memcached servers when needed
- $( 'input[name$="config__MainCacheType"]' ).on( 'change', function () {
- var $memc = $( '#config-memcachewrapper' );
- if ( $( 'input[name$="config__MainCacheType"]:checked' ).val() === 'memcached' ) {
- // FIXME: Use CSS transition
- // eslint-disable-next-line no-jquery/no-animate-toggle
- $memc.show( 'slow' );
- } else {
- // eslint-disable-next-line no-jquery/no-animate-toggle
- $memc.hide( 'slow' );
- }
- } );
- function areReqsSatisfied( name ) {
- var i, ext, skin, node;
- if ( !extDependencyMap[ name ] ) {
- return true;
- }
- if ( extDependencyMap[ name ].extensions ) {
- for ( i in extDependencyMap[ name ].extensions ) {
- ext = extDependencyMap[ name ].extensions[ i ];
- node = document.getElementById( 'config_ext-' + ext );
- if ( !node || !node.checked ) {
- return false;
- }
- }
- }
- if ( extDependencyMap[ name ].skins ) {
- for ( i in extDependencyMap[ name ].skins ) {
- skin = extDependencyMap[ name ].skins[ i ];
- node = document.getElementById( 'config_skin-' + skin );
- if ( !node || !node.checked ) {
- return false;
- }
- }
- }
- return true;
- }
- // Disable checkboxes if the extension has dependencies
- $( '.mw-ext-with-dependencies input' ).prop( 'disabled', true );
- $( '.config-ext-input[data-name]' ).on( 'change', function () {
- $( '.mw-ext-with-dependencies input' ).each( function () {
- var name = this.getAttribute( 'data-name' );
- if ( areReqsSatisfied( name ) ) {
- // Re-enable it!
- this.disabled = false;
- } else {
- // Uncheck and disable the checkbox
- this.checked = false;
- this.disabled = true;
- }
- } );
- } );
- } );
- }() );
|