| 1 | | /* global tinymce */ |
| 2 | | tinymce.PluginManager.add( 'wplink', function( editor ) { |
| 3 | | var toolbar; |
| 4 | | |
| 5 | | editor.addCommand( 'WP_Link', function() { |
| 6 | | window.wpLink && window.wpLink.open( editor.id ); |
| 7 | | }); |
| 8 | | |
| 9 | | // WP default shortcut |
| 10 | | editor.addShortcut( 'Alt+Shift+A', '', 'WP_Link' ); |
| 11 | | // The "de-facto standard" shortcut, see #27305 |
| 12 | | editor.addShortcut( 'Meta+K', '', 'WP_Link' ); |
| 13 | | |
| 14 | | editor.addButton( 'link', { |
| 15 | | icon: 'link', |
| 16 | | tooltip: 'Insert/edit link', |
| 17 | | cmd: 'WP_Link', |
| 18 | | stateSelector: 'a[href]' |
| 19 | | }); |
| 20 | | |
| 21 | | editor.addButton( 'unlink', { |
| 22 | | icon: 'unlink', |
| 23 | | tooltip: 'Remove link', |
| 24 | | cmd: 'unlink' |
| 25 | | }); |
| 26 | | |
| 27 | | editor.addMenuItem( 'link', { |
| 28 | | icon: 'link', |
| 29 | | text: 'Insert/edit link', |
| 30 | | cmd: 'WP_Link', |
| 31 | | stateSelector: 'a[href]', |
| 32 | | context: 'insert', |
| 33 | | prependToContext: true |
| 34 | | }); |
| 35 | | |
| 36 | | editor.on( 'pastepreprocess', function( event ) { |
| 37 | | var pastedStr = event.content, |
| 38 | | regExp = /^(?:https?:)?\/\/\S+$/i; |
| 39 | | |
| 40 | | if ( ! editor.selection.isCollapsed() && ! regExp.test( editor.selection.getContent() ) ) { |
| 41 | | pastedStr = pastedStr.replace( /<[^>]+>/g, '' ); |
| 42 | | pastedStr = tinymce.trim( pastedStr ); |
| 43 | | |
| 44 | | if ( regExp.test( pastedStr ) ) { |
| 45 | | editor.execCommand( 'mceInsertLink', false, { |
| 46 | | href: editor.dom.decode( pastedStr ) |
| 47 | | } ); |
| 48 | | |
| 49 | | event.preventDefault(); |
| 50 | | } |
| 51 | | } |
| 52 | | } ); |
| 53 | | |
| | 1 | ( function( tinymce ) { |
| 87 | | // If the URL is longer that 40 chars, concatenate the beginning (after the domain) and ending with ... |
| 88 | | if ( url.length > 40 && ( index = url.indexOf( '/' ) ) !== -1 && ( lastIndex = url.lastIndexOf( '/' ) ) !== -1 && lastIndex !== index ) { |
| 89 | | // If the beginning + ending are shorter that 40 chars, show more of the ending |
| 90 | | if ( index + url.length - lastIndex < 40 ) { |
| 91 | | lastIndex = -( 40 - ( index + 1 ) ); |
| 92 | | } |
| | 28 | url = url.replace( /^(?:https?:)?\/\/(?:www\.)?/, '' ); |
| | 29 | url = url.replace( /(?:index)?\.html$/, '' ); |
| 103 | | editor.on( 'wptoolbar', function( event ) { |
| 104 | | var anchor = editor.dom.getParent( event.element, 'a' ), |
| 105 | | $ = editor.$, |
| 106 | | href; |
| 107 | | |
| 108 | | if ( anchor && ! $( anchor ).find( 'img' ).length && |
| 109 | | ( href = $( anchor ).attr( 'href' ) ) ) { |
| 110 | | |
| 111 | | self.setURL( href ); |
| 112 | | event.element = anchor; |
| 113 | | event.toolbar = toolbar; |
| | 45 | if ( this.url !== url ) { |
| | 46 | this.url = url; |
| | 47 | |
| | 48 | if ( url.indexOf( '#' ) === 0 || url.indexOf( '?' ) === 0 ) { |
| | 49 | $element = $( document.createElement( 'span' ) ); |
| | 50 | } else { |
| | 51 | $element = $( document.createElement( 'a' ) ); |
| | 52 | $element.attr( 'href', this.url ); |
| | 53 | $element.attr( 'target', '_blank' ); |
| | 54 | $element.attr( 'tabindex', '-1' ); |
| 125 | | editor.addButton( 'wp_link_remove', { |
| 126 | | tooltip: 'Remove', |
| 127 | | icon: 'dashicon dashicons-no', |
| 128 | | cmd: 'unlink' |
| 129 | | } ); |
| | 67 | editor.addCommand( 'WP_Link', function() { |
| | 68 | window.wpLink && window.wpLink.open( editor.id ); |
| | 69 | }); |
| | 70 | |
| | 71 | // WP default shortcut |
| | 72 | editor.addShortcut( 'Alt+Shift+A', '', 'WP_Link' ); |
| | 73 | // The "de-facto standard" shortcut, see #27305 |
| | 74 | editor.addShortcut( 'Meta+K', '', 'WP_Link' ); |
| | 75 | |
| | 76 | editor.addButton( 'link', { |
| | 77 | icon: 'link', |
| | 78 | tooltip: 'Insert/edit link', |
| | 79 | cmd: 'WP_Link', |
| | 80 | stateSelector: 'a[href]' |
| | 81 | }); |
| | 82 | |
| | 83 | editor.addButton( 'unlink', { |
| | 84 | icon: 'unlink', |
| | 85 | tooltip: 'Remove link', |
| | 86 | cmd: 'unlink' |
| | 87 | }); |
| | 88 | |
| | 89 | editor.addMenuItem( 'link', { |
| | 90 | icon: 'link', |
| | 91 | text: 'Insert/edit link', |
| | 92 | cmd: 'WP_Link', |
| | 93 | stateSelector: 'a[href]', |
| | 94 | context: 'insert', |
| | 95 | prependToContext: true |
| | 96 | }); |
| | 97 | |
| | 98 | editor.on( 'pastepreprocess', function( event ) { |
| | 99 | var pastedStr = event.content, |
| | 100 | regExp = /^(?:https?:)?\/\/\S+$/i; |
| | 101 | |
| | 102 | if ( ! editor.selection.isCollapsed() && ! regExp.test( editor.selection.getContent() ) ) { |
| | 103 | pastedStr = pastedStr.replace( /<[^>]+>/g, '' ); |
| | 104 | pastedStr = tinymce.trim( pastedStr ); |
| | 105 | |
| | 106 | if ( regExp.test( pastedStr ) ) { |
| | 107 | editor.execCommand( 'mceInsertLink', false, { |
| | 108 | href: editor.dom.decode( pastedStr ) |
| | 109 | } ); |
| | 110 | |
| | 111 | event.preventDefault(); |
| | 112 | } |
| | 113 | } |
| | 114 | } ); |
| | 115 | |
| | 116 | editor.addButton( 'wp_link_preview', { |
| | 117 | type: 'WPLinkPreview', |
| | 118 | onPostRender: function() { |
| | 119 | var self = this; |
| | 120 | |
| | 121 | editor.on( 'wptoolbar', function( event ) { |
| | 122 | var anchor = editor.dom.getParent( event.element, 'a' ), |
| | 123 | $anchor, |
| | 124 | href; |
| | 125 | |
| | 126 | if ( anchor ) { |
| | 127 | $anchor = editor.$( anchor ); |
| | 128 | href = $anchor.attr( 'href' ); |
| | 129 | |
| | 130 | if ( href && ! $anchor.find( 'img' ).length ) { |
| | 131 | self.setURL( href ); |
| | 132 | event.element = anchor; |
| | 133 | event.toolbar = toolbar; |
| | 134 | } |
| | 135 | } |
| | 136 | } ); |
| | 137 | } |
| | 138 | } ); |
| 131 | | editor.on( 'preinit', function() { |
| 132 | | toolbar = editor.wp._createToolbar( [ |
| 133 | | 'WPLinkPreview', |
| 134 | | 'wp_link_edit', |
| 135 | | 'wp_link_remove' |
| 136 | | ], true ); |
| | 140 | editor.addButton( 'wp_link_edit', { |
| | 141 | tooltip: 'Edit ', // trailing space is needed, used for context |
| | 142 | icon: 'dashicon dashicons-edit', |
| | 143 | cmd: 'WP_Link' |
| | 144 | } ); |
| | 145 | |
| | 146 | editor.addButton( 'wp_link_remove', { |
| | 147 | tooltip: 'Remove', |
| | 148 | icon: 'dashicon dashicons-no', |
| | 149 | cmd: 'unlink' |
| | 150 | } ); |
| | 151 | |
| | 152 | editor.on( 'preinit', function() { |
| | 153 | toolbar = editor.wp._createToolbar( [ |
| | 154 | 'wp_link_preview', |
| | 155 | 'wp_link_edit', |
| | 156 | 'wp_link_remove' |
| | 157 | ], true ); |
| | 158 | } ); |