]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/js/user-profile.js
WordPress 4.2.4
[autoinstalls/wordpress.git] / wp-admin / js / user-profile.js
index 9ae96482d25175133acf372abe72712a3f8fabd3..72a2465c56f0d6683435485f5de9637b63a95ff7 100644 (file)
@@ -1 +1,149 @@
-(function(a){function b(){var e=a("#pass1").val(),d=a("#user_login").val(),c=a("#pass2").val(),f;a("#pass-strength-result").removeClass("short bad good strong");if(!e){a("#pass-strength-result").html(pwsL10n.empty);return}f=passwordStrength(e,d,c);switch(f){case 2:a("#pass-strength-result").addClass("bad").html(pwsL10n.bad);break;case 3:a("#pass-strength-result").addClass("good").html(pwsL10n.good);break;case 4:a("#pass-strength-result").addClass("strong").html(pwsL10n.strong);break;case 5:a("#pass-strength-result").addClass("short").html(pwsL10n.mismatch);break;default:a("#pass-strength-result").addClass("short").html(pwsL10n["short"])}}a(document).ready(function(){var c=a("#display_name");a("#pass1").val("").keyup(b);a("#pass2").val("").keyup(b);a("#pass-strength-result").show();a(".color-palette").click(function(){a(this).siblings('input[name="admin_color"]').prop("checked",true)});if(c.length){a("#first_name, #last_name, #nickname").bind("blur.user_profile",function(){var e=[],d={display_nickname:a("#nickname").val()||"",display_username:a("#user_login").val()||"",display_firstname:a("#first_name").val()||"",display_lastname:a("#last_name").val()||""};if(d.display_firstname&&d.display_lastname){d.display_firstlast=d.display_firstname+" "+d.display_lastname;d.display_lastfirst=d.display_lastname+" "+d.display_firstname}a.each(a("option",c),function(f,g){e.push(g.value)});a.each(d,function(h,f){if(!f){return}var g=f.replace(/<\/?[a-z][^>]*>/gi,"");if(d[h].length&&a.inArray(g,e)==-1){e.push(g);a("<option />",{text:g}).appendTo(c)}})})}})})(jQuery);
\ No newline at end of file
+/* global ajaxurl, pwsL10n */
+(function($){
+
+       function check_pass_strength() {
+               var pass1 = $('#pass1').val(), pass2 = $('#pass2').val(), strength;
+
+               $('#pass-strength-result').removeClass('short bad good strong');
+               if ( ! pass1 ) {
+                       $('#pass-strength-result').html( pwsL10n.empty );
+                       return;
+               }
+
+               strength = wp.passwordStrength.meter( pass1, wp.passwordStrength.userInputBlacklist(), pass2 );
+
+               switch ( strength ) {
+                       case 2:
+                               $('#pass-strength-result').addClass('bad').html( pwsL10n.bad );
+                               break;
+                       case 3:
+                               $('#pass-strength-result').addClass('good').html( pwsL10n.good );
+                               break;
+                       case 4:
+                               $('#pass-strength-result').addClass('strong').html( pwsL10n.strong );
+                               break;
+                       case 5:
+                               $('#pass-strength-result').addClass('short').html( pwsL10n.mismatch );
+                               break;
+                       default:
+                               $('#pass-strength-result').addClass('short').html( pwsL10n['short'] );
+               }
+       }
+
+       $(document).ready( function() {
+               var $colorpicker, $stylesheet, user_id, current_user_id,
+                       select = $( '#display_name' );
+
+               $('#pass1').val('').on( 'input propertychange', check_pass_strength );
+               $('#pass2').val('').on( 'input propertychange', check_pass_strength );
+               $('#pass-strength-result').show();
+               $('.color-palette').click( function() {
+                       $(this).siblings('input[name="admin_color"]').prop('checked', true);
+               });
+
+               if ( select.length ) {
+                       $('#first_name, #last_name, #nickname').bind( 'blur.user_profile', function() {
+                               var dub = [],
+                                       inputs = {
+                                               display_nickname  : $('#nickname').val() || '',
+                                               display_username  : $('#user_login').val() || '',
+                                               display_firstname : $('#first_name').val() || '',
+                                               display_lastname  : $('#last_name').val() || ''
+                                       };
+
+                               if ( inputs.display_firstname && inputs.display_lastname ) {
+                                       inputs.display_firstlast = inputs.display_firstname + ' ' + inputs.display_lastname;
+                                       inputs.display_lastfirst = inputs.display_lastname + ' ' + inputs.display_firstname;
+                               }
+
+                               $.each( $('option', select), function( i, el ){
+                                       dub.push( el.value );
+                               });
+
+                               $.each(inputs, function( id, value ) {
+                                       if ( ! value ) {
+                                               return;
+                                       }
+
+                                       var val = value.replace(/<\/?[a-z][^>]*>/gi, '');
+
+                                       if ( inputs[id].length && $.inArray( val, dub ) === -1 ) {
+                                               dub.push(val);
+                                               $('<option />', {
+                                                       'text': val
+                                               }).appendTo( select );
+                                       }
+                               });
+                       });
+               }
+
+               $colorpicker = $( '#color-picker' );
+               $stylesheet = $( '#colors-css' );
+               user_id = $( 'input#user_id' ).val();
+               current_user_id = $( 'input[name="checkuser_id"]' ).val();
+
+               $colorpicker.on( 'click.colorpicker', '.color-option', function() {
+                       var colors,
+                               $this = $(this);
+
+                       if ( $this.hasClass( 'selected' ) ) {
+                               return;
+                       }
+
+                       $this.siblings( '.selected' ).removeClass( 'selected' );
+                       $this.addClass( 'selected' ).find( 'input[type="radio"]' ).prop( 'checked', true );
+
+                       // Set color scheme
+                       if ( user_id === current_user_id ) {
+                               // Load the colors stylesheet.
+                               // The default color scheme won't have one, so we'll need to create an element.
+                               if ( 0 === $stylesheet.length ) {
+                                       $stylesheet = $( '<link rel="stylesheet" />' ).appendTo( 'head' );
+                               }
+                               $stylesheet.attr( 'href', $this.children( '.css_url' ).val() );
+
+                               // repaint icons
+                               if ( typeof wp !== 'undefined' && wp.svgPainter ) {
+                                       try {
+                                               colors = $.parseJSON( $this.children( '.icon_colors' ).val() );
+                                       } catch ( error ) {}
+
+                                       if ( colors ) {
+                                               wp.svgPainter.setColors( colors );
+                                               wp.svgPainter.paint();
+                                       }
+                               }
+
+                               // update user option
+                               $.post( ajaxurl, {
+                                       action:       'save-user-color-scheme',
+                                       color_scheme: $this.children( 'input[name="admin_color"]' ).val(),
+                                       nonce:        $('#color-nonce').val()
+                               }).done( function( response ) {
+                                       if ( response.success ) {
+                                               $( 'body' ).removeClass( response.data.previousScheme ).addClass( response.data.currentScheme );
+                                       }
+                               });
+                       }
+               });
+       });
+
+       $( '#destroy-sessions' ).on( 'click', function( e ) {
+               var $this = $(this);
+
+               wp.ajax.post( 'destroy-sessions', {
+                       nonce: $( '#_wpnonce' ).val(),
+                       user_id: $( '#user_id' ).val()
+               }).done( function( response ) {
+                       $this.prop( 'disabled', true );
+                       $this.siblings( '.notice' ).remove();
+                       $this.before( '<div class="notice notice-success inline"><p>' + response.message + '</p></div>' );
+               }).fail( function( response ) {
+                       $this.siblings( '.notice' ).remove();
+                       $this.before( '<div class="notice notice-error inline"><p>' + response.message + '</p></div>' );
+               });
+
+               e.preventDefault();
+       });
+
+})(jQuery);