2014-07-17 22:46:14 +02:00
|
|
|
/* global _wpMediaViewsL10n, MediaElementPlayer, _wpMediaGridSettings, confirm */
|
2014-07-04 05:39:15 +02:00
|
|
|
(function($, _, Backbone, wp) {
|
2014-07-04 04:18:14 +02:00
|
|
|
var media = wp.media, l10n;
|
|
|
|
|
|
|
|
// Link any localized strings.
|
|
|
|
if ( media.view.l10n ) {
|
|
|
|
l10n = media.view.l10n;
|
|
|
|
} else {
|
|
|
|
l10n = media.view.l10n = typeof _wpMediaViewsL10n === 'undefined' ? {} : _wpMediaViewsL10n;
|
|
|
|
delete l10n.settings;
|
|
|
|
}
|
|
|
|
|
2014-07-04 05:39:15 +02:00
|
|
|
/**
|
2014-07-17 05:55:15 +02:00
|
|
|
* A state for editing an attachment's metadata.
|
2014-07-04 05:39:15 +02:00
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @augments wp.media.controller.State
|
|
|
|
* @augments Backbone.Model
|
|
|
|
*/
|
2014-07-17 05:55:15 +02:00
|
|
|
media.controller.EditAttachmentMetadata = media.controller.State.extend({
|
2014-07-04 05:39:15 +02:00
|
|
|
defaults: {
|
|
|
|
id: 'edit-attachment',
|
2014-07-17 05:55:15 +02:00
|
|
|
title: l10n.attachmentDetails,
|
2014-07-04 05:39:15 +02:00
|
|
|
// Region mode defaults.
|
|
|
|
menu: false,
|
|
|
|
content: 'edit-metadata',
|
|
|
|
|
|
|
|
url: ''
|
|
|
|
},
|
|
|
|
|
2014-07-10 18:02:15 +02:00
|
|
|
_ready: function() {},
|
2014-07-04 05:39:15 +02:00
|
|
|
|
2014-07-10 18:02:15 +02:00
|
|
|
/**
|
|
|
|
* Override media.controller.State._postActivate, since this state doesn't
|
|
|
|
* include the regions expected there.
|
|
|
|
*/
|
2014-07-04 05:39:15 +02:00
|
|
|
_postActivate: function() {
|
2014-07-17 05:55:15 +02:00
|
|
|
this.frame.on( 'title:render:default', this._renderTitle, this );
|
|
|
|
|
|
|
|
this._title();
|
2014-07-04 05:39:15 +02:00
|
|
|
this._content();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @access private
|
|
|
|
*/
|
2014-07-17 05:55:15 +02:00
|
|
|
_title: function() {
|
|
|
|
this.frame.title.render( this.get('titleMode') || 'default' );
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
_renderTitle: function( view ) {
|
|
|
|
view.$el.text( this.get('title') || '' );
|
2014-07-04 05:39:15 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
_content: function() {
|
|
|
|
var mode = this.get( 'content' );
|
|
|
|
if ( mode ) {
|
2014-07-04 07:14:15 +02:00
|
|
|
this.frame.content.render( mode );
|
2014-07-04 05:39:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-07-04 04:18:14 +02:00
|
|
|
/**
|
|
|
|
* wp.media.view.MediaFrame.Manage
|
|
|
|
*
|
|
|
|
* A generic management frame workflow.
|
|
|
|
*
|
|
|
|
* Used in the media grid view.
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @augments wp.media.view.MediaFrame
|
|
|
|
* @augments wp.media.view.Frame
|
|
|
|
* @augments wp.media.View
|
|
|
|
* @augments wp.Backbone.View
|
|
|
|
* @augments Backbone.View
|
|
|
|
* @mixes wp.media.controller.StateMachine
|
|
|
|
*/
|
|
|
|
media.view.MediaFrame.Manage = media.view.MediaFrame.extend({
|
|
|
|
/**
|
|
|
|
* @global wp.Uploader
|
|
|
|
*/
|
|
|
|
initialize: function() {
|
2014-07-10 08:37:16 +02:00
|
|
|
var self = this;
|
2014-07-04 04:18:14 +02:00
|
|
|
_.defaults( this.options, {
|
2014-07-13 18:16:15 +02:00
|
|
|
title: '',
|
2014-07-04 04:18:14 +02:00
|
|
|
modal: false,
|
|
|
|
selection: [],
|
|
|
|
library: {},
|
2014-07-10 05:50:17 +02:00
|
|
|
multiple: 'add',
|
2014-07-04 04:18:14 +02:00
|
|
|
state: 'library',
|
2014-07-04 05:39:15 +02:00
|
|
|
uploader: true,
|
|
|
|
mode: [ 'grid', 'edit' ]
|
2014-07-04 04:18:14 +02:00
|
|
|
});
|
|
|
|
|
2014-07-10 05:50:17 +02:00
|
|
|
$(document).on( 'click', '.add-new-h2', _.bind( this.addNewClickHandler, this ) );
|
2014-07-11 07:34:14 +02:00
|
|
|
$(document).on( 'screen:options:open', _.bind( this.screenOptionsOpen, this ) );
|
|
|
|
$(document).on( 'screen:options:close', _.bind( this.screenOptionsClose, this ) );
|
|
|
|
|
2014-07-04 04:18:14 +02:00
|
|
|
// Ensure core and media grid view UI is enabled.
|
|
|
|
this.$el.addClass('wp-core-ui media-grid-view');
|
|
|
|
|
|
|
|
// Force the uploader off if the upload limit has been exceeded or
|
|
|
|
// if the browser isn't supported.
|
|
|
|
if ( wp.Uploader.limitExceeded || ! wp.Uploader.browser.supported ) {
|
|
|
|
this.options.uploader = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize a window-wide uploader.
|
|
|
|
if ( this.options.uploader ) {
|
|
|
|
this.uploader = new media.view.UploaderWindow({
|
|
|
|
controller: this,
|
|
|
|
uploader: {
|
|
|
|
dropzone: $('body'),
|
|
|
|
container: $('body')
|
|
|
|
}
|
|
|
|
}).render();
|
|
|
|
this.uploader.ready();
|
|
|
|
$('body').append( this.uploader.el );
|
|
|
|
|
|
|
|
this.options.uploader = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* call 'initialize' directly on the parent class
|
|
|
|
*/
|
|
|
|
media.view.MediaFrame.prototype.initialize.apply( this, arguments );
|
|
|
|
|
|
|
|
// Since we're not using the default modal built into
|
|
|
|
// a media frame, append our $element to the supplied container.
|
|
|
|
this.$el.appendTo( this.options.container );
|
|
|
|
|
|
|
|
this.createSelection();
|
|
|
|
this.createStates();
|
|
|
|
this.bindHandlers();
|
|
|
|
this.render();
|
2014-07-10 08:37:16 +02:00
|
|
|
|
|
|
|
// Update the URL when entering search string (at most once per second)
|
2014-07-10 19:49:15 +02:00
|
|
|
$( '#media-search-input' ).on( 'input', _.debounce( function(e) {
|
|
|
|
var val = $( e.currentTarget ).val(), url = '';
|
|
|
|
if ( val ) {
|
|
|
|
url += '?search=' + val;
|
|
|
|
}
|
|
|
|
self.gridRouter.navigate( self.gridRouter.baseUrl( url ) );
|
2014-07-10 08:37:16 +02:00
|
|
|
}, 1000 ) );
|
2014-07-10 20:25:14 +02:00
|
|
|
|
|
|
|
_.delay( _.bind( this.createRouter, this ), 1000 );
|
|
|
|
},
|
|
|
|
|
2014-07-11 07:34:14 +02:00
|
|
|
screenOptionsOpen: function() {
|
|
|
|
this.$el.addClass( 'media-grid-view-options' );
|
|
|
|
},
|
|
|
|
|
|
|
|
screenOptionsClose: function() {
|
|
|
|
this.$el.removeClass( 'media-grid-view-options' );
|
|
|
|
},
|
|
|
|
|
2014-07-10 20:25:14 +02:00
|
|
|
createRouter: function() {
|
2014-07-10 20:43:14 +02:00
|
|
|
this.gridRouter = new media.view.MediaFrame.Manage.Router();
|
2014-07-10 20:25:14 +02:00
|
|
|
|
|
|
|
// Verify pushState support and activate
|
|
|
|
if ( window.history && window.history.pushState ) {
|
|
|
|
Backbone.history.start({
|
2014-07-13 18:16:15 +02:00
|
|
|
root: _wpMediaGridSettings.adminUrl,
|
2014-07-10 20:25:14 +02:00
|
|
|
pushState: true
|
|
|
|
});
|
|
|
|
}
|
2014-07-04 04:18:14 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
createSelection: function() {
|
|
|
|
var selection = this.options.selection;
|
|
|
|
|
|
|
|
if ( ! (selection instanceof media.model.Selection) ) {
|
|
|
|
this.options.selection = new media.model.Selection( selection, {
|
|
|
|
multiple: this.options.multiple
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
this._selection = {
|
|
|
|
attachments: new media.model.Attachments(),
|
|
|
|
difference: []
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
createStates: function() {
|
2014-07-17 22:42:15 +02:00
|
|
|
var options = this.options;
|
2014-07-04 04:18:14 +02:00
|
|
|
|
|
|
|
if ( this.options.states ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the default states.
|
|
|
|
this.states.add([
|
2014-07-17 22:42:15 +02:00
|
|
|
new media.controller.Library({
|
|
|
|
library: media.query( options.library ),
|
|
|
|
multiple: options.multiple,
|
|
|
|
title: options.title,
|
|
|
|
priority: 20,
|
|
|
|
|
|
|
|
router: false,
|
|
|
|
content: 'browse',
|
|
|
|
|
|
|
|
filterable: 'mime-types'
|
|
|
|
})
|
2014-07-04 04:18:14 +02:00
|
|
|
]);
|
|
|
|
},
|
|
|
|
|
|
|
|
bindHandlers: function() {
|
|
|
|
this.on( 'content:create:browse', this.browseContent, this );
|
|
|
|
this.on( 'content:render:edit-image', this.editImageContent, this );
|
2014-07-04 05:39:15 +02:00
|
|
|
|
|
|
|
// Handle a frame-level event for editing an attachment.
|
|
|
|
this.on( 'edit:attachment', this.editAttachment, this );
|
|
|
|
},
|
|
|
|
|
2014-07-13 18:16:15 +02:00
|
|
|
addNewClickHandler: function( event ) {
|
|
|
|
event.preventDefault();
|
2014-07-11 07:44:14 +02:00
|
|
|
this.trigger( 'toggle:upload:attachment' );
|
2014-07-10 05:50:17 +02:00
|
|
|
},
|
|
|
|
|
2014-07-04 05:39:15 +02:00
|
|
|
/**
|
|
|
|
* Open the Edit Attachment modal.
|
|
|
|
*/
|
|
|
|
editAttachment: function( model ) {
|
2014-07-10 05:50:17 +02:00
|
|
|
// Create a new EditAttachment frame, passing along the library and the attachment model.
|
2014-07-11 08:39:14 +02:00
|
|
|
wp.media( {
|
2014-07-10 21:39:14 +02:00
|
|
|
frame: 'edit-attachments',
|
2014-07-10 19:51:16 +02:00
|
|
|
gridRouter: this.gridRouter,
|
2014-07-11 08:39:14 +02:00
|
|
|
library: this.state().get('library'),
|
2014-07-10 19:51:16 +02:00
|
|
|
model: model
|
2014-07-10 21:39:14 +02:00
|
|
|
} );
|
2014-07-04 04:18:14 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Content
|
|
|
|
*
|
|
|
|
* @param {Object} content
|
|
|
|
* @this wp.media.controller.Region
|
|
|
|
*/
|
|
|
|
browseContent: function( content ) {
|
|
|
|
var state = this.state();
|
|
|
|
|
|
|
|
// Browse our library of attachments.
|
|
|
|
content.view = new media.view.AttachmentsBrowser({
|
|
|
|
controller: this,
|
|
|
|
collection: state.get('library'),
|
|
|
|
selection: state.get('selection'),
|
|
|
|
model: state,
|
|
|
|
sortable: state.get('sortable'),
|
|
|
|
search: state.get('searchable'),
|
|
|
|
filters: state.get('filterable'),
|
|
|
|
display: state.get('displaySettings'),
|
|
|
|
dragInfo: state.get('dragInfo'),
|
2014-07-04 05:39:15 +02:00
|
|
|
sidebar: false,
|
2014-07-04 04:18:14 +02:00
|
|
|
|
|
|
|
suggestedWidth: state.get('suggestedWidth'),
|
|
|
|
suggestedHeight: state.get('suggestedHeight'),
|
|
|
|
|
|
|
|
AttachmentView: state.get('AttachmentView')
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
editImageContent: function() {
|
|
|
|
var image = this.state().get('image'),
|
|
|
|
view = new media.view.EditImage( { model: image, controller: this } ).render();
|
|
|
|
|
|
|
|
this.content.set( view );
|
|
|
|
|
|
|
|
// after creating the wrapper view, load the actual editor via an ajax call
|
|
|
|
view.loadEditor();
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
2014-07-04 05:39:15 +02:00
|
|
|
|
|
|
|
media.view.Attachment.Details.TwoColumn = media.view.Attachment.Details.extend({
|
|
|
|
template: wp.template( 'attachment-details-two-column' ),
|
|
|
|
|
2014-07-17 05:55:15 +02:00
|
|
|
events: {
|
|
|
|
'change [data-setting]': 'updateSetting',
|
|
|
|
'change [data-setting] input': 'updateSetting',
|
|
|
|
'change [data-setting] select': 'updateSetting',
|
|
|
|
'change [data-setting] textarea': 'updateSetting',
|
|
|
|
'click .delete-attachment': 'deleteAttachment',
|
|
|
|
'click .trash-attachment': 'trashAttachment',
|
|
|
|
'click .edit-attachment': 'editAttachment',
|
|
|
|
'click .refresh-attachment': 'refreshAttachment',
|
|
|
|
'click .edit-image': 'handleEditImageClick'
|
|
|
|
},
|
|
|
|
|
2014-07-04 05:39:15 +02:00
|
|
|
initialize: function() {
|
2014-07-10 19:49:15 +02:00
|
|
|
if ( ! this.model ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.$el.attr('aria-label', this.model.get( 'title' ) ).attr( 'aria-checked', false );
|
|
|
|
|
2014-07-11 22:55:15 +02:00
|
|
|
this.model.on( 'change:title', this._syncTitle, this );
|
2014-07-04 05:39:15 +02:00
|
|
|
this.model.on( 'change:caption', this._syncCaption, this );
|
|
|
|
this.model.on( 'change:percent', this.progress, this );
|
2014-07-11 22:55:15 +02:00
|
|
|
this.model.on( 'change:album', this._syncAlbum, this );
|
|
|
|
this.model.on( 'change:artist', this._syncArtist, this );
|
2014-07-04 05:39:15 +02:00
|
|
|
|
|
|
|
// Update the selection.
|
|
|
|
this.model.on( 'add', this.select, this );
|
|
|
|
this.model.on( 'remove', this.deselect, this );
|
2014-07-11 07:22:14 +02:00
|
|
|
this.model.on( 'sync', this.afterDelete, this );
|
|
|
|
},
|
|
|
|
|
2014-07-11 20:50:14 +02:00
|
|
|
preDestroy: function( event ) {
|
2014-07-11 07:22:14 +02:00
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
this.lastIndex = this.controller.getCurrentIndex();
|
|
|
|
this.hasNext = this.controller.hasNext();
|
2014-07-11 20:50:14 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
trashAttachment: function( event ) {
|
|
|
|
this.preDestroy( event );
|
|
|
|
media.view.Attachment.Details.prototype.trashAttachment.apply( this, arguments );
|
|
|
|
},
|
2014-07-11 07:22:14 +02:00
|
|
|
|
2014-07-11 20:50:14 +02:00
|
|
|
deleteAttachment: function( event ) {
|
|
|
|
this.preDestroy( event );
|
2014-07-11 07:22:14 +02:00
|
|
|
media.view.Attachment.Details.prototype.deleteAttachment.apply( this, arguments );
|
|
|
|
},
|
|
|
|
|
2014-07-17 05:55:15 +02:00
|
|
|
handleEditImageClick: function() {
|
|
|
|
this.controller.setState( 'edit-image' );
|
|
|
|
},
|
|
|
|
|
2014-07-11 07:22:14 +02:00
|
|
|
afterDelete: function( model ) {
|
|
|
|
if ( ! model.destroyed ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var frame = this.controller, index = this.lastIndex;
|
|
|
|
|
|
|
|
if ( ! frame.library.length ) {
|
|
|
|
media.frame.modal.close();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( this.hasNext ) {
|
|
|
|
index -= 1;
|
|
|
|
}
|
|
|
|
frame.model = frame.library.at( index );
|
|
|
|
frame.nextMediaItem();
|
2014-07-04 05:39:15 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
media.view.Attachment.Details.prototype.render.apply( this, arguments );
|
|
|
|
|
|
|
|
media.mixin.removeAllPlayers();
|
|
|
|
$( 'audio, video', this.$el ).each( function (i, elem) {
|
|
|
|
var el = media.view.MediaDetails.prepareSrc( elem );
|
|
|
|
new MediaElementPlayer( el, media.mixin.mejsSettings );
|
|
|
|
} );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-07-10 08:37:16 +02:00
|
|
|
/**
|
|
|
|
* A router for handling the browser history and application state
|
|
|
|
*/
|
2014-07-10 20:43:14 +02:00
|
|
|
media.view.MediaFrame.Manage.Router = Backbone.Router.extend({
|
2014-07-10 08:37:16 +02:00
|
|
|
routes: {
|
|
|
|
'upload.php?item=:slug': 'showitem',
|
|
|
|
'upload.php?search=:query': 'search',
|
|
|
|
':default': 'defaultRoute'
|
|
|
|
},
|
|
|
|
|
|
|
|
// Map routes against the page URL
|
|
|
|
baseUrl: function( url ) {
|
|
|
|
return 'upload.php' + url;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Respond to the search route by filling the search field and trigggering the input event
|
|
|
|
search: function( query ) {
|
|
|
|
// Ensure modal closed, see back button
|
|
|
|
this.closeModal();
|
|
|
|
$( '#media-search-input' ).val( query ).trigger( 'input' );
|
|
|
|
},
|
|
|
|
|
|
|
|
// Show the modal with a specific item
|
|
|
|
showitem: function( query ) {
|
2014-07-10 20:43:14 +02:00
|
|
|
var library = media.frame.state().get('library');
|
2014-07-10 08:37:16 +02:00
|
|
|
|
|
|
|
// Remove existing modal if present
|
|
|
|
this.closeModal();
|
|
|
|
// Trigger the media frame to open the correct item
|
2014-07-10 20:43:14 +02:00
|
|
|
media.frame.trigger( 'edit:attachment', library.findWhere( { id: parseInt( query, 10 ) } ) );
|
2014-07-10 08:37:16 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// Close the modal if set up
|
|
|
|
closeModal: function() {
|
2014-07-10 20:43:14 +02:00
|
|
|
if ( media.frame.modal ) {
|
|
|
|
media.frame.modal.close();
|
2014-07-10 08:37:16 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// Default route: make sure the modal and search are reset
|
|
|
|
defaultRoute: function() {
|
|
|
|
this.closeModal();
|
|
|
|
$( '#media-search-input' ).val( '' ).trigger( 'input' );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-07-04 05:39:15 +02:00
|
|
|
/**
|
|
|
|
* A frame for editing the details of a specific media item.
|
|
|
|
*
|
|
|
|
* Opens in a modal by default.
|
|
|
|
*
|
|
|
|
* Requires an attachment model to be passed in the options hash under `model`.
|
|
|
|
*/
|
2014-07-17 05:55:15 +02:00
|
|
|
media.view.MediaFrame.EditAttachments = media.view.MediaFrame.extend({
|
2014-07-04 05:39:15 +02:00
|
|
|
|
|
|
|
className: 'edit-attachment-frame',
|
|
|
|
template: media.template( 'edit-attachment-frame' ),
|
2014-07-17 05:55:15 +02:00
|
|
|
regions: [ 'title', 'content' ],
|
2014-07-04 05:39:15 +02:00
|
|
|
|
|
|
|
events: {
|
|
|
|
'click': 'collapse',
|
|
|
|
'click .delete-media-item': 'deleteMediaItem',
|
|
|
|
'click .left': 'previousMediaItem',
|
|
|
|
'click .right': 'nextMediaItem'
|
|
|
|
},
|
|
|
|
|
2014-07-04 07:14:15 +02:00
|
|
|
initialize: function() {
|
2014-07-04 05:39:15 +02:00
|
|
|
var self = this;
|
|
|
|
media.view.Frame.prototype.initialize.apply( this, arguments );
|
|
|
|
|
|
|
|
_.defaults( this.options, {
|
|
|
|
modal: true,
|
|
|
|
state: 'edit-attachment'
|
|
|
|
});
|
|
|
|
|
2014-07-10 19:49:15 +02:00
|
|
|
this.gridRouter = this.options.gridRouter;
|
2014-07-10 08:37:16 +02:00
|
|
|
this.library = this.options.library;
|
|
|
|
if ( this.options.model ) {
|
|
|
|
this.model = this.options.model;
|
|
|
|
} else {
|
|
|
|
this.model = this.library.at( 0 );
|
|
|
|
}
|
|
|
|
|
2014-07-04 05:39:15 +02:00
|
|
|
this.createStates();
|
|
|
|
|
|
|
|
this.on( 'content:render:edit-metadata', this.editMetadataContent, this );
|
|
|
|
this.on( 'content:render:edit-image', this.editImageContentUgh, this );
|
2014-07-11 22:55:15 +02:00
|
|
|
this.on( 'close', this.detach );
|
2014-07-17 05:55:15 +02:00
|
|
|
|
|
|
|
// Bind default title creation.
|
|
|
|
this.on( 'title:create:default', this.createTitle, this );
|
|
|
|
this.title.mode('default');
|
2014-07-04 05:39:15 +02:00
|
|
|
|
2014-07-10 20:10:15 +02:00
|
|
|
this.options.hasPrevious = this.hasPrevious();
|
|
|
|
this.options.hasNext = this.hasNext();
|
2014-07-10 05:50:17 +02:00
|
|
|
|
2014-07-04 05:39:15 +02:00
|
|
|
// Initialize modal container view.
|
|
|
|
if ( this.options.modal ) {
|
|
|
|
this.modal = new media.view.Modal({
|
|
|
|
controller: this,
|
|
|
|
title: this.options.title
|
|
|
|
});
|
|
|
|
|
2014-07-11 08:39:14 +02:00
|
|
|
this.modal.on( 'open', function () {
|
|
|
|
$( 'body' ).on( 'keydown.media-modal', _.bind( self.keyEvent, self ) );
|
|
|
|
} );
|
|
|
|
|
2014-07-04 05:39:15 +02:00
|
|
|
// Completely destroy the modal DOM element when closing it.
|
2014-07-11 22:55:15 +02:00
|
|
|
this.modal.on( 'close', function() {
|
2014-07-04 05:39:15 +02:00
|
|
|
self.modal.remove();
|
2014-07-10 08:37:16 +02:00
|
|
|
$( 'body' ).off( 'keydown.media-modal' ); /* remove the keydown event */
|
2014-07-10 19:56:14 +02:00
|
|
|
|
|
|
|
self.resetRoute();
|
2014-07-11 22:55:15 +02:00
|
|
|
} );
|
2014-07-04 05:39:15 +02:00
|
|
|
|
|
|
|
this.modal.content( this );
|
|
|
|
this.modal.open();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add the default states to the frame.
|
|
|
|
*/
|
|
|
|
createStates: function() {
|
2014-07-17 05:55:15 +02:00
|
|
|
var editImageState = new media.controller.EditImage( { model: this.model } );
|
|
|
|
// Noop some methods.
|
|
|
|
editImageState._toolbar = function() {};
|
|
|
|
editImageState._router = function() {};
|
|
|
|
editImageState._menu = function() {};
|
2014-07-04 05:39:15 +02:00
|
|
|
this.states.add([
|
2014-07-17 05:55:15 +02:00
|
|
|
new media.controller.EditAttachmentMetadata( { model: this.model } ),
|
|
|
|
editImageState
|
2014-07-04 05:39:15 +02:00
|
|
|
|
2014-07-17 05:55:15 +02:00
|
|
|
]);
|
2014-07-04 05:39:15 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Content region rendering callback for the `edit-metadata` mode.
|
|
|
|
*/
|
|
|
|
editMetadataContent: function() {
|
|
|
|
var view = new media.view.Attachment.Details.TwoColumn({
|
|
|
|
controller: this,
|
|
|
|
model: this.model
|
|
|
|
});
|
|
|
|
this.content.set( view );
|
2014-07-10 08:37:16 +02:00
|
|
|
// Update browser url when navigating media details
|
2014-07-11 20:50:14 +02:00
|
|
|
if ( this.model ) {
|
|
|
|
this.gridRouter.navigate( this.gridRouter.baseUrl( '?item=' + this.model.id ) );
|
|
|
|
} else {
|
|
|
|
this.resetRoute();
|
|
|
|
}
|
2014-07-04 05:39:15 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* For some reason the view doesn't exist in the DOM yet, don't have the
|
|
|
|
* patience to track this down right now.
|
|
|
|
*/
|
|
|
|
editImageContentUgh: function() {
|
|
|
|
_.defer( _.bind( this.editImageContent, this ) );
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render the EditImage view into the frame's content region.
|
|
|
|
*/
|
|
|
|
editImageContent: function() {
|
|
|
|
var view = new media.view.EditImage( { model: this.model, controller: this } ).render();
|
|
|
|
|
|
|
|
this.content.set( view );
|
|
|
|
|
|
|
|
// after creating the wrapper view, load the actual editor via an ajax call
|
|
|
|
view.loadEditor();
|
|
|
|
},
|
|
|
|
|
2014-07-10 21:39:14 +02:00
|
|
|
resetContent: function() {
|
|
|
|
this.modal.close();
|
|
|
|
wp.media( {
|
|
|
|
frame: 'edit-attachments',
|
|
|
|
gridRouter: this.gridRouter,
|
|
|
|
library: this.library,
|
|
|
|
model: this.model
|
|
|
|
} );
|
|
|
|
},
|
|
|
|
|
2014-07-04 05:39:15 +02:00
|
|
|
/**
|
|
|
|
* Click handler to switch to the previous media item.
|
|
|
|
*/
|
|
|
|
previousMediaItem: function() {
|
2014-07-10 20:10:15 +02:00
|
|
|
if ( ! this.hasPrevious() ) {
|
2014-07-04 05:39:15 +02:00
|
|
|
return;
|
2014-07-10 20:10:15 +02:00
|
|
|
}
|
2014-07-10 21:39:14 +02:00
|
|
|
this.model = this.library.at( this.getCurrentIndex() - 1 );
|
|
|
|
this.resetContent();
|
2014-07-04 05:39:15 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Click handler to switch to the next media item.
|
|
|
|
*/
|
|
|
|
nextMediaItem: function() {
|
2014-07-10 20:10:15 +02:00
|
|
|
if ( ! this.hasNext() ) {
|
2014-07-04 05:39:15 +02:00
|
|
|
return;
|
2014-07-10 20:10:15 +02:00
|
|
|
}
|
2014-07-10 21:39:14 +02:00
|
|
|
this.model = this.library.at( this.getCurrentIndex() + 1 );
|
|
|
|
this.resetContent();
|
2014-07-10 08:37:16 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
getCurrentIndex: function() {
|
|
|
|
return this.library.indexOf( this.model );
|
|
|
|
},
|
|
|
|
|
|
|
|
hasNext: function() {
|
|
|
|
return ( this.getCurrentIndex() + 1 ) < this.library.length;
|
|
|
|
},
|
|
|
|
|
|
|
|
hasPrevious: function() {
|
|
|
|
return ( this.getCurrentIndex() - 1 ) > -1;
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Respond to the keyboard events: right arrow, left arrow, escape.
|
|
|
|
*/
|
|
|
|
keyEvent: function( event ) {
|
|
|
|
var $target = $( event.target );
|
|
|
|
// Pressing the escape key routes back to main url
|
|
|
|
if ( event.keyCode === 27 ) {
|
|
|
|
this.resetRoute();
|
|
|
|
return event;
|
|
|
|
}
|
|
|
|
//Don't go left/right if we are in a textarea or input field
|
|
|
|
if ( $target.is( 'input' ) || $target.is( 'textarea' ) ) {
|
|
|
|
return event;
|
|
|
|
}
|
|
|
|
// The right arrow key
|
|
|
|
if ( event.keyCode === 39 ) {
|
2014-07-10 20:03:15 +02:00
|
|
|
this.nextMediaItem();
|
2014-07-10 08:37:16 +02:00
|
|
|
}
|
|
|
|
// The left arrow key
|
|
|
|
if ( event.keyCode === 37 ) {
|
2014-07-10 20:03:15 +02:00
|
|
|
this.previousMediaItem();
|
2014-07-10 08:37:16 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
resetRoute: function() {
|
2014-07-10 19:49:15 +02:00
|
|
|
this.gridRouter.navigate( this.gridRouter.baseUrl( '' ) );
|
2014-07-04 05:39:15 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-07-17 22:46:14 +02:00
|
|
|
media.view.BulkSelection = media.View.extend({
|
2014-07-17 22:42:15 +02:00
|
|
|
className: 'bulk-select',
|
2014-07-10 05:50:17 +02:00
|
|
|
|
2014-07-17 22:42:15 +02:00
|
|
|
initialize: function() {
|
|
|
|
this.model = new Backbone.Model({
|
2014-07-17 22:46:14 +02:00
|
|
|
currentAction: ''
|
2014-07-10 05:50:17 +02:00
|
|
|
|
2014-07-17 22:42:15 +02:00
|
|
|
});
|
2014-07-10 05:50:17 +02:00
|
|
|
|
2014-07-17 22:42:15 +02:00
|
|
|
this.views.add(
|
|
|
|
new media.view.BulkSelectionActionDropdown({
|
|
|
|
controller: this
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
|
|
|
this.views.add(
|
|
|
|
new media.view.BulkSelectionActionButton({
|
|
|
|
disabled: true,
|
|
|
|
text: l10n.apply,
|
|
|
|
controller: this
|
|
|
|
})
|
|
|
|
);
|
2014-07-10 05:50:17 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-07-17 22:42:15 +02:00
|
|
|
media.view.BulkSelectionActionDropdown = media.View.extend({
|
|
|
|
tagName: 'select',
|
|
|
|
|
2014-07-17 22:46:14 +02:00
|
|
|
initialize: function() {
|
|
|
|
media.view.Button.prototype.initialize.apply( this, arguments );
|
2014-07-17 22:42:15 +02:00
|
|
|
this.listenTo( this.controller.controller.state().get( 'selection' ), 'add remove reset', _.bind( this.enabled, this ) );
|
|
|
|
this.$el.append( $('<option></option>').val( '' ).html( l10n.bulkActions ) )
|
|
|
|
.append( $('<option></option>').val( 'delete' ).html( l10n.deletePermanently ) );
|
|
|
|
this.$el.prop( 'disabled', true );
|
|
|
|
this.$el.on( 'change', _.bind( this.toggleChange, this ) );
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleChange: function() {
|
|
|
|
this.controller.model.set( { 'currentAction': this.$el.val() } );
|
2014-07-17 22:46:14 +02:00
|
|
|
},
|
2014-07-17 22:42:15 +02:00
|
|
|
enabled: function() {
|
|
|
|
var disabled = ! this.controller.controller.state().get('selection').length;
|
|
|
|
this.$el.prop( 'disabled', disabled );
|
2014-07-17 22:46:14 +02:00
|
|
|
}
|
|
|
|
});
|
2014-07-17 22:42:15 +02:00
|
|
|
|
|
|
|
media.view.BulkSelectionActionButton = media.view.Button.extend({
|
|
|
|
tagName: 'button',
|
|
|
|
|
2014-07-10 05:50:17 +02:00
|
|
|
initialize: function() {
|
|
|
|
media.view.Button.prototype.initialize.apply( this, arguments );
|
2014-07-17 22:42:15 +02:00
|
|
|
|
|
|
|
this.listenTo( this.controller.model, 'change', this.enabled, this );
|
|
|
|
this.listenTo( this.controller.controller.state().get( 'selection' ), 'add remove reset', _.bind( this.enabled, this ) );
|
2014-07-10 05:50:17 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
click: function() {
|
2014-07-17 22:42:15 +02:00
|
|
|
var selection = this.controller.controller.state().get('selection');
|
2014-07-10 05:50:17 +02:00
|
|
|
media.view.Button.prototype.click.apply( this, arguments );
|
2014-07-17 22:42:15 +02:00
|
|
|
|
|
|
|
// Currently assumes delete is the only action
|
|
|
|
if ( confirm( l10n.warnBulkDelete ) ) {
|
|
|
|
while ( selection.length > 0) {
|
|
|
|
selection.at(0).destroy();
|
|
|
|
}
|
2014-07-10 05:50:17 +02:00
|
|
|
}
|
2014-07-17 22:42:15 +02:00
|
|
|
|
|
|
|
this.enabled();
|
2014-07-10 05:50:17 +02:00
|
|
|
},
|
|
|
|
|
2014-07-17 22:42:15 +02:00
|
|
|
enabled: function() {
|
|
|
|
var currentAction = this.controller.model.get( 'currentAction' ),
|
|
|
|
selection = this.controller.controller.state().get('selection'),
|
|
|
|
disabled = ! currentAction || ! selection.length;
|
|
|
|
this.$el.prop( 'disabled', disabled );
|
2014-07-10 05:50:17 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-07-13 18:16:15 +02:00
|
|
|
}(jQuery, _, Backbone, wp));
|