diff -r 490d5cc509ed -r cf61fcea0001 wp/wp-admin/js/image-edit.js
--- a/wp/wp-admin/js/image-edit.js Tue Jun 09 11:14:17 2015 +0000
+++ b/wp/wp-admin/js/image-edit.js Mon Oct 14 17:39:30 2019 +0200
@@ -1,26 +1,81 @@
/* global imageEditL10n, ajaxurl, confirm */
+/**
+ * @summary The functions necessary for editing images.
+ *
+ * @since 2.9.0
+ */
(function($) {
-var imageEdit = window.imageEdit = {
+
+ /**
+ * Contains all the methods to initialise and control the image editor.
+ *
+ * @namespace imageEdit
+ */
+ var imageEdit = window.imageEdit = {
iasapi : {},
hold : {},
postid : '',
_view : false,
+ /**
+ * @summary Converts a value to an integer.
+ *
+ * @memberof imageEdit
+ * @since 2.9.0
+ *
+ * @param {number} f The float value that should be converted.
+ *
+ * @return {number} The integer representation from the float value.
+ */
intval : function(f) {
+ /*
+ * Bitwise OR operator: one of the obscure ways to truncate floating point figures,
+ * worth reminding JavaScript doesn't have a distinct "integer" type.
+ */
return f | 0;
},
- setDisabled : function(el, s) {
+ /**
+ * @summary Adds the disabled attribute and class to a single form element
+ * or a field set.
+ *
+ * @memberof imageEdit
+ * @since 2.9.0
+ *
+ * @param {jQuery} el The element that should be modified.
+ * @param {bool|number} s The state for the element. If set to true
+ * the element is disabled,
+ * otherwise the element is enabled.
+ * The function is sometimes called with a 0 or 1
+ * instead of true or false.
+ *
+ * @returns {void}
+ */
+ setDisabled : function( el, s ) {
+ /*
+ * `el` can be a single form element or a fieldset. Before #28864, the disabled state on
+ * some text fields was handled targeting $('input', el). Now we need to handle the
+ * disabled state on buttons too so we can just target `el` regardless if it's a single
+ * element or a fieldset because when a fieldset is disabled, its descendants are disabled too.
+ */
if ( s ) {
- el.removeClass('disabled');
- $('input', el).removeAttr('disabled');
+ el.removeClass( 'disabled' ).prop( 'disabled', false );
} else {
- el.addClass('disabled');
- $('input', el).prop('disabled', true);
+ el.addClass( 'disabled' ).prop( 'disabled', true );
}
},
+ /**
+ * @summary Initializes the image editor.
+ *
+ * @memberof imageEdit
+ * @since 2.9.0
+ *
+ * @param {number} postid The post id.
+ *
+ * @returns {void}
+ */
init : function(postid) {
var t = this, old = $('#image-editor-' + t.postid),
x = t.intval( $('#imgedit-x-' + postid).val() ),
@@ -40,10 +95,12 @@
$('input[type="text"]', '#imgedit-panel-' + postid).keypress(function(e) {
var k = e.keyCode;
+ // Key codes 37 thru 40 are the arrow keys.
if ( 36 < k && k < 41 ) {
$(this).blur();
}
+ // The key code 13 is the enter key.
if ( 13 === k ) {
e.preventDefault();
e.stopPropagation();
@@ -52,29 +109,87 @@
});
},
+ /**
+ * @summary Toggles the wait/load icon in the editor.
+ *
+ * @memberof imageEdit
+ * @since 2.9.0
+ *
+ * @param {number} postid The post id.
+ * @param {number} toggle Is 0 or 1, fades the icon in then 1 and out when 0.
+ *
+ * @returns {void}
+ */
toggleEditor : function(postid, toggle) {
var wait = $('#imgedit-wait-' + postid);
if ( toggle ) {
- wait.height( $('#imgedit-panel-' + postid).height() ).fadeIn('fast');
+ wait.fadeIn( 'fast' );
} else {
wait.fadeOut('fast');
}
},
+ /**
+ * @summary Shows or hides the image edit help box.
+ *
+ * @memberof imageEdit
+ * @since 2.9.0
+ *
+ * @param {HTMLElement} el The element to create the help window in.
+ *
+ * @returns {boolean} Always returns false.
+ */
toggleHelp : function(el) {
- $( el ).parents( '.imgedit-group-top' ).toggleClass( 'imgedit-help-toggled' ).find( '.imgedit-help' ).slideToggle( 'fast' );
+ var $el = $( el );
+ $el
+ .attr( 'aria-expanded', 'false' === $el.attr( 'aria-expanded' ) ? 'true' : 'false' )
+ .parents( '.imgedit-group-top' ).toggleClass( 'imgedit-help-toggled' ).find( '.imgedit-help' ).slideToggle( 'fast' );
+
return false;
},
+ /**
+ * @summary Gets the value from the image edit target.
+ *
+ * The image edit target contains the image sizes where the (possible) changes
+ * have to be applied to.
+ *
+ * @memberof imageEdit
+ * @since 2.9.0
+ *
+ * @param {number} postid The post id.
+ *
+ * @returns {string} The value from the imagedit-save-target input field when available,
+ * or 'full' when not available.
+ */
getTarget : function(postid) {
return $('input[name="imgedit-target-' + postid + '"]:checked', '#imgedit-save-target-' + postid).val() || 'full';
},
- scaleChanged : function(postid, x) {
+ /**
+ * @summary Recalculates the height or width and keeps the original aspect ratio.
+ *
+ * If the original image size is exceeded a red exclamation mark is shown.
+ *
+ * @memberof imageEdit
+ * @since 2.9.0
+ *
+ * @param {number} postid The current post id.
+ * @param {number} x Is 0 when it applies the y-axis
+ * and 1 when applicable for the x-axis.
+ * @param {jQuery} el Element.
+ *
+ * @returns {void}
+ */
+ scaleChanged : function( postid, x, el ) {
var w = $('#imgedit-scale-width-' + postid), h = $('#imgedit-scale-height-' + postid),
warn = $('#imgedit-scale-warn-' + postid), w1 = '', h1 = '';
+ if ( false === this.validateNumeric( el ) ) {
+ return;
+ }
+
if ( x ) {
h1 = ( w.val() !== '' ) ? Math.round( w.val() / this.hold.xy_ratio ) : '';
h.val( h1 );
@@ -90,6 +205,16 @@
}
},
+ /**
+ * @summary Gets the selected aspect ratio.
+ *
+ * @memberof imageEdit
+ * @since 2.9.0
+ *
+ * @param {number} postid The post id.
+ *
+ * @returns {string} The aspect ratio.
+ */
getSelRatio : function(postid) {
var x = this.hold.w, y = this.hold.h,
X = this.intval( $('#imgedit-crop-width-' + postid).val() ),
@@ -106,11 +231,24 @@
return '1:1';
},
+ /**
+ * @summary Removes the last action from the image edit history
+ * The history consist of (edit) actions performed on the image.
+ *
+ * @memberof imageEdit
+ * @since 2.9.0
+ *
+ * @param {number} postid The post id.
+ * @param {number} setSize 0 or 1, when 1 the image resets to its original size.
+ *
+ * @returns {string} JSON string containing the history or an empty string if no history exists.
+ */
filterHistory : function(postid, setSize) {
- // apply undo state to history
+ // Apply undo state to history.
var history = $('#imgedit-history-' + postid).val(), pop, n, o, i, op = [];
if ( history !== '' ) {
+ // Read the JSON string with the image edit history.
history = JSON.parse(history);
pop = this.intval( $('#imgedit-undone-' + postid).val() );
if ( pop > 0 ) {
@@ -120,6 +258,7 @@
}
}
+ // Reset size to it's original state.
if ( setSize ) {
if ( !history.length ) {
this.hold.w = this.hold.ow;
@@ -127,17 +266,21 @@
return '';
}
- // restore
+ // Restore original 'o'.
o = history[history.length - 1];
+
+ // c = 'crop', r = 'rotate', f = 'flip'
o = o.c || o.r || o.f || false;
if ( o ) {
+ // fw = Full image width
this.hold.w = o.fw;
+ // fh = Full image height
this.hold.h = o.fh;
}
}
- // filter the values
+ // Filter the last step/action from the history.
for ( n in history ) {
i = history[n];
if ( i.hasOwnProperty('c') ) {
@@ -152,7 +295,20 @@
}
return '';
},
-
+ /**
+ * @summary Binds the necessary events to the image.
+ *
+ * When the image source is reloaded the image will be reloaded.
+ *
+ * @memberof imageEdit
+ * @since 2.9.0
+ *
+ * @param {number} postid The post id.
+ * @param {string} nonce The nonce to verify the request.
+ * @param {function} callback Function to execute when the image is loaded.
+ *
+ * @returns {void}
+ */
refreshEditor : function(postid, nonce, callback) {
var t = this, data, img;
@@ -165,9 +321,27 @@
'rand': t.intval(Math.random() * 1000000)
};
- img = $('')
- .on('load', function() {
- var max1, max2, parent = $('#imgedit-crop-' + postid), t = imageEdit;
+ img = $( '
' )
+ .on( 'load', { history: data.history }, function( event ) {
+ var max1, max2,
+ parent = $( '#imgedit-crop-' + postid ),
+ t = imageEdit,
+ historyObj;
+
+ // Checks if there already is some image-edit history.
+ if ( '' !== event.data.history ) {
+ historyObj = JSON.parse( event.data.history );
+ // If last executed action in history is a crop action.
+ if ( historyObj[historyObj.length - 1].hasOwnProperty( 'c' ) ) {
+ /*
+ * A crop action has completed and the crop button gets disabled
+ * ensure the undo button is enabled.
+ */
+ t.setDisabled( $( '#image-undo-' + postid) , true );
+ // Move focus to the undo button to avoid a focus loss.
+ $( '#image-undo-' + postid ).focus();
+ }
+ }
parent.empty().append(img);
@@ -197,7 +371,22 @@
})
.attr('src', ajaxurl + '?' + $.param(data));
},
-
+ /**
+ * @summary Performs an image edit action.
+ *
+ * @memberof imageEdit
+ * @since 2.9.0
+ *
+ * @param {number} postid The post id.
+ * @param {string} nonce The nonce to verify the request.
+ * @param {string} action The action to perform on the image.
+ * The possible actions are: "scale" and "restore".
+ *
+ * @returns {boolean|void} Executes a post request that refreshes the page
+ * when the action is performed.
+ * Returns false if a invalid action is given,
+ * or when the action cannot be performed.
+ */
action : function(postid, nonce, action) {
var t = this, data, w, h, fw, fh;
@@ -249,6 +438,19 @@
});
},
+ /**
+ * @summary Stores the changes that are made to the image.
+ *
+ * @memberof imageEdit
+ * @since 2.9.0
+ *
+ * @param {number} postid The post id to get the image from the database.
+ * @param {string} nonce The nonce to verify the request.
+ *
+ * @returns {boolean|void} If the actions are successfully saved a response message is shown.
+ * Returns false if there is no image editing history,
+ * thus there are not edit-actions performed on the image.
+ */
save : function(postid, nonce) {
var data,
target = this.getTarget(postid),
@@ -269,10 +471,12 @@
'context': $('#image-edit-context').length ? $('#image-edit-context').val() : null,
'do': 'save'
};
-
+ // Post the image edit data to the backend.
$.post(ajaxurl, data, function(r) {
+ // Read the response.
var ret = JSON.parse(r);
+ // If a response is returned, close the editor and show an error.
if ( ret.error ) {
$('#imgedit-response-' + postid).html('
' + ret.error + '