2012-09-26 03:00:08 +02:00
|
|
|
// Ensure the global `wp` object exists.
|
2012-10-06 02:43:36 +02:00
|
|
|
window.wp = window.wp || {};
|
2012-09-24 02:13:18 +02:00
|
|
|
|
|
|
|
(function($){
|
|
|
|
var views = {},
|
|
|
|
instances = {};
|
|
|
|
|
2012-09-26 03:00:08 +02:00
|
|
|
// Create the `wp.mce` object if necessary.
|
|
|
|
wp.mce = wp.mce || {};
|
2012-09-24 02:13:18 +02:00
|
|
|
|
2012-09-26 03:00:08 +02:00
|
|
|
// wp.mce.view
|
|
|
|
// -----------
|
|
|
|
// A set of utilities that simplifies adding custom UI within a TinyMCE editor.
|
|
|
|
// At its core, it serves as a series of converters, transforming text to a
|
|
|
|
// custom UI, and back again.
|
2012-09-24 02:13:18 +02:00
|
|
|
wp.mce.view = {
|
2012-09-26 03:00:08 +02:00
|
|
|
// ### defaults
|
2012-09-24 02:13:18 +02:00
|
|
|
defaults: {
|
2012-10-03 08:40:07 +02:00
|
|
|
// The default properties used for objects with the `pattern` key in
|
|
|
|
// `wp.mce.view.add()`.
|
|
|
|
pattern: {
|
|
|
|
view: Backbone.View,
|
|
|
|
text: function( instance ) {
|
|
|
|
return instance.options.original;
|
|
|
|
},
|
|
|
|
|
|
|
|
toView: function( content ) {
|
|
|
|
if ( ! this.pattern )
|
|
|
|
return;
|
|
|
|
|
|
|
|
this.pattern.lastIndex = 0;
|
|
|
|
var match = this.pattern.exec( content );
|
|
|
|
|
|
|
|
if ( ! match )
|
|
|
|
return;
|
|
|
|
|
|
|
|
return {
|
|
|
|
index: match.index,
|
|
|
|
content: match[0],
|
|
|
|
options: {
|
|
|
|
original: match[0],
|
|
|
|
results: match
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2012-09-26 03:00:08 +02:00
|
|
|
},
|
|
|
|
|
2012-10-03 08:40:07 +02:00
|
|
|
// The default properties used for objects with the `shortcode` key in
|
|
|
|
// `wp.mce.view.add()`.
|
|
|
|
shortcode: {
|
|
|
|
view: Backbone.View,
|
|
|
|
text: function( instance ) {
|
Use the new media modal to insert galleries into TinyMCE and the text editor.
'''Galleries'''
* Gallery insertion from the new media modal (into TinyMCE, the text editor, etc).
* Gallery previews in TinyMCE now use the `wp.mce.views` API.
* Disables the TinyMCE `wpgallery` plugin.
* Gallery previews consist of the first image of the gallery and the appearance of a stack. This will later be fleshed out to include more images/functionality (including editing the gallery, gallery properties, and showing the number of images in the gallery).
* Multiple galleries can be added to a single post.
* The gallery MCE view provides a bridge between the `wp.shortcode` and `Attachments` representation of a gallery, which allows the existing collection to persist when a gallery is initially created (preventing a request to the server for the query).
'''Shortcodes'''
* Renames `wp.shortcode.Match` to `wp.shortcode` to better expose the shortcode constructor.
* The `wp.shortcode` constructor now accepts an object of options instead of a `wp.shortcode.regexp()` match.
* A `wp.shortcode` instance can be created from a `wp.shortcode.regexp()` match by calling `wp.shortcode.fromMatch( match )`.
* Adds `wp.shortcode.string()`, which takes a set of shortcode parameters and converts them into a string.* Renames `wp.shortcode.prototype.text()` to `wp.shortcode.prototype.string()`.
* Adds an additional capture group to `wp.shortcode.regexp()` that records whether or not the shortcode has a closing tag. This allows us to improve the accuracy of the syntax used when transforming a shortcode object back into a string.
'''Media Models'''
* Prevents media `Query` models from observing the central `Attachments.all` object when query args without corresponding filters are set (otherwise, queries quickly amass false positives).
* Adds `post__in`, `post__not_in`, and `post_parent` as acceptable JS attachment `Query` args.
* `Attachments.more()` always returns a `$.promise` object.
see #21390, #21809, #21812, #21815, #21817.
git-svn-id: http://core.svn.wordpress.org/trunk@22120 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-10-05 06:23:59 +02:00
|
|
|
return instance.options.shortcode.string();
|
2012-10-03 08:40:07 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
toView: function( content ) {
|
|
|
|
var match = wp.shortcode.next( this.shortcode, content );
|
|
|
|
|
|
|
|
if ( ! match )
|
|
|
|
return;
|
|
|
|
|
|
|
|
return {
|
|
|
|
index: match.index,
|
|
|
|
content: match.content,
|
|
|
|
options: {
|
|
|
|
shortcode: match.shortcode
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2012-09-24 02:13:18 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-09-26 03:00:08 +02:00
|
|
|
// ### add( id, options )
|
2012-09-24 02:13:18 +02:00
|
|
|
// Registers a new TinyMCE view.
|
|
|
|
//
|
|
|
|
// Accepts a unique `id` and an `options` object.
|
|
|
|
//
|
2012-09-24 04:18:15 +02:00
|
|
|
// `options` accepts the following properties:
|
2012-09-24 02:13:18 +02:00
|
|
|
//
|
2012-09-26 03:00:08 +02:00
|
|
|
// * `pattern` is the regular expression used to scan the content and
|
2012-09-24 04:18:15 +02:00
|
|
|
// detect matching views.
|
|
|
|
//
|
2012-09-26 03:00:08 +02:00
|
|
|
// * `view` is a `Backbone.View` constructor. If a plain object is
|
2012-09-24 04:18:15 +02:00
|
|
|
// provided, it will automatically extend the parent constructor
|
|
|
|
// (usually `Backbone.View`). Views are instantiated when the `pattern`
|
|
|
|
// is successfully matched. The instance's `options` object is provided
|
|
|
|
// with the `original` matched value, the match `results` including
|
|
|
|
// capture groups, and the `viewType`, which is the constructor's `id`.
|
|
|
|
//
|
2012-09-26 03:00:08 +02:00
|
|
|
// * `extend` an existing view by passing in its `id`. The current
|
2012-09-24 04:18:15 +02:00
|
|
|
// view will inherit all properties from the parent view, and if
|
|
|
|
// `view` is set to a plain object, it will extend the parent `view`
|
|
|
|
// constructor.
|
|
|
|
//
|
2012-09-26 03:00:08 +02:00
|
|
|
// * `text` is a method that accepts an instance of the `view`
|
2012-09-24 04:18:15 +02:00
|
|
|
// constructor and transforms it into a text representation.
|
2012-09-24 02:13:18 +02:00
|
|
|
add: function( id, options ) {
|
2012-09-26 16:12:54 +02:00
|
|
|
var parent, remove, base, properties;
|
|
|
|
|
2012-09-24 02:13:18 +02:00
|
|
|
// Fetch the parent view or the default options.
|
2012-10-03 08:40:07 +02:00
|
|
|
if ( options.extend )
|
|
|
|
parent = wp.mce.view.get( options.extend );
|
|
|
|
else if ( options.shortcode )
|
|
|
|
parent = wp.mce.view.defaults.shortcode;
|
|
|
|
else
|
|
|
|
parent = wp.mce.view.defaults.pattern;
|
2012-09-24 02:13:18 +02:00
|
|
|
|
|
|
|
// Extend the `options` object with the parent's properties.
|
|
|
|
_.defaults( options, parent );
|
2012-09-24 04:18:15 +02:00
|
|
|
options.id = id;
|
2012-09-24 02:13:18 +02:00
|
|
|
|
2012-09-26 16:12:54 +02:00
|
|
|
// Create properties used to enhance the view for use in TinyMCE.
|
|
|
|
properties = {
|
|
|
|
// Ensure the wrapper element and references to the view are
|
|
|
|
// removed. Otherwise, removed views could randomly restore.
|
|
|
|
remove: function() {
|
|
|
|
delete instances[ this.el.id ];
|
|
|
|
this.$el.parent().remove();
|
|
|
|
|
|
|
|
// Trigger the inherited `remove` method.
|
|
|
|
if ( remove )
|
|
|
|
remove.apply( this, arguments );
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// If the `view` provided was an object, use the parent's
|
|
|
|
// `view` constructor as a base. If a `view` constructor
|
|
|
|
// was provided, treat that as the base.
|
|
|
|
if ( _.isFunction( options.view ) ) {
|
|
|
|
base = options.view;
|
|
|
|
} else {
|
|
|
|
base = parent.view;
|
|
|
|
remove = options.view.remove;
|
|
|
|
_.defaults( properties, options.view );
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there's a `remove` method on the `base` view that wasn't
|
|
|
|
// created by this method, inherit it.
|
|
|
|
if ( ! remove && ! base._mceview )
|
|
|
|
remove = base.prototype.remove;
|
|
|
|
|
|
|
|
// Automatically create the new `Backbone.View` constructor.
|
|
|
|
options.view = base.extend( properties, {
|
|
|
|
// Flag that the new view has been created by `wp.mce.view`.
|
|
|
|
_mceview: true
|
|
|
|
});
|
2012-09-24 02:13:18 +02:00
|
|
|
|
|
|
|
views[ id ] = options;
|
|
|
|
},
|
|
|
|
|
2012-09-26 03:00:08 +02:00
|
|
|
// ### get( id )
|
2012-09-24 02:13:18 +02:00
|
|
|
// Returns a TinyMCE view options object.
|
|
|
|
get: function( id ) {
|
|
|
|
return views[ id ];
|
|
|
|
},
|
|
|
|
|
2012-09-26 03:00:08 +02:00
|
|
|
// ### remove( id )
|
2012-09-24 02:13:18 +02:00
|
|
|
// Unregisters a TinyMCE view.
|
|
|
|
remove: function( id ) {
|
|
|
|
delete views[ id ];
|
|
|
|
},
|
|
|
|
|
2012-09-26 03:00:08 +02:00
|
|
|
// ### toViews( content )
|
2012-09-24 02:13:18 +02:00
|
|
|
// Scans a `content` string for each view's pattern, replacing any
|
|
|
|
// matches with wrapper elements, and creates a new view instance for
|
|
|
|
// every match.
|
|
|
|
//
|
|
|
|
// To render the views, call `wp.mce.view.render( scope )`.
|
|
|
|
toViews: function( content ) {
|
2012-09-26 03:00:08 +02:00
|
|
|
var pieces = [ { content: content } ],
|
|
|
|
current;
|
|
|
|
|
2012-09-24 02:13:18 +02:00
|
|
|
_.each( views, function( view, viewType ) {
|
2012-09-26 03:00:08 +02:00
|
|
|
current = pieces.slice();
|
|
|
|
pieces = [];
|
|
|
|
|
|
|
|
_.each( current, function( piece ) {
|
|
|
|
var remaining = piece.content,
|
|
|
|
result;
|
|
|
|
|
|
|
|
// Ignore processed pieces, but retain their location.
|
|
|
|
if ( piece.processed ) {
|
|
|
|
pieces.push( piece );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Iterate through the string progressively matching views
|
|
|
|
// and slicing the string as we go.
|
|
|
|
while ( remaining && (result = view.toView( remaining )) ) {
|
|
|
|
// Any text before the match becomes an unprocessed piece.
|
|
|
|
if ( result.index )
|
|
|
|
pieces.push({ content: remaining.substring( 0, result.index ) });
|
|
|
|
|
|
|
|
// Add the processed piece for the match.
|
|
|
|
pieces.push({
|
|
|
|
content: wp.mce.view.toView( viewType, result.options ),
|
|
|
|
processed: true
|
|
|
|
});
|
|
|
|
|
|
|
|
// Update the remaining content.
|
|
|
|
remaining = remaining.slice( result.index + result.content.length );
|
|
|
|
}
|
|
|
|
|
|
|
|
// There are no additional matches. If any content remains,
|
|
|
|
// add it as an unprocessed piece.
|
|
|
|
if ( remaining )
|
|
|
|
pieces.push({ content: remaining });
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
return _.pluck( pieces, 'content' ).join('');
|
|
|
|
},
|
2012-09-24 02:13:18 +02:00
|
|
|
|
2012-09-26 03:00:08 +02:00
|
|
|
toView: function( viewType, options ) {
|
|
|
|
var view = wp.mce.view.get( viewType ),
|
2012-10-12 20:36:21 +02:00
|
|
|
instance, id;
|
2012-09-24 02:13:18 +02:00
|
|
|
|
2012-09-26 03:00:08 +02:00
|
|
|
if ( ! view )
|
|
|
|
return '';
|
2012-09-24 02:13:18 +02:00
|
|
|
|
2012-09-26 03:00:08 +02:00
|
|
|
// Create a new view instance.
|
|
|
|
instance = new view.view( _.extend( options || {}, {
|
|
|
|
viewType: viewType
|
|
|
|
}) );
|
2012-09-24 02:13:18 +02:00
|
|
|
|
2012-09-26 03:00:08 +02:00
|
|
|
// Use the view's `id` if it already exists. Otherwise,
|
|
|
|
// create a new `id`.
|
|
|
|
id = instance.el.id = instance.el.id || _.uniqueId('__wpmce-');
|
|
|
|
instances[ id ] = instance;
|
2012-09-24 02:13:18 +02:00
|
|
|
|
2012-10-12 20:36:21 +02:00
|
|
|
// Create a dummy `$wrapper` property to allow `$wrapper` to be
|
|
|
|
// called in the view's `render` method without a conditional.
|
|
|
|
instance.$wrapper = $();
|
2012-09-24 02:13:18 +02:00
|
|
|
|
2012-10-12 20:36:21 +02:00
|
|
|
return wp.html.string({
|
|
|
|
// If the view is a span, wrap it in a span.
|
|
|
|
tag: 'span' === instance.tagName ? 'span' : 'div',
|
|
|
|
|
|
|
|
attrs: {
|
|
|
|
'class': 'wp-view-wrap wp-view-type-' + viewType,
|
|
|
|
'data-wp-view': id,
|
|
|
|
'contenteditable': false
|
|
|
|
}
|
|
|
|
});
|
2012-09-24 02:13:18 +02:00
|
|
|
},
|
|
|
|
|
2012-09-26 03:00:08 +02:00
|
|
|
// ### render( scope )
|
2012-09-24 02:13:18 +02:00
|
|
|
// Renders any view instances inside a DOM node `scope`.
|
|
|
|
//
|
|
|
|
// View instances are detected by the presence of wrapper elements.
|
|
|
|
// To generate wrapper elements, pass your content through
|
|
|
|
// `wp.mce.view.toViews( content )`.
|
|
|
|
render: function( scope ) {
|
|
|
|
$( '.wp-view-wrap', scope ).each( function() {
|
|
|
|
var wrapper = $(this),
|
2012-10-12 05:28:22 +02:00
|
|
|
view = wp.mce.view.instance( this );
|
2012-09-24 02:13:18 +02:00
|
|
|
|
|
|
|
if ( ! view )
|
|
|
|
return;
|
|
|
|
|
2012-10-12 20:36:21 +02:00
|
|
|
// Link the real wrapper to the view.
|
|
|
|
view.$wrapper = wrapper;
|
2012-09-24 02:13:18 +02:00
|
|
|
// Render the view.
|
|
|
|
view.render();
|
|
|
|
// Detach the view element to ensure events are not unbound.
|
|
|
|
view.$el.detach();
|
|
|
|
|
|
|
|
// Empty the wrapper, attach the view element to the wrapper,
|
|
|
|
// and add an ending marker to the wrapper to help regexes
|
|
|
|
// scan the HTML string.
|
2012-10-10 12:52:14 +02:00
|
|
|
wrapper.empty().append( view.el ).append('<span data-wp-view-end class="wp-view-end"></span>');
|
2012-09-24 02:13:18 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2012-09-26 03:00:08 +02:00
|
|
|
// ### toText( content )
|
2012-09-24 02:13:18 +02:00
|
|
|
// Scans an HTML `content` string and replaces any view instances with
|
|
|
|
// their respective text representations.
|
|
|
|
toText: function( content ) {
|
2012-10-10 12:52:14 +02:00
|
|
|
return content.replace( /<(?:div|span)[^>]+data-wp-view="([^"]+)"[^>]*>.*?<span[^>]+data-wp-view-end[^>]*><\/span><\/(?:div|span)>/g, function( match, id ) {
|
2012-09-24 02:13:18 +02:00
|
|
|
var instance = instances[ id ],
|
|
|
|
view;
|
|
|
|
|
|
|
|
if ( instance )
|
|
|
|
view = wp.mce.view.get( instance.options.viewType );
|
|
|
|
|
|
|
|
return instance && view ? view.text( instance ) : '';
|
|
|
|
});
|
2012-09-26 16:12:54 +02:00
|
|
|
},
|
|
|
|
|
2012-09-27 00:20:15 +02:00
|
|
|
// ### Remove internal TinyMCE attributes.
|
|
|
|
removeInternalAttrs: function( attrs ) {
|
|
|
|
var result = {};
|
|
|
|
_.each( attrs, function( value, attr ) {
|
|
|
|
if ( -1 === attr.indexOf('data-mce') )
|
|
|
|
result[ attr ] = value;
|
|
|
|
});
|
|
|
|
return result;
|
|
|
|
},
|
|
|
|
|
|
|
|
// ### Parse an attribute string and removes internal TinyMCE attributes.
|
|
|
|
attrs: function( content ) {
|
|
|
|
return wp.mce.view.removeInternalAttrs( wp.html.attrs( content ) );
|
|
|
|
},
|
|
|
|
|
2012-10-12 05:28:22 +02:00
|
|
|
// ### instance( scope )
|
|
|
|
//
|
|
|
|
// Accepts a MCE view wrapper `node` (i.e. a node with the
|
|
|
|
// `wp-view-wrap` class).
|
|
|
|
instance: function( node ) {
|
|
|
|
var id = $( node ).data('wp-view');
|
|
|
|
|
|
|
|
if ( id )
|
|
|
|
return instances[ id ];
|
|
|
|
},
|
|
|
|
|
2012-10-12 01:52:09 +02:00
|
|
|
// ### Select a view.
|
|
|
|
//
|
|
|
|
// Accepts a MCE view wrapper `node` (i.e. a node with the
|
|
|
|
// `wp-view-wrap` class).
|
|
|
|
select: function( node ) {
|
|
|
|
var $node = $(node);
|
|
|
|
|
|
|
|
// Bail if node is already selected.
|
|
|
|
if ( $node.hasClass('selected') )
|
|
|
|
return;
|
|
|
|
|
|
|
|
$node.addClass('selected');
|
|
|
|
$( node.firstChild ).trigger('select');
|
|
|
|
},
|
|
|
|
|
|
|
|
// ### Deselect a view.
|
|
|
|
//
|
|
|
|
// Accepts a MCE view wrapper `node` (i.e. a node with the
|
|
|
|
// `wp-view-wrap` class).
|
|
|
|
deselect: function( node ) {
|
|
|
|
var $node = $(node);
|
|
|
|
|
|
|
|
// Bail if node is already selected.
|
|
|
|
if ( ! $node.hasClass('selected') )
|
|
|
|
return;
|
|
|
|
|
|
|
|
$node.removeClass('selected');
|
|
|
|
$( node.firstChild ).trigger('deselect');
|
2012-10-09 02:55:44 +02:00
|
|
|
}
|
2012-09-27 06:09:43 +02:00
|
|
|
};
|
2012-09-26 16:12:54 +02:00
|
|
|
|
|
|
|
}(jQuery));
|