/* global tinymce */
/**
* WordPress View plugin.
*/
tinymce.PluginManager.add( 'wpview', function( editor ) {
var selected,
VK = tinymce.util.VK,
TreeWalker = tinymce.dom.TreeWalker,
toRemove = false;
function getParentView( node ) {
while ( node && node.nodeName !== 'BODY' ) {
if ( isView( node ) ) {
return node;
}
node = node.parentNode;
}
}
function isView( node ) {
return node && /\bwpview-wrap\b/.test( node.className );
}
function createPadNode() {
return editor.dom.create( 'p', { 'data-wpview-pad': 1 },
( tinymce.Env.ie && tinymce.Env.ie < 11 ) ? '' : '
' );
}
/**
* Get the text/shortcode string for a view.
*
* @param view The view wrapper's HTML id or node
* @returns string The text/shoercode string of the view
*/
function getViewText( view ) {
view = getParentView( typeof view === 'string' ? editor.dom.get( view ) : view );
if ( view ) {
return window.decodeURIComponent( editor.dom.getAttrib( view, 'data-wpview-text' ) || '' );
}
return '';
}
/**
* Set the view's original text/shortcode string
*
* @param view The view wrapper's HTML id or node
* @param text The text string to be set
*/
function setViewText( view, text ) {
view = getParentView( typeof view === 'string' ? editor.dom.get( view ) : view );
if ( view ) {
editor.dom.setAttrib( view, 'data-wpview-text', window.encodeURIComponent( text || '' ) );
return true;
}
return false;
}
function _stop( event ) {
event.stopPropagation();
}
function select( viewNode ) {
var clipboard,
dom = editor.dom;
// Bail if node is already selected.
if ( viewNode === selected ) {
return;
}
deselect();
selected = viewNode;
dom.addClass( viewNode, 'selected' );
clipboard = dom.create( 'div', {
'class': 'wpview-clipboard',
'contenteditable': 'true'
}, getViewText( viewNode ) );
viewNode.appendChild( clipboard );
// Both of the following are necessary to prevent manipulating the selection/focus
editor.dom.bind( clipboard, 'beforedeactivate focusin focusout', _stop );
editor.dom.bind( selected, 'beforedeactivate focusin focusout', _stop );
// Make sure that the editor is focused.
// It is possible that the editor is not focused when the mouse event fires
// without focus, the selection will not work properly.
editor.getBody().focus();
// select the hidden div
editor.selection.select( clipboard, true );
}
/**
* Deselect a selected view and remove clipboard
*/
function deselect() {
var clipboard,
dom = editor.dom;
if ( selected ) {
clipboard = editor.dom.select( '.wpview-clipboard', selected )[0];
dom.unbind( clipboard );
dom.remove( clipboard );
dom.unbind( selected, 'beforedeactivate focusin focusout click mouseup', _stop );
dom.removeClass( selected, 'selected' );
}
selected = null;
}
function selectSiblingView( node, direction ) {
var body = editor.getBody(),
sibling = direction === 'previous' ? 'previousSibling' : 'nextSibling';
while ( node && node.parentNode !== body ) {
if ( node[sibling] ) {
// The caret will be in another element
return false;
}
node = node.parentNode;
}
if ( isView( node[sibling] ) ) {
select( node[sibling] );
return true;
}
return false;
}
// Check if the `wp.mce` API exists.
if ( typeof wp === 'undefined' || ! wp.mce ) {
return;
}
editor.on( 'BeforeAddUndo', function( event ) {
if ( selected && ! toRemove ) {
event.preventDefault();
}
});
// When the editor's content changes, scan the new content for
// matching view patterns, and transform the matches into
// view wrappers.
editor.on( 'BeforeSetContent', function( e ) {
if ( ! e.content ) {
return;
}
e.content = wp.mce.views.toViews( e.content );
});
// When the editor's content has been updated and the DOM has been
// processed, render the views in the document.
editor.on( 'SetContent', function( event ) {
var body, padNode;
// don't (re-)render views if the format of the content is raw
// to avoid adding additional undo levels on undo/redo
if ( event.format !== 'raw' ) {
wp.mce.views.render();
}
// Add padding
if the noneditable node is last if ( event.load || ! event.set ) { body = editor.getBody(); if ( isView( body.lastChild ) ) { padNode = createPadNode(); body.appendChild( padNode ); editor.selection.setCursorLocation( padNode, 0 ); } } }); // Detect mouse down events that are adjacent to a view when a view is the first view or the last view editor.on( 'click', function( event ) { var body = editor.getBody(), doc = editor.getDoc(), scrollTop = doc.documentElement.scrollTop || body.scrollTop || 0, x, y, firstNode, lastNode, padNode; if ( event.target.nodeName === 'HTML' && ! event.metaKey && ! event.ctrlKey ) { firstNode = body.firstChild; lastNode = body.lastChild; x = event.clientX; y = event.clientY; // Detect clicks above or to the left if the first node is a wpview if ( isView( firstNode ) && ( ( x < firstNode.offsetLeft && y < ( firstNode.offsetHeight - scrollTop ) ) || y < firstNode.offsetTop ) ) { padNode = createPadNode(); body.insertBefore( padNode, firstNode ); // Detect clicks to the right and below the last view } else if ( isView( lastNode ) && ( x > ( lastNode.offsetLeft + lastNode.offsetWidth ) || ( ( scrollTop + y ) - ( lastNode.offsetTop + lastNode.offsetHeight ) ) > 0 ) ) { padNode = createPadNode(); body.appendChild( padNode ); } if ( padNode ) { // Make sure that a selected view is deselected so that focus and selection are handled properly deselect(); editor.getBody().focus(); editor.selection.setCursorLocation( padNode, 0 ); } } }); editor.on( 'init', function() { var selection = editor.selection; // When a view is selected, ensure content that is being pasted // or inserted is added to a text node (instead of the view). editor.on( 'BeforeSetContent', function() { var walker, target, view = getParentView( selection.getNode() ); // If the selection is not within a view, bail. if ( ! view ) { return; } if ( ! view.nextSibling || isView( view.nextSibling ) ) { // If there are no additional nodes or the next node is a // view, create a text node after the current view. target = editor.getDoc().createTextNode(''); editor.dom.insertAfter( target, view ); } else { // Otherwise, find the next text node. walker = new TreeWalker( view.nextSibling, view.nextSibling ); target = walker.next(); } // Select the `target` text node. selection.select( target ); selection.collapse( true ); }); // When the selection's content changes, scan any new content // for matching views. // // Runs on paste and on inserting nodes/html. editor.on( 'SetContent', function( e ) { if ( ! e.context ) { return; } var node = selection.getNode(); if ( ! node.innerHTML ) { return; } node.innerHTML = wp.mce.views.toViews( node.innerHTML ); }); editor.dom.bind( editor.getBody(), 'mousedown mouseup click', function( event ) { var view = getParentView( event.target ); // Contain clicks inside the view wrapper if ( view ) { event.stopPropagation(); if ( event.type === 'click' && ! event.metaKey && ! event.ctrlKey ) { if ( editor.dom.hasClass( event.target, 'edit' ) ) { wp.mce.views.edit( view ); } else if ( editor.dom.hasClass( event.target, 'remove' ) ) { editor.dom.remove( view ); } } select( view ); // Returning false stops the ugly bars from appearing in IE11 and stops the view being selected as a range in FF. // Unfortunately, it also inhibits the dragging of views to a new location. return false; } else { if ( event.type === 'mousedown' ) { deselect(); } } }); }); editor.on( 'PreProcess', function( event ) { var dom = editor.dom; // Remove empty padding nodes tinymce.each( dom.select( 'p[data-wpview-pad]', event.node ), function( node ) { if ( dom.isEmpty( node ) ) { dom.remove( node ); } else { dom.setAttrib( node, 'data-wpview-pad', null ); } }); // Replace the wpview node with the wpview string/shortcode? tinymce.each( dom.select( 'div[data-wpview-text]', event.node ), function( node ) { // Empty the wrap node if ( 'textContent' in node ) { node.textContent = ''; } else { node.innerText = ''; } // This makes all views into block tags (as we use