TinyMCE: enhance the inline toolbar for images:
- Add alignment (left, center, right, none) buttons. - Position the menu above the image when possible, except on iOS. - Fix selecting images on iOS. First run, part props avryl. See #30147. Built from https://develop.svn.wordpress.org/trunk@30318 git-svn-id: http://core.svn.wordpress.org/trunk@30317 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
07eba31e0b
commit
69105d29e8
|
@ -957,6 +957,7 @@ final class _WP_Editors {
|
||||||
'Insert Read More tag' => __( 'Insert Read More tag' ),
|
'Insert Read More tag' => __( 'Insert Read More tag' ),
|
||||||
'Read more...' => __( 'Read more...' ), // Title on the placeholder inside the editor
|
'Read more...' => __( 'Read more...' ), // Title on the placeholder inside the editor
|
||||||
'Distraction Free Writing' => __( 'Distraction Free Writing' ),
|
'Distraction Free Writing' => __( 'Distraction Free Writing' ),
|
||||||
|
'Remove Alignment' => __( 'Remove alignment' ), // Tooltip for the 'alignnone' button in the image toolbar
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -154,6 +154,106 @@ div.mce-toolbar-grp {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp {
|
||||||
|
border: 1px solid #aaa;
|
||||||
|
-webkit-border-radius: 2px;
|
||||||
|
border-radius: 2px;
|
||||||
|
-webkit-box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.2 )
|
||||||
|
box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.2 )
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
-moz-box-sizing: border-box;
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
position: absolute;
|
||||||
|
opacity: 0;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-wp-image-toolbar > div.mce-stack-layout {
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-up {
|
||||||
|
margin-bottom: 0;
|
||||||
|
margin-top: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-inline-toolbar-grp-active {
|
||||||
|
-webkit-transition:
|
||||||
|
top 0.1s ease-out,
|
||||||
|
right 0.1s ease-out,
|
||||||
|
opacity 0.1s ease-in-out;
|
||||||
|
transition:
|
||||||
|
top 0.1s ease-out,
|
||||||
|
right 0.1s ease-out,
|
||||||
|
opacity 0.1s ease-in-out;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp:before,
|
||||||
|
div.mce-inline-toolbar-grp:after {
|
||||||
|
position: absolute;
|
||||||
|
right: 50%;
|
||||||
|
display: block;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: transparent;
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-up:before {
|
||||||
|
top: -18px;
|
||||||
|
border-bottom-color: #aaa;
|
||||||
|
border-width: 9px;
|
||||||
|
margin-right: -9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-down:before {
|
||||||
|
bottom: -18px;
|
||||||
|
border-top-color: #aaa;
|
||||||
|
border-width: 9px;
|
||||||
|
margin-right: -9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-up:after {
|
||||||
|
top: -16px;
|
||||||
|
border-bottom-color: #f5f5f5;
|
||||||
|
border-width: 8px;
|
||||||
|
margin-right: -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-down:after {
|
||||||
|
bottom: -16px;
|
||||||
|
border-top-color: #f5f5f5;
|
||||||
|
border-width: 8px;
|
||||||
|
margin-right: -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-left:before,
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-left:after {
|
||||||
|
right: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-right:before,
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-right:after {
|
||||||
|
left: 11px;
|
||||||
|
right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-full {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-full > div {
|
||||||
|
width: 100%;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
div.mce-toolbar-grp > div {
|
div.mce-toolbar-grp > div {
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
}
|
}
|
||||||
|
@ -621,6 +721,7 @@ i.mce-i-wp-media-library,
|
||||||
i.mce-i-ltr,
|
i.mce-i-ltr,
|
||||||
i.mce-i-wp_page,
|
i.mce-i-wp_page,
|
||||||
i.mce-i-hr,
|
i.mce-i-hr,
|
||||||
|
i.mce-i-dashicon,
|
||||||
.mce-close {
|
.mce-close {
|
||||||
font: normal 20px/1 'dashicons';
|
font: normal 20px/1 'dashicons';
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -154,6 +154,106 @@ div.mce-toolbar-grp {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp {
|
||||||
|
border: 1px solid #aaa;
|
||||||
|
-webkit-border-radius: 2px;
|
||||||
|
border-radius: 2px;
|
||||||
|
-webkit-box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.2 )
|
||||||
|
box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.2 )
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
-moz-box-sizing: border-box;
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
position: absolute;
|
||||||
|
opacity: 0;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-wp-image-toolbar > div.mce-stack-layout {
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-up {
|
||||||
|
margin-bottom: 0;
|
||||||
|
margin-top: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-inline-toolbar-grp-active {
|
||||||
|
-webkit-transition:
|
||||||
|
top 0.1s ease-out,
|
||||||
|
left 0.1s ease-out,
|
||||||
|
opacity 0.1s ease-in-out;
|
||||||
|
transition:
|
||||||
|
top 0.1s ease-out,
|
||||||
|
left 0.1s ease-out,
|
||||||
|
opacity 0.1s ease-in-out;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp:before,
|
||||||
|
div.mce-inline-toolbar-grp:after {
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
display: block;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: transparent;
|
||||||
|
content: '';
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-up:before {
|
||||||
|
top: -18px;
|
||||||
|
border-bottom-color: #aaa;
|
||||||
|
border-width: 9px;
|
||||||
|
margin-left: -9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-down:before {
|
||||||
|
bottom: -18px;
|
||||||
|
border-top-color: #aaa;
|
||||||
|
border-width: 9px;
|
||||||
|
margin-left: -9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-up:after {
|
||||||
|
top: -16px;
|
||||||
|
border-bottom-color: #f5f5f5;
|
||||||
|
border-width: 8px;
|
||||||
|
margin-left: -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-down:after {
|
||||||
|
bottom: -16px;
|
||||||
|
border-top-color: #f5f5f5;
|
||||||
|
border-width: 8px;
|
||||||
|
margin-left: -8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-left:before,
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-left:after {
|
||||||
|
left: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-right:before,
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-right:after {
|
||||||
|
right: 11px;
|
||||||
|
left: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-full {
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.mce-inline-toolbar-grp.mce-arrow-full > div {
|
||||||
|
width: 100%;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
div.mce-toolbar-grp > div {
|
div.mce-toolbar-grp > div {
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
}
|
}
|
||||||
|
@ -621,6 +721,7 @@ i.mce-i-wp-media-library,
|
||||||
i.mce-i-ltr,
|
i.mce-i-ltr,
|
||||||
i.mce-i-wp_page,
|
i.mce-i-wp_page,
|
||||||
i.mce-i-hr,
|
i.mce-i-hr,
|
||||||
|
i.mce-i-dashicon,
|
||||||
.mce-close {
|
.mce-close {
|
||||||
font: normal 20px/1 'dashicons';
|
font: normal 20px/1 'dashicons';
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,336 @@
|
||||||
/* global tinymce */
|
/* global tinymce */
|
||||||
tinymce.PluginManager.add( 'wpeditimage', function( editor ) {
|
tinymce.PluginManager.add( 'wpeditimage', function( editor ) {
|
||||||
var toolbarActive = false,
|
var DOM = tinymce.DOM,
|
||||||
editingImage = false;
|
settings = editor.settings,
|
||||||
|
Factory = tinymce.ui.Factory,
|
||||||
|
each = tinymce.each,
|
||||||
|
iOS = tinymce.Env.iOS,
|
||||||
|
toolbarIsHidden = true,
|
||||||
|
editorWrapParent = tinymce.$( '#postdivrich' ),
|
||||||
|
tb;
|
||||||
|
|
||||||
|
editor.addButton( 'wp_img_remove', {
|
||||||
|
tooltip: 'Remove',
|
||||||
|
icon: 'dashicon dashicons-no',
|
||||||
|
onclick: function() {
|
||||||
|
removeImage( editor.selection.getNode() );
|
||||||
|
}
|
||||||
|
} );
|
||||||
|
|
||||||
|
editor.addButton( 'wp_img_edit', {
|
||||||
|
tooltip: 'Edit',
|
||||||
|
icon: 'dashicon dashicons-edit',
|
||||||
|
onclick: function() {
|
||||||
|
editImage( editor.selection.getNode() );
|
||||||
|
}
|
||||||
|
} );
|
||||||
|
|
||||||
|
each( {
|
||||||
|
alignleft: 'Align left',
|
||||||
|
aligncenter: 'Align center',
|
||||||
|
alignright: 'Align right',
|
||||||
|
alignnone: 'Remove alignment'
|
||||||
|
}, function( tooltip, name ) {
|
||||||
|
var direction = name.slice( 5 );
|
||||||
|
|
||||||
|
editor.addButton( 'wp_img_' + name, {
|
||||||
|
tooltip: tooltip,
|
||||||
|
icon: 'dashicon dashicons-align-' + direction,
|
||||||
|
cmd: 'alignnone' === name ? 'wpAlignNone' : 'Justify' + direction.slice( 0, 1 ).toUpperCase() + direction.slice( 1 ),
|
||||||
|
onPostRender: function() {
|
||||||
|
var self = this;
|
||||||
|
|
||||||
|
editor.on( 'NodeChange', function( event ) {
|
||||||
|
var node;
|
||||||
|
|
||||||
|
// Don't bother.
|
||||||
|
if ( event.element.nodeName !== 'IMG' ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
node = editor.dom.getParent( event.element, '.wp-caption' ) || event.element;
|
||||||
|
|
||||||
|
if ( 'alignnone' === name ) {
|
||||||
|
self.active( ! /\balign(left|center|right)\b/.test( node.className ) );
|
||||||
|
} else {
|
||||||
|
self.active( editor.dom.hasClass( node, name ) );
|
||||||
|
}
|
||||||
|
} );
|
||||||
|
}
|
||||||
|
} );
|
||||||
|
} );
|
||||||
|
|
||||||
|
function toolbarConfig() {
|
||||||
|
var toolbarItems = [],
|
||||||
|
buttonGroup;
|
||||||
|
|
||||||
|
each( [ 'wp_img_alignleft', 'wp_img_aligncenter', 'wp_img_alignright', 'wp_img_alignnone', 'wp_img_edit', 'wp_img_remove' ], function( item ) {
|
||||||
|
var itemName;
|
||||||
|
|
||||||
|
function bindSelectorChanged() {
|
||||||
|
var selection = editor.selection;
|
||||||
|
|
||||||
|
if ( item.settings.stateSelector ) {
|
||||||
|
selection.selectorChanged( item.settings.stateSelector, function( state ) {
|
||||||
|
item.active( state );
|
||||||
|
}, true );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( item.settings.disabledStateSelector ) {
|
||||||
|
selection.selectorChanged( item.settings.disabledStateSelector, function( state ) {
|
||||||
|
item.disabled( state );
|
||||||
|
} );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( item === '|' ) {
|
||||||
|
buttonGroup = null;
|
||||||
|
} else {
|
||||||
|
if ( Factory.has( item ) ) {
|
||||||
|
item = {
|
||||||
|
type: item
|
||||||
|
};
|
||||||
|
|
||||||
|
if ( settings.toolbar_items_size ) {
|
||||||
|
item.size = settings.toolbar_items_size;
|
||||||
|
}
|
||||||
|
|
||||||
|
toolbarItems.push( item );
|
||||||
|
|
||||||
|
buttonGroup = null;
|
||||||
|
} else {
|
||||||
|
if ( ! buttonGroup ) {
|
||||||
|
buttonGroup = {
|
||||||
|
type: 'buttongroup',
|
||||||
|
items: []
|
||||||
|
};
|
||||||
|
|
||||||
|
toolbarItems.push( buttonGroup );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( editor.buttons[ item ] ) {
|
||||||
|
itemName = item;
|
||||||
|
item = editor.buttons[ itemName ];
|
||||||
|
|
||||||
|
if ( typeof item === 'function' ) {
|
||||||
|
item = item();
|
||||||
|
}
|
||||||
|
|
||||||
|
item.type = item.type || 'button';
|
||||||
|
|
||||||
|
if ( settings.toolbar_items_size ) {
|
||||||
|
item.size = settings.toolbar_items_size;
|
||||||
|
}
|
||||||
|
|
||||||
|
item = Factory.create( item );
|
||||||
|
buttonGroup.items.push( item );
|
||||||
|
|
||||||
|
if ( editor.initialized ) {
|
||||||
|
bindSelectorChanged();
|
||||||
|
} else {
|
||||||
|
editor.on( 'init', bindSelectorChanged );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} );
|
||||||
|
|
||||||
|
return {
|
||||||
|
type: 'panel',
|
||||||
|
layout: 'stack',
|
||||||
|
classes: 'toolbar-grp inline-toolbar-grp wp-image-toolbar',
|
||||||
|
ariaRoot: true,
|
||||||
|
ariaRemember: true,
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
type: 'toolbar',
|
||||||
|
layout: 'flow',
|
||||||
|
items: toolbarItems
|
||||||
|
}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
tb = Factory.create( toolbarConfig() ).renderTo( document.body ).hide();
|
||||||
|
|
||||||
|
tb.reposition = function() {
|
||||||
|
var top, left, minTop, className,
|
||||||
|
toolbarNode = this.getEl(),
|
||||||
|
buffer = 5,
|
||||||
|
margin = 8,
|
||||||
|
windowPos = window.pageYOffset || document.documentElement.scrollTop,
|
||||||
|
adminbar = tinymce.$( '#wpadminbar' )[0],
|
||||||
|
mceToolbar = tinymce.$( '.mce-tinymce .mce-toolbar-grp' )[0],
|
||||||
|
adminbarHeight = 0,
|
||||||
|
boundary = editor.selection.getRng().getBoundingClientRect(),
|
||||||
|
boundaryMiddle = ( boundary.left + boundary.right ) / 2,
|
||||||
|
boundaryVerticalMiddle = ( boundary.top + boundary.bottom ) / 2,
|
||||||
|
spaceTop = boundary.top,
|
||||||
|
spaceBottom = iframeHeigth - boundary.bottom,
|
||||||
|
windowWidth = window.innerWidth,
|
||||||
|
toolbarWidth = toolbarNode.offsetWidth,
|
||||||
|
toolbarHalf = toolbarWidth / 2,
|
||||||
|
iframe = editor.getContentAreaContainer().firstChild,
|
||||||
|
iframePos = DOM.getPos( iframe ),
|
||||||
|
iframeWidth = iframe.offsetWidth,
|
||||||
|
iframeHeigth = iframe.offsetHeight,
|
||||||
|
toolbarNodeHeight = toolbarNode.offsetHeight,
|
||||||
|
verticalSpaceNeeded = toolbarNodeHeight + margin + buffer;
|
||||||
|
|
||||||
|
if ( iOS ) {
|
||||||
|
top = boundary.top + iframePos.y + margin;
|
||||||
|
} else {
|
||||||
|
if ( spaceTop >= verticalSpaceNeeded ) {
|
||||||
|
className = ' mce-arrow-down';
|
||||||
|
top = boundary.top + iframePos.y - toolbarNodeHeight - margin;
|
||||||
|
} else if ( spaceBottom >= verticalSpaceNeeded ) {
|
||||||
|
className = ' mce-arrow-up';
|
||||||
|
top = boundary.bottom + iframePos.y;
|
||||||
|
} else {
|
||||||
|
top = buffer;
|
||||||
|
|
||||||
|
if ( boundaryVerticalMiddle >= verticalSpaceNeeded ) {
|
||||||
|
className = ' mce-arrow-down';
|
||||||
|
} else {
|
||||||
|
className = ' mce-arrow-up';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Make sure the image toolbar is below the main toolbar.
|
||||||
|
if ( mceToolbar ) {
|
||||||
|
minTop = DOM.getPos( mceToolbar ).y + mceToolbar.clientHeight;
|
||||||
|
} else {
|
||||||
|
minTop = iframePos.y;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Make sure the image toolbar is below the adminbar (if visible) or below the top of the window.
|
||||||
|
if ( windowPos ) {
|
||||||
|
if ( adminbar && adminbar.getBoundingClientRect().top === 0 ) {
|
||||||
|
adminbarHeight = adminbar.clientHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( windowPos + adminbarHeight > minTop ) {
|
||||||
|
minTop = windowPos + adminbarHeight;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( top && minTop && ( minTop + buffer > top ) ) {
|
||||||
|
top = minTop + buffer;
|
||||||
|
className = '';
|
||||||
|
}
|
||||||
|
|
||||||
|
left = boundaryMiddle - toolbarHalf;
|
||||||
|
left += iframePos.x;
|
||||||
|
|
||||||
|
if ( toolbarWidth >= windowWidth ) {
|
||||||
|
className += ' mce-arrow-full';
|
||||||
|
left = 0;
|
||||||
|
} else if ( ( left < 0 && boundary.left + toolbarWidth > windowWidth ) ||
|
||||||
|
( left + toolbarWidth > windowWidth && boundary.right - toolbarWidth < 0 ) ) {
|
||||||
|
|
||||||
|
left = ( windowWidth - toolbarWidth ) / 2;
|
||||||
|
} else if ( left < iframePos.x ) {
|
||||||
|
className += ' mce-arrow-left';
|
||||||
|
left = boundary.left + iframePos.x;
|
||||||
|
} else if ( left + toolbarWidth > iframeWidth + iframePos.x ) {
|
||||||
|
className += ' mce-arrow-right';
|
||||||
|
left = boundary.right - toolbarWidth + iframePos.x;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( ! iOS ) {
|
||||||
|
toolbarNode.className = toolbarNode.className.replace( / ?mce-arrow-[\w]+/g, '' );
|
||||||
|
toolbarNode.className += className;
|
||||||
|
}
|
||||||
|
|
||||||
|
DOM.setStyles( toolbarNode, { 'left': left, 'top': top } );
|
||||||
|
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
|
||||||
|
if ( iOS ) {
|
||||||
|
// Safari on iOS fails to select image nodes in contentEditoble mode on touch/click.
|
||||||
|
// Select them again.
|
||||||
|
editor.on( 'click', function( event ) {
|
||||||
|
if ( event.target.nodeName === 'IMG' ) {
|
||||||
|
var node = event.target;
|
||||||
|
|
||||||
|
window.setTimeout( function() {
|
||||||
|
editor.selection.select( node );
|
||||||
|
}, 200 );
|
||||||
|
} else {
|
||||||
|
tb.hide();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
editor.on( 'nodechange', function( event ) {
|
||||||
|
var delay = iOS ? 350 : 100;
|
||||||
|
|
||||||
|
if ( event.element.nodeName !== 'IMG' ) {
|
||||||
|
tb.hide();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setTimeout( function() {
|
||||||
|
var element = editor.selection.getNode();
|
||||||
|
|
||||||
|
if ( element.nodeName === 'IMG' ) {
|
||||||
|
if ( tb._visible ) {
|
||||||
|
tb.reposition();
|
||||||
|
} else {
|
||||||
|
tb.show();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
tb.hide();
|
||||||
|
}
|
||||||
|
}, delay );
|
||||||
|
} );
|
||||||
|
|
||||||
|
tb.on( 'show', function() {
|
||||||
|
var self = this;
|
||||||
|
|
||||||
|
toolbarIsHidden = false;
|
||||||
|
|
||||||
|
setTimeout( function() {
|
||||||
|
if ( self._visible ) {
|
||||||
|
DOM.addClass( self.getEl(), 'mce-inline-toolbar-grp-active' );
|
||||||
|
self.reposition();
|
||||||
|
}
|
||||||
|
}, 100 );
|
||||||
|
} );
|
||||||
|
|
||||||
|
tb.on( 'hide', function() {
|
||||||
|
toolbarIsHidden = true;
|
||||||
|
DOM.removeClass( this.getEl(), 'mce-inline-toolbar-grp-active' );
|
||||||
|
} );
|
||||||
|
|
||||||
|
function hide() {
|
||||||
|
if ( ! toolbarIsHidden ) {
|
||||||
|
tb.hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
DOM.bind( window, 'resize scroll', function() {
|
||||||
|
if ( ! toolbarIsHidden && editorWrapParent.hasClass( 'wp-editor-expand' ) ) {
|
||||||
|
hide();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
editor.on( 'init', function() {
|
||||||
|
DOM.bind( editor.getWin(), 'resize scroll', hide );
|
||||||
|
} );
|
||||||
|
|
||||||
|
editor.on( 'blur hide', hide );
|
||||||
|
|
||||||
|
// 119 = F8
|
||||||
|
editor.shortcuts.add( 'Alt+119', '', function() {
|
||||||
|
var node = tb.find( 'toolbar' )[0];
|
||||||
|
|
||||||
|
if ( node ) {
|
||||||
|
node.focus( true );
|
||||||
|
}
|
||||||
|
} );
|
||||||
|
|
||||||
function parseShortcode( content ) {
|
function parseShortcode( content ) {
|
||||||
return content.replace( /(?:<p>)?\[(?:wp_)?caption([^\]]+)\]([\s\S]+?)\[\/(?:wp_)?caption\](?:<\/p>)?/g, function( a, b, c ) {
|
return content.replace( /(?:<p>)?\[(?:wp_)?caption([^\]]+)\]([\s\S]+?)\[\/(?:wp_)?caption\](?:<\/p>)?/g, function( a, b, c ) {
|
||||||
|
@ -372,8 +701,6 @@ tinymce.PluginManager.add( 'wpeditimage', function( editor ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
editor.nodeChanged();
|
editor.nodeChanged();
|
||||||
// Refresh the toolbar
|
|
||||||
addToolbar( imageNode );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function editImage( img ) {
|
function editImage( img ) {
|
||||||
|
@ -414,7 +741,6 @@ tinymce.PluginManager.add( 'wpeditimage', function( editor ) {
|
||||||
frame.on( 'close', function() {
|
frame.on( 'close', function() {
|
||||||
editor.focus();
|
editor.focus();
|
||||||
frame.detach();
|
frame.detach();
|
||||||
editingImage = false;
|
|
||||||
});
|
});
|
||||||
|
|
||||||
frame.open();
|
frame.open();
|
||||||
|
@ -444,129 +770,10 @@ tinymce.PluginManager.add( 'wpeditimage', function( editor ) {
|
||||||
editor.dom.remove( node );
|
editor.dom.remove( node );
|
||||||
}
|
}
|
||||||
|
|
||||||
removeToolbar();
|
|
||||||
editor.nodeChanged();
|
editor.nodeChanged();
|
||||||
editor.undoManager.add();
|
editor.undoManager.add();
|
||||||
}
|
}
|
||||||
|
|
||||||
function addToolbar( node ) {
|
|
||||||
var rectangle, toolbarHtml, toolbar, left,
|
|
||||||
dom = editor.dom;
|
|
||||||
|
|
||||||
removeToolbar();
|
|
||||||
|
|
||||||
// Don't add to placeholders
|
|
||||||
if ( ! node || node.nodeName !== 'IMG' || isPlaceholder( node ) ) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
dom.setAttrib( node, 'data-wp-imgselect', 1 );
|
|
||||||
rectangle = dom.getRect( node );
|
|
||||||
|
|
||||||
toolbarHtml = '<i class="dashicons dashicons-edit edit" data-mce-bogus="all"></i>' +
|
|
||||||
'<i class="dashicons dashicons-no-alt remove" data-mce-bogus="all"></i>';
|
|
||||||
|
|
||||||
toolbar = dom.create( 'p', {
|
|
||||||
'id': 'wp-image-toolbar',
|
|
||||||
'data-mce-bogus': 'all',
|
|
||||||
'contenteditable': false
|
|
||||||
}, toolbarHtml );
|
|
||||||
|
|
||||||
if ( editor.rtl ) {
|
|
||||||
left = rectangle.x + rectangle.w - 82;
|
|
||||||
} else {
|
|
||||||
left = rectangle.x;
|
|
||||||
}
|
|
||||||
|
|
||||||
editor.getBody().appendChild( toolbar );
|
|
||||||
dom.setStyles( toolbar, {
|
|
||||||
top: rectangle.y,
|
|
||||||
left: left
|
|
||||||
});
|
|
||||||
|
|
||||||
toolbarActive = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function removeToolbar() {
|
|
||||||
var toolbar = editor.dom.get( 'wp-image-toolbar' );
|
|
||||||
|
|
||||||
if ( toolbar ) {
|
|
||||||
editor.dom.remove( toolbar );
|
|
||||||
}
|
|
||||||
|
|
||||||
editor.dom.setAttrib( editor.dom.select( 'img[data-wp-imgselect]' ), 'data-wp-imgselect', null );
|
|
||||||
|
|
||||||
editingImage = false;
|
|
||||||
toolbarActive = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function isPlaceholder( node ) {
|
|
||||||
var dom = editor.dom;
|
|
||||||
|
|
||||||
if ( dom.hasClass( node, 'mceItem' ) || dom.getAttrib( node, 'data-mce-placeholder' ) ||
|
|
||||||
dom.getAttrib( node, 'data-mce-object' ) ) {
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function isToolbarButton( node ) {
|
|
||||||
return ( node && node.nodeName === 'I' && node.parentNode.id === 'wp-image-toolbar' );
|
|
||||||
}
|
|
||||||
|
|
||||||
function edit( event ) {
|
|
||||||
var image,
|
|
||||||
node = event.target,
|
|
||||||
dom = editor.dom;
|
|
||||||
|
|
||||||
// Don't trigger on right-click
|
|
||||||
if ( event.button && event.button > 1 ) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( isToolbarButton( node ) ) {
|
|
||||||
image = dom.select( 'img[data-wp-imgselect]' )[0];
|
|
||||||
|
|
||||||
if ( image ) {
|
|
||||||
editor.selection.select( image );
|
|
||||||
|
|
||||||
if ( dom.hasClass( node, 'remove' ) ) {
|
|
||||||
removeImage( image );
|
|
||||||
} else if ( dom.hasClass( node, 'edit' ) ) {
|
|
||||||
if ( ! editingImage ) {
|
|
||||||
editImage( image );
|
|
||||||
editingImage = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
event.preventDefault();
|
|
||||||
} else if ( node.nodeName === 'IMG' && ! editor.dom.getAttrib( node, 'data-wp-imgselect' ) && ! isPlaceholder( node ) ) {
|
|
||||||
addToolbar( node );
|
|
||||||
} else if ( node.nodeName !== 'IMG' ) {
|
|
||||||
removeToolbar();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( 'ontouchend' in document ) {
|
|
||||||
editor.on( 'click', function( event ) {
|
|
||||||
var target = event.target;
|
|
||||||
|
|
||||||
if ( editingImage && target.nodeName === 'IMG' ) {
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( isToolbarButton( target ) ) {
|
|
||||||
event.preventDefault();
|
|
||||||
event.stopPropagation();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
editor.on( 'mouseup touchend', edit );
|
|
||||||
|
|
||||||
editor.on( 'init', function() {
|
editor.on( 'init', function() {
|
||||||
var dom = editor.dom,
|
var dom = editor.dom,
|
||||||
captionClass = editor.getParam( 'wpeditimage_html5_captions' ) ? 'html5-captions' : 'html4-captions';
|
captionClass = editor.getParam( 'wpeditimage_html5_captions' ) ? 'html5-captions' : 'html4-captions';
|
||||||
|
@ -803,9 +1010,6 @@ tinymce.PluginManager.add( 'wpeditimage', function( editor ) {
|
||||||
if ( node.nodeName === 'IMG' && dom.getParent( node, '.wp-caption' ) ) {
|
if ( node.nodeName === 'IMG' && dom.getParent( node, '.wp-caption' ) ) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove toolbar to avoid an orphaned toolbar when dragging an image to a new location
|
|
||||||
removeToolbar();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Prevent IE11 from making dl.wp-caption resizable
|
// Prevent IE11 from making dl.wp-caption resizable
|
||||||
|
@ -821,14 +1025,6 @@ tinymce.PluginManager.add( 'wpeditimage', function( editor ) {
|
||||||
event.target.focus();
|
event.target.focus();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
editor.on( 'click', function( event ) {
|
|
||||||
if ( event.target.nodeName === 'IMG' && dom.getAttrib( event.target, 'data-wp-imgselect' ) &&
|
|
||||||
dom.getParent( event.target, 'dl.wp-caption' ) ) {
|
|
||||||
|
|
||||||
editor.getBody().focus();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -855,14 +1051,12 @@ tinymce.PluginManager.add( 'wpeditimage', function( editor ) {
|
||||||
dom.setStyle( parent, 'width', width + 'px' );
|
dom.setStyle( parent, 'width', width + 'px' );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// refresh toolbar
|
|
||||||
addToolbar( node );
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
editor.on( 'BeforeExecCommand', function( event ) {
|
editor.on( 'BeforeExecCommand', function( event ) {
|
||||||
var node, p, DL, align,
|
var node, p, DL, align, replacement,
|
||||||
cmd = event.command,
|
cmd = event.command,
|
||||||
dom = editor.dom;
|
dom = editor.dom;
|
||||||
|
|
||||||
|
@ -875,39 +1069,30 @@ tinymce.PluginManager.add( 'wpeditimage', function( editor ) {
|
||||||
editor.selection.setCursorLocation( p, 0 );
|
editor.selection.setCursorLocation( p, 0 );
|
||||||
editor.nodeChanged();
|
editor.nodeChanged();
|
||||||
}
|
}
|
||||||
} else if ( cmd === 'JustifyLeft' || cmd === 'JustifyRight' || cmd === 'JustifyCenter' ) {
|
} else if ( cmd === 'JustifyLeft' || cmd === 'JustifyRight' || cmd === 'JustifyCenter' || cmd === 'wpAlignNone' ) {
|
||||||
node = editor.selection.getNode();
|
node = editor.selection.getNode();
|
||||||
align = cmd.substr(7).toLowerCase();
|
align = 'align' + cmd.slice( 7 ).toLowerCase();
|
||||||
align = 'align' + align;
|
DL = editor.dom.getParent( node, '.wp-caption' );
|
||||||
DL = dom.getParent( node, 'dl.wp-caption' );
|
|
||||||
|
|
||||||
removeToolbar();
|
if ( node.nodeName !== 'IMG' && ! DL ) {
|
||||||
|
return;
|
||||||
if ( DL ) {
|
|
||||||
// When inside an image caption, set the align* class on dl.wp-caption
|
|
||||||
if ( dom.hasClass( DL, align ) ) {
|
|
||||||
dom.removeClass( DL, align );
|
|
||||||
dom.addClass( DL, 'alignnone' );
|
|
||||||
} else {
|
|
||||||
DL.className = DL.className.replace( /align[^ ]+/g, '' );
|
|
||||||
dom.addClass( DL, align );
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( node.nodeName === 'IMG' ) {
|
|
||||||
// Re-select the image to update resize handles, etc.
|
|
||||||
editor.nodeChanged();
|
|
||||||
}
|
|
||||||
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( node.nodeName === 'IMG' ) {
|
node = DL || node;
|
||||||
if ( dom.hasClass( node, align ) ) {
|
|
||||||
// The align class is being removed
|
if ( editor.dom.hasClass( node, align ) ) {
|
||||||
dom.addClass( node, 'alignnone' );
|
replacement = ' alignnone';
|
||||||
} else {
|
} else {
|
||||||
dom.removeClass( node, 'alignnone' );
|
replacement = ' ' + align;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
node.className = node.className.replace( / ?align(left|center|right|none)/g, '' ) + replacement;
|
||||||
|
|
||||||
|
editor.nodeChanged();
|
||||||
|
event.preventDefault();
|
||||||
|
|
||||||
|
if ( tb ) {
|
||||||
|
tb.reposition();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -960,34 +1145,7 @@ tinymce.PluginManager.add( 'wpeditimage', function( editor ) {
|
||||||
removeImage( node );
|
removeImage( node );
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
removeToolbar();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Most key presses will replace the image so we need to remove the toolbar
|
|
||||||
if ( toolbarActive ) {
|
|
||||||
if ( event.ctrlKey || event.metaKey || event.altKey || ( keyCode < 48 && keyCode !== VK.SPACEBAR ) ) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
removeToolbar();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
editor.on( 'mousedown', function( event ) {
|
|
||||||
if ( isToolbarButton( event.target ) ) {
|
|
||||||
if ( tinymce.Env.ie ) {
|
|
||||||
// Stop IE > 8 from making the wrapper resizable on mousedown
|
|
||||||
event.preventDefault();
|
|
||||||
}
|
|
||||||
} else if ( event.target.nodeName !== 'IMG' ) {
|
|
||||||
removeToolbar();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Remove from undo levels
|
|
||||||
editor.on( 'BeforeAddUndo', function( event ) {
|
|
||||||
event.level.content = event.level.content.replace( / data-wp-imgselect="1"/g, '' );
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// After undo/redo FF seems to set the image height very slowly when it is set to 'auto' in the CSS.
|
// After undo/redo FF seems to set the image height very slowly when it is set to 'auto' in the CSS.
|
||||||
|
@ -1001,10 +1159,6 @@ tinymce.PluginManager.add( 'wpeditimage', function( editor ) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
editor.on( 'cut wpview-selected', function() {
|
|
||||||
removeToolbar();
|
|
||||||
});
|
|
||||||
|
|
||||||
editor.wpSetImgCaption = function( content ) {
|
editor.wpSetImgCaption = function( content ) {
|
||||||
return parseShortcode( content );
|
return parseShortcode( content );
|
||||||
};
|
};
|
||||||
|
@ -1022,7 +1176,6 @@ tinymce.PluginManager.add( 'wpeditimage', function( editor ) {
|
||||||
editor.on( 'PostProcess', function( event ) {
|
editor.on( 'PostProcess', function( event ) {
|
||||||
if ( event.get ) {
|
if ( event.get ) {
|
||||||
event.content = editor.wpGetImgCaption( event.content );
|
event.content = editor.wpGetImgCaption( event.content );
|
||||||
event.content = event.content.replace( / data-wp-imgselect="1"/g, '' );
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.1-alpha-30317';
|
$wp_version = '4.1-alpha-30318';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue