Make WordPress Core

Ticket #28195: 28195.2.patch

File 28195.2.patch, 5.5 KB (added by iseulde, 10 years ago)
  • src/wp-includes/js/mce-view.js

     
    88// Ensure the global `wp` object exists.
    99window.wp = window.wp || {};
    1010
    11 (function($){
     11( function( $ ) {
    1212        var views = {},
    1313                instances = {},
    1414                media = wp.media,
     
    637637        /**
    638638         * TinyMCE handler for the embed shortcode
    639639         */
    640         wp.mce.views.register( 'embed', {
    641                 shortcode: 'embed',
    642                 View: _.extend( {}, wp.media.mixin, {
    643                         template: media.template( 'editor-embed' ),
    644                         initialize: function( options ) {
    645                                 this.players = [];
    646                                 this.content = options.content;
    647                                 this.parsed = false;
    648                                 this.shortcode = options.shortcode;
    649                                 _.bindAll( this, 'setHtml', 'setNode', 'fetch' );
    650                                 $( this ).on( 'ready', this.setNode );
    651                         },
    652                         unbind: function() {
    653                                 var self = this;
    654                                 _.each( this.players, function ( player ) {
    655                                         player.pause();
    656                                         self.removePlayer( player );
    657                                 } );
    658                                 this.players = [];
    659                         },
    660                         setNode: function ( e, node ) {
    661                                 this.node = node;
    662                                 if ( this.parsed ) {
    663                                         this.parseMediaShortcodes();
    664                                 } else {
    665                                         this.fetch();
    666                                 }
    667                         },
    668                         fetch: function () {
    669                                 wp.ajax.send( 'parse-embed', {
    670                                         data: {
    671                                                 post_ID: $( '#post_ID' ).val(),
    672                                                 content: this.shortcode.string()
    673                                         }
    674                                 } ).done( this.setHtml );
    675                         },
    676                         setHtml: function ( content ) {
    677                                 this.parsed = content;
    678                                 $( this.node ).html( this.getHtml() );
     640        wp.mce.embedView = _.extend( {}, wp.media.mixin, {
     641                template: media.template( 'editor-embed' ),
     642                initialize: function( options ) {
     643                        this.players = [];
     644                        this.content = options.content;
     645                        this.parsed = false;
     646                        if ( options.url ) {
     647                                this.shortcode = '[embed]' + options.url + '[/embed]';
     648                        } else {
     649                                this.shortcode = options.shortcode.string();
     650                        }
     651                        _.bindAll( this, 'setHtml', 'setNode', 'fetch' );
     652                        $( this ).on( 'ready', this.setNode );
     653                },
     654                unbind: function() {
     655                        var self = this;
     656                        _.each( this.players, function ( player ) {
     657                                player.pause();
     658                                self.removePlayer( player );
     659                        } );
     660                        this.players = [];
     661                },
     662                setNode: function ( e, node ) {
     663                        this.node = node;
     664                        if ( this.parsed ) {
    679665                                this.parseMediaShortcodes();
    680                         },
    681                         parseMediaShortcodes: function () {
    682                                 var self = this;
    683                                 $( '.wp-audio-shortcode, .wp-video-shortcode', this.node ).each( function ( i, element ) {
    684                                         self.players.push( new MediaElementPlayer( element, self.mejsSettings ) );
    685                                 } );
    686                         },
    687                         getHtml: function() {
    688                                 if ( ! this.parsed ) {
    689                                         return '';
     666                        } else {
     667                                this.fetch();
     668                        }
     669                },
     670                fetch: function () {
     671                        wp.ajax.send( 'parse-embed', {
     672                                data: {
     673                                        post_ID: $( '#post_ID' ).val(),
     674                                        content: this.shortcode
    690675                                }
    691                                 return this.template({ content: this.parsed });
     676                        } ).done( this.setHtml );
     677                },
     678                setHtml: function ( content ) {
     679                        var test = '<a href',
     680                                dom = tinymce.activeEditor.dom;
     681                       
     682                        this.parsed = content;
     683                       
     684                        if ( content.substring( 0, test.length ) === test ) {
     685                                dom.replace( dom.create( 'P', null, content ), this.node );
     686                        } else {
     687                                $( this.node ).html( this.getHtml() );
    692688                        }
    693                 } ),
     689                       
     690                        this.parseMediaShortcodes();
     691                },
     692                parseMediaShortcodes: function () {
     693                        var self = this;
     694                        $( '.wp-audio-shortcode, .wp-video-shortcode', this.node ).each( function ( i, element ) {
     695                                self.players.push( new MediaElementPlayer( element, self.mejsSettings ) );
     696                        } );
     697                },
     698                getHtml: function() {
     699                        if ( ! this.parsed ) {
     700                                return '';
     701                        }
     702                        return this.template( { content: this.parsed } );
     703                }
     704        } );
     705       
     706        wp.mce.views.register( 'embed', {
     707                shortcode: 'embed',
     708                View: wp.mce.embedView,
     709                edit: function() {}
     710        } );
     711       
     712        wp.mce.views.register( 'embedURL', {
     713                shortcode: 'embed',
     714                toView: function( content ) {
     715                        var re = /^<p>\s*(https?:\/\/[^\s"]+)\s*<\/p>$/gim,
     716                                match = re.exec( content );
     717                       
     718                        if ( ! match ) {
     719                                return;
     720                        }
     721                       
     722                        return {
     723                                index: match.index,
     724                                content: match[0],
     725                                options: {
     726                                        url: match[1]
     727                                }
     728                        };
     729                },
     730                View: wp.mce.embedView,
    694731                edit: function() {}
    695732        } );
    696733
  • src/wp-includes/js/tinymce/plugins/wpview/plugin.js

     
    158158        // matching view patterns, and transform the matches into
    159159        // view wrappers.
    160160        editor.on( 'BeforeSetContent', function( event ) {
     161                var node;
     162
    161163                if ( ! event.content ) {
    162164                        return;
    163165                }
     
    165167                if ( ! event.initial ) {
    166168                        wp.mce.views.unbind( editor );
    167169                }
     170               
     171                node = editor.selection.getNode();
     172               
     173                // If a url is inserted in an empty paragraph, wrap the url in p tags so it's detected by wp.mce.views.
     174                if ( node.nodeName === 'P' && editor.dom.isEmpty( node ) && event.content.match( /^\s*(https?:\/\/[^\s"]+)\s*$/im ) ) {
     175                        event.content = '<p>' + event.content + '</p>';
     176                }
    168177
    169178                event.content = wp.mce.views.toViews( event.content );
    170179        });
    171180
    172         editor.on( 'PastePreProcess', function( event ) {
    173                 if ( event.content.match( /^\s*(https?:\/\/[^\s"]+)\s*$/im ) ) {
    174                         event.content = '[embed]' + event.content + '[/embed]';
    175                 }
    176         } );
    177 
    178181        // When the editor's content has been updated and the DOM has been
    179182        // processed, render the views in the document.
    180183        editor.on( 'SetContent', function( event ) {