mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-06 02:41:27 +01:00
615dd5331b
* Support a `caption` attribute for audio and video shortcodes * In `wp.media.audio|video`, rename `update` to `shortcode` to allow these models to share the same mixins as `wp.media.collection` subclasses * When sending an audio or video shortcode to the editor, create a default caption if the user hasn't entered one. This currently only displays in the editor, not on the front end. Captions aren't tied to a specific attachment here because external sources are supported. * In the `wp.mce.media` mixin, in the `edit` method, read `attr` instead of `data` when attempting to parse the encoded shortcode. `data` does not automatically update when the attribute changes. This was a blessing to debug. * Add `wp.mce.media.PlaylistView` to support playlist views in TinyMCE * Expose `WPPlaylistView` to global scope and suppress auto-parsing of playlist nodes when in the admin. Allow `WPPlaylistView` to be passed `metadata` on creation instead of requiring a JSON blob to be parsed. * Remove all of the playlist logic from the `wpgallery` TinyMCE plugin. * In `wp_prepare_attachment_for_js()` return more data for audio/video so that playlists can have parity in the admin/front end. See #27320. Built from https://develop.svn.wordpress.org/trunk@27640 git-svn-id: http://core.svn.wordpress.org/trunk@27483 1a063a9b-81f0-0310-95a4-ce76da25c4cd
144 lines
3.7 KiB
JavaScript
144 lines
3.7 KiB
JavaScript
/*globals window, document, jQuery, _, Backbone, _wpmejsSettings */
|
|
|
|
(function ($, _, Backbone) {
|
|
"use strict";
|
|
|
|
var WPPlaylistView = Backbone.View.extend({
|
|
index : 0,
|
|
|
|
itemTemplate : wp.template('wp-playlist-item'),
|
|
|
|
initialize : function (options) {
|
|
var settings = {};
|
|
|
|
this.data = options.metadata || $.parseJSON( this.$('script').html() );
|
|
this.playerNode = this.$( this.data.type );
|
|
|
|
this.tracks = new Backbone.Collection( this.data.tracks );
|
|
this.current = this.tracks.first();
|
|
|
|
if ( 'audio' === this.data.type ) {
|
|
this.currentTemplate = wp.template('wp-playlist-current-item');
|
|
this.currentNode = this.$( '.wp-playlist-current-item' );
|
|
}
|
|
|
|
this.renderCurrent();
|
|
|
|
if ( this.data.tracklist ) {
|
|
this.playingClass = 'wp-playlist-playing';
|
|
this.renderTracks();
|
|
}
|
|
|
|
this.playerNode.attr( 'src', this.current.get('src') );
|
|
|
|
_.bindAll( this, 'bindPlayer', 'ended', 'clickTrack' );
|
|
|
|
if ( ! _.isUndefined( window._wpmejsSettings ) ) {
|
|
settings.pluginPath = _wpmejsSettings.pluginPath;
|
|
}
|
|
settings.success = this.bindPlayer;
|
|
|
|
this._player = new MediaElementPlayer( this.playerNode.get(0), settings );
|
|
},
|
|
|
|
renderCurrent : function () {
|
|
var dimensions;
|
|
if ( 'video' === this.data.type ) {
|
|
if ( this.data.images && this.current.get( 'image' ) ) {
|
|
this.playerNode.attr( 'poster', this.current.get( 'image' ).src );
|
|
}
|
|
dimensions = this.current.get( 'dimensions' ).resized;
|
|
this.playerNode.attr( dimensions );
|
|
} else {
|
|
if ( ! this.data.images ) {
|
|
this.current.set( 'image', false );
|
|
}
|
|
this.currentNode.html( this.currentTemplate( this.current.toJSON() ) );
|
|
}
|
|
},
|
|
|
|
renderTracks : function () {
|
|
var self = this, i = 1, tracklist = $( '<div class="wp-playlist-tracks"></div>' );
|
|
this.tracks.each(function (model) {
|
|
if ( ! self.data.images ) {
|
|
model.set( 'image', false );
|
|
}
|
|
model.set( 'artists', self.data.artists );
|
|
model.set( 'index', self.data.tracknumbers ? i : false );
|
|
tracklist.append( self.itemTemplate( model.toJSON() ) );
|
|
i += 1;
|
|
});
|
|
this.$el.append( tracklist );
|
|
|
|
this.$( '.wp-playlist-item' ).eq(0).addClass( this.playingClass );
|
|
},
|
|
|
|
events : {
|
|
'click .wp-playlist-item' : 'clickTrack',
|
|
'click .wp-playlist-next' : 'next',
|
|
'click .wp-playlist-prev' : 'prev'
|
|
},
|
|
|
|
bindPlayer : function (mejs) {
|
|
this.player = mejs;
|
|
this.player.addEventListener( 'ended', this.ended );
|
|
},
|
|
|
|
clickTrack : function (e) {
|
|
this.index = this.$( '.wp-playlist-item' ).index( e.currentTarget );
|
|
this.setCurrent();
|
|
},
|
|
|
|
ended : function () {
|
|
if ( this.index + 1 < this.tracks.length ) {
|
|
this.next();
|
|
} else {
|
|
this.index = 0;
|
|
this.current = this.tracks.at( this.index );
|
|
this.loadCurrent();
|
|
}
|
|
},
|
|
|
|
next : function () {
|
|
this.index = this.index + 1 >= this.tracks.length ? 0 : this.index + 1;
|
|
this.setCurrent();
|
|
},
|
|
|
|
prev : function () {
|
|
this.index = this.index - 1 < 0 ? this.tracks.length - 1 : this.index - 1;
|
|
this.setCurrent();
|
|
},
|
|
|
|
loadCurrent : function () {
|
|
this.player.pause();
|
|
this.playerNode.attr( 'src', this.current.get( 'src' ) );
|
|
this.renderCurrent();
|
|
this.player.load();
|
|
},
|
|
|
|
setCurrent : function () {
|
|
this.current = this.tracks.at( this.index );
|
|
|
|
if ( this.data.tracklist ) {
|
|
this.$( '.wp-playlist-item' )
|
|
.removeClass( this.playingClass )
|
|
.eq( this.index )
|
|
.addClass( this.playingClass );
|
|
}
|
|
|
|
this.loadCurrent();
|
|
this.player.play();
|
|
}
|
|
});
|
|
|
|
$(document).ready(function () {
|
|
if ( ! $( 'body' ).hasClass('wp-admin') ) {
|
|
$('.wp-playlist').each(function () {
|
|
return new WPPlaylistView({ el: this });
|
|
});
|
|
}
|
|
});
|
|
|
|
window.WPPlaylistView = WPPlaylistView;
|
|
|
|
}(jQuery, _, Backbone)); |