Make WordPress Core

Ticket #32604: 32604.9.patch

File 32604.9.patch, 5.6 KB (added by iseulde, 9 years ago)
  • src/wp-includes/css/editor.css

     
    15991599        }
    16001600}
    16011601
     1602.wp-link-preview {
     1603        float: left;
     1604        margin: 5px;
     1605}
     1606
     1607.wp-link-preview a {
     1608        color: #0073aa;
     1609        text-decoration: underline;
     1610        -webkit-transition-property: border, background, color;
     1611        transition-property: border, background, color;
     1612        -webkit-transition-duration: .05s;
     1613        transition-duration: .05s;
     1614        -webkit-transition-timing-function: ease-in-out;
     1615        transition-timing-function: ease-in-out;
     1616}
     1617
    16021618/* =Overlay Body
    16031619-------------------------------------------------------------- */
    16041620
  • src/wp-includes/js/tinymce/plugins/wplink/plugin.js

     
    1 /* global tinymce */
    2 tinymce.PluginManager.add( 'wplink', function( editor ) {
    3         editor.addCommand( 'WP_Link', function() {
    4                 window.wpLink && window.wpLink.open( editor.id );
    5         });
    6 
    7         // WP default shortcut
    8         editor.addShortcut( 'Alt+Shift+A', '', 'WP_Link' );
    9         // The "de-facto standard" shortcut, see #27305
    10         editor.addShortcut( 'Meta+K', '', 'WP_Link' );
    11 
    12         editor.addButton( 'link', {
    13                 icon: 'link',
    14                 tooltip: 'Insert/edit link',
    15                 cmd: 'WP_Link',
    16                 stateSelector: 'a[href]'
    17         });
    18 
    19         editor.addButton( 'unlink', {
    20                 icon: 'unlink',
    21                 tooltip: 'Remove link',
    22                 cmd: 'unlink'
    23         });
    24 
    25         editor.addMenuItem( 'link', {
    26                 icon: 'link',
    27                 text: 'Insert/edit link',
    28                 cmd: 'WP_Link',
    29                 stateSelector: 'a[href]',
    30                 context: 'insert',
    31                 prependToContext: true
    32         });
    33 
    34         editor.on( 'pastepreprocess', function( event ) {
    35                 var pastedStr = event.content,
    36                         regExp = /^(?:https?:)?\/\/\S+$/i;
    37 
    38                 if ( ! editor.selection.isCollapsed() && ! regExp.test( editor.selection.getContent() ) ) {
    39                         pastedStr = pastedStr.replace( /<[^>]+>/g, '' );
    40                         pastedStr = tinymce.trim( pastedStr );
    41 
    42                         if ( regExp.test( pastedStr ) ) {
    43                                 editor.execCommand( 'mceInsertLink', false, {
    44                                         href: editor.dom.decode( pastedStr )
     1( function( 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
     54                tinymce.ui.WPLinkPreview = tinymce.ui.Control.extend( {
     55                        renderHtml: function() {
     56                                return (
     57                                        '<div id="' + this._id + '" class="wp-link-preview">' +
     58                                                '<a href="' + this.url + '" target="_blank">' + this.url + '</a>' +
     59                                        '</div>'
     60                                );
     61                        },
     62                        setURL: function( url ) {
     63                                var index, lastIndex;
     64
     65                                if ( this.url !== url && this._rendered ) {
     66                                        this.url = url;
     67
     68                                        url = url.replace( /^(?:https?:)?\/\/(?:www\.)?/, '' );
     69
     70                                        if ( ( index = url.indexOf( '?' ) ) !== -1 ) {
     71                                                url = url.slice( 0, index );
     72                                        }
     73
     74                                        if ( ( index = url.indexOf( '#' ) ) !== -1 ) {
     75                                                url = url.slice( 0, index );
     76                                        }
     77
     78                                        url = url.replace( /(?:index)?\.html$/, '' );
     79
     80                                        if ( ( lastIndex = url.lastIndexOf( '/' ) ) === url.length - 1 ) {
     81                                                url = url.slice( 0, lastIndex );
     82                                        }
     83
     84                                        if ( ( index = url.indexOf( '/' ) ) !== -1 && ( lastIndex = url.lastIndexOf( '/' ) ) !== -1 && lastIndex !== index ) {
     85                                                url = url.replace( url.slice( index + 1, lastIndex ), '\u2026' );
     86                                        }
     87
     88                                        tinymce.$( this.getEl().firstChild ).attr( 'href', this.url ).text( url );
     89                                }
     90                        },
     91                        postRender: function() {
     92                                var self = this;
     93
     94                                editor.on( 'nodechange', function( event ) {
     95                                        if ( event.element.nodeName === 'A' ) {
     96                                                self.setURL( editor.$( event.element ).attr( 'href' ) );
     97                                        }
    4598                                } );
    4699
    47                                 event.preventDefault();
     100                                self._rendered = true;
     101
     102                                self._super();
     103                        }
     104                } );
     105
     106                editor.addButton( 'wp_link_edit', {
     107                        tooltip: 'Edit ', // trailing space is needed, used for context
     108                        icon: 'dashicon dashicons-edit',
     109                        cmd: 'WP_Link'
     110                } );
     111
     112                editor.addButton( 'wp_link_remove', {
     113                        tooltip: 'Remove',
     114                        icon: 'dashicon dashicons-no',
     115                        cmd: 'unlink'
     116                } );
     117
     118                editor.on( 'preinit', function() {
     119                        toolbar = editor.wp._createToolbar( [
     120                                'WPLinkPreview',
     121                                'wp_link_edit',
     122                                'wp_link_remove'
     123                        ], true );
     124                } );
     125
     126                editor.on( 'wptoolbar', function( event ) {
     127                        if ( event.element.nodeName === 'A' ) {
     128                                event.toolbar = toolbar;
    48129                        }
    49                 }
     130                } );
    50131        } );
    51 });
     132} )( window.tinymce );