X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/7f1521bf193b382565eb753043c161f4cb3fcda7..607b7e02d77e7326161e8ec15639052d2040f745:/wp-includes/js/wplink.js diff --git a/wp-includes/js/wplink.js b/wp-includes/js/wplink.js index 31489f83..db03036f 100644 --- a/wp-includes/js/wplink.js +++ b/wp-includes/js/wplink.js @@ -1,14 +1,15 @@ -/* global ajaxurl, tinymce, wpLinkL10n, setUserSetting, wpActiveEditor */ var wpLink; -( function( $ ) { - var editor, searchTimer, River, Query, correctedURL, +( function( $, wpLinkL10n, wp ) { + var editor, searchTimer, River, Query, correctedURL, linkNode, + emailRegexp = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,63}$/i, + urlRegexp = /^(https?|ftp):\/\/[A-Z0-9.-]+\.[A-Z]{2,63}[^ "]*$/i, inputs = {}, rivers = {}, isTouch = ( 'ontouchend' in document ); function getLink() { - return editor.dom.getParent( editor.selection.getNode(), 'a' ); + return linkNode || editor.dom.getParent( editor.selection.getNode(), 'a[href]' ); } wpLink = { @@ -18,6 +19,7 @@ var wpLink; keySensitivity: 100, lastSearch: '', textarea: '', + modalOpen: false, init: function() { inputs.wrap = $('#wp-link-wrap'); @@ -50,13 +52,12 @@ var wpLink; event.preventDefault(); wpLink.update(); }); - inputs.close.add( inputs.backdrop ).add( '#wp-link-cancel a' ).click( function( event ) { + + inputs.close.add( inputs.backdrop ).add( '#wp-link-cancel button' ).click( function( event ) { event.preventDefault(); wpLink.close(); }); - $( '#wp-link-search-toggle' ).on( 'click', wpLink.toggleInternalLinking ); - rivers.elements.on( 'river-select', wpLink.updateFields ); // Display 'hint' message when search field or 'query-results' box are focused @@ -68,35 +69,37 @@ var wpLink; inputs.queryNoticeTextHint.addClass( 'screen-reader-text' ).hide(); } ); - inputs.search.keyup( function() { - var self = this; - + inputs.search.on( 'keyup input', function() { window.clearTimeout( searchTimer ); searchTimer = window.setTimeout( function() { - wpLink.searchInternalLinks.call( self ); + wpLink.searchInternalLinks(); }, 500 ); }); - function correctURL() { - var url = $.trim( inputs.url.val() ); - - if ( url && correctedURL !== url && ! /^(?:[a-z]+:|#|\?|\.|\/)/.test( url ) ) { - inputs.url.val( 'http://' + url ); - correctedURL = url; - } - } - inputs.url.on( 'paste', function() { - setTimeout( correctURL, 0 ); + setTimeout( wpLink.correctURL, 0 ); } ); - inputs.url.on( 'blur', correctURL ); + inputs.url.on( 'blur', wpLink.correctURL ); + }, + + // If URL wasn't corrected last time and doesn't start with http:, https:, ? # or /, prepend http:// + correctURL: function () { + var url = $.trim( inputs.url.val() ); + + if ( url && correctedURL !== url && ! /^(?:[a-z]+:|#|\?|\.|\/)/.test( url ) ) { + inputs.url.val( 'http://' + url ); + correctedURL = url; + } }, - open: function( editorId ) { - var ed; + open: function( editorId, url, text, node ) { + var ed, + $body = $( document.body ); - $( document.body ).addClass( 'modal-open' ); + $body.addClass( 'modal-open' ); + wpLink.modalOpen = true; + linkNode = node; wpLink.range = null; @@ -110,8 +113,12 @@ var wpLink; this.textarea = $( '#' + window.wpActiveEditor ).get( 0 ); - if ( typeof tinymce !== 'undefined' ) { - ed = tinymce.get( wpActiveEditor ); + if ( typeof window.tinymce !== 'undefined' ) { + // Make sure the link wrapper is the last element in the body, + // or the inline editor toolbar may show above the backdrop. + $body.append( inputs.backdrop, inputs.wrap ); + + ed = window.tinymce.get( window.wpActiveEditor ); if ( ed && ! ed.isHidden() ) { editor = ed; @@ -119,8 +126,8 @@ var wpLink; editor = null; } - if ( editor && tinymce.isIE ) { - editor.windowManager.bookmark = editor.selection.getBookmark(); + if ( editor && window.tinymce.isIE ) { + editor.windowManager.wplinkBookmark = editor.selection.getBookmark(); } } @@ -132,7 +139,7 @@ var wpLink; inputs.wrap.show(); inputs.backdrop.show(); - wpLink.refresh(); + wpLink.refresh( url, text ); $( document ).trigger( 'wplink-open', inputs.wrap ); }, @@ -141,15 +148,15 @@ var wpLink; return editor && ! editor.isHidden(); }, - refresh: function() { - var text = ''; + refresh: function( url, text ) { + var linkText = ''; // Refresh rivers (clear links, check visibility) rivers.search.refresh(); rivers.recent.refresh(); if ( wpLink.isMCE() ) { - wpLink.mceRefresh(); + wpLink.mceRefresh( url, text ); } else { // For the Text editor the "Link text" field is always shown if ( ! inputs.wrap.hasClass( 'has-text-field' ) ) { @@ -158,11 +165,11 @@ var wpLink; if ( document.selection ) { // Old IE - text = document.selection.createRange().text || ''; + linkText = document.selection.createRange().text || text || ''; } else if ( typeof this.textarea.selectionStart !== 'undefined' && ( this.textarea.selectionStart !== this.textarea.selectionEnd ) ) { // W3C - text = this.textarea.value.substring( this.textarea.selectionStart, this.textarea.selectionEnd ) || ''; + text = this.textarea.value.substring( this.textarea.selectionStart, this.textarea.selectionEnd ) || text || ''; } inputs.text.val( text ); @@ -176,7 +183,10 @@ var wpLink; // Focus the URL field and highlight its contents. // If this is moved above the selection changes, // IE will show a flashing cursor over the dialog. - inputs.url.focus()[0].select(); + window.setTimeout( function() { + inputs.url[0].select(); + inputs.url.focus(); + } ); } // Load the most recent results if this is the first time opening the panel. @@ -188,7 +198,7 @@ var wpLink; }, hasSelectedText: function( linkNode ) { - var html = editor.selection.getContent(); + var node, nodes, i, html = editor.selection.getContent(); // Partial html and not a fully selected anchor element if ( /]+>[^<]+<\/a>$/.test( html ) || html.indexOf('href=') === -1 ) ) { @@ -196,14 +206,16 @@ var wpLink; } if ( linkNode ) { - var nodes = linkNode.childNodes, i; + nodes = linkNode.childNodes; if ( nodes.length === 0 ) { return false; } for ( i = nodes.length - 1; i >= 0; i-- ) { - if ( nodes[i].nodeType != 3 ) { + node = nodes[i]; + + if ( node.nodeType != 3 && ! window.tinymce.dom.BookmarkManager.isBookmarkNode( node ) ) { return false; } } @@ -212,24 +224,49 @@ var wpLink; return true; }, - mceRefresh: function() { - var text, - selectedNode = editor.selection.getNode(), - linkNode = editor.dom.getParent( selectedNode, 'a[href]' ), + mceRefresh: function( searchStr, text ) { + var linkText, href, + linkNode = getLink(), onlyText = this.hasSelectedText( linkNode ); if ( linkNode ) { - text = linkNode.innerText || linkNode.textContent; - inputs.url.val( editor.dom.getAttrib( linkNode, 'href' ) ); - inputs.openInNewTab.prop( 'checked', '_blank' === editor.dom.getAttrib( linkNode, 'target' ) ); - inputs.submit.val( wpLinkL10n.update ); + linkText = linkNode.textContent || linkNode.innerText; + href = editor.dom.getAttrib( linkNode, 'href' ); + + if ( ! $.trim( linkText ) ) { + linkText = text || ''; + } + + if ( searchStr && ( urlRegexp.test( searchStr ) || emailRegexp.test( searchStr ) ) ) { + href = searchStr; + } + + if ( href !== '_wp_link_placeholder' ) { + inputs.url.val( href ); + inputs.openInNewTab.prop( 'checked', '_blank' === editor.dom.getAttrib( linkNode, 'target' ) ); + inputs.submit.val( wpLinkL10n.update ); + } else { + this.setDefaultValues( linkText ); + } + + if ( searchStr && searchStr !== href ) { + // The user has typed something in the inline dialog. Trigger a search with it. + inputs.search.val( searchStr ); + } else { + inputs.search.val( '' ); + } + + // Always reset the search + window.setTimeout( function() { + wpLink.searchInternalLinks(); + } ); } else { - text = editor.selection.getContent({ format: 'text' }); - this.setDefaultValues(); + linkText = editor.selection.getContent({ format: 'text' }) || text || ''; + this.setDefaultValues( linkText ); } if ( onlyText ) { - inputs.text.val( text || '' ); + inputs.text.val( linkText ); inputs.wrap.addClass( 'has-text-field' ); } else { inputs.text.val( '' ); @@ -237,18 +274,25 @@ var wpLink; } }, - close: function() { + close: function( reset ) { $( document.body ).removeClass( 'modal-open' ); + wpLink.modalOpen = false; - if ( ! wpLink.isMCE() ) { - wpLink.textarea.focus(); + if ( reset !== 'noReset' ) { + if ( ! wpLink.isMCE() ) { + wpLink.textarea.focus(); - if ( wpLink.range ) { - wpLink.range.moveToBookmark( wpLink.range.getBookmark() ); - wpLink.range.select(); + if ( wpLink.range ) { + wpLink.range.moveToBookmark( wpLink.range.getBookmark() ); + wpLink.range.select(); + } + } else { + if ( editor.plugins.wplink ) { + editor.plugins.wplink.close(); + } + + editor.focus(); } - } else { - editor.focus(); } inputs.backdrop.hide(); @@ -260,12 +304,24 @@ var wpLink; }, getAttrs: function() { + wpLink.correctURL(); + return { href: $.trim( inputs.url.val() ), target: inputs.openInNewTab.prop( 'checked' ) ? '_blank' : '' }; }, + buildHtml: function(attrs) { + var html = ''; + }, + update: function() { if ( wpLink.isMCE() ) { wpLink.mceUpdate(); @@ -290,14 +346,7 @@ var wpLink; return; } - // Build HTML - html = ' 2 ) { rivers.recent.hide(); @@ -420,7 +494,7 @@ var wpLink; return; wpLink.lastSearch = search; - waiting = t.parent().find( '.spinner' ).addClass( 'is-active' ); + waiting = inputs.search.parent().find( '.spinner' ).addClass( 'is-active' ); rivers.search.change( search ); rivers.search.ajax( function() { @@ -443,13 +517,14 @@ var wpLink; }, keydown: function( event ) { - var fn, id, - key = $.ui.keyCode; + var fn, id; - if ( key.ESCAPE === event.keyCode ) { + // Escape key. + if ( 27 === event.keyCode ) { wpLink.close(); event.stopImmediatePropagation(); - } else if ( key.TAB === event.keyCode ) { + // Tab key. + } else if ( 9 === event.keyCode ) { id = event.target.id; // wp-link-submit must always be the last focusable element in the dialog. @@ -463,7 +538,8 @@ var wpLink; } } - if ( event.keyCode !== key.UP && event.keyCode !== key.DOWN ) { + // Up Arrow and Down Arrow keys. + if ( 38 !== event.keyCode && 40 !== event.keyCode ) { return; } @@ -472,7 +548,8 @@ var wpLink; return; } - fn = event.keyCode === key.UP ? 'prev' : 'next'; + // Up Arrow key. + fn = 38 === event.keyCode ? 'prev' : 'next'; clearInterval( wpLink.keyInterval ); wpLink[ fn ](); wpLink.keyInterval = setInterval( wpLink[ fn ], wpLink.keySensitivity ); @@ -480,9 +557,8 @@ var wpLink; }, keyup: function( event ) { - var key = $.ui.keyCode; - - if ( event.which === key.UP || event.which === key.DOWN ) { + // Up Arrow and Down Arrow keys. + if ( 38 === event.keyCode || 40 === event.keyCode ) { clearInterval( wpLink.keyInterval ); event.preventDefault(); } @@ -509,15 +585,6 @@ var wpLink; funcContext = this; funcTriggered = true; }; - }, - - toggleInternalLinking: function( event ) { - var visible = inputs.wrap.hasClass( 'search-panel-visible' ); - - inputs.wrap.toggleClass( 'search-panel-visible', ! visible ); - setUserSetting( 'wplink', visible ? '0' : '1' ); - inputs[ ! visible ? 'search' : 'url' ].focus(); - event.preventDefault(); } }; @@ -694,7 +761,7 @@ var wpLink; this.querying = true; - $.post( ajaxurl, query, function( r ) { + $.post( window.ajaxurl, query, function( r ) { self.page++; self.querying = false; self.allLoaded = ! r; @@ -704,4 +771,4 @@ var wpLink; }); $( document ).ready( wpLink.init ); -})( jQuery ); +})( jQuery, window.wpLinkL10n, window.wp );