2014-07-13 18:16:15 +02:00
|
|
|
/* global _wpMediaViewsL10n, MediaElementPlayer, _wpMediaGridSettings */
|
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
|
|
|
/**
|
|
|
|
* A state for editing (cropping, etc.) an image.
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @augments wp.media.controller.State
|
|
|
|
* @augments Backbone.Model
|
|
|
|
*/
|
2014-07-10 18:02:15 +02:00
|
|
|
media.controller.EditImageNoFrame = media.controller.State.extend({
|
2014-07-04 05:39:15 +02:00
|
|
|
defaults: {
|
|
|
|
id: 'edit-attachment',
|
|
|
|
title: l10n.editImage,
|
|
|
|
// Region mode defaults.
|
|
|
|
menu: false,
|
|
|
|
router: 'edit-metadata',
|
|
|
|
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() {
|
|
|
|
this._content();
|
|
|
|
this._router();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
_router: function() {
|
|
|
|
var router = this.frame.router,
|
|
|
|
mode = this.get('router'),
|
|
|
|
view;
|
|
|
|
|
|
|
|
this.frame.$el.toggleClass( 'hide-router', ! mode );
|
|
|
|
if ( ! mode ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.frame.router.render( mode );
|
|
|
|
|
|
|
|
view = router.get();
|
|
|
|
if ( view && view.select ) {
|
|
|
|
view.select( this.frame.content.mode() );
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_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-10 05:50:17 +02:00
|
|
|
var options = this.options,
|
|
|
|
libraryState;
|
2014-07-04 04:18:14 +02:00
|
|
|
|
|
|
|
if ( this.options.states ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-10 05:50:17 +02:00
|
|
|
libraryState = new media.controller.Library({
|
|
|
|
library: media.query( options.library ),
|
|
|
|
multiple: options.multiple,
|
|
|
|
title: options.title,
|
|
|
|
priority: 20,
|
|
|
|
toolbar: false,
|
|
|
|
router: false,
|
|
|
|
content: 'browse',
|
|
|
|
filterable: 'mime-types'
|
|
|
|
});
|
|
|
|
|
2014-07-04 04:18:14 +02:00
|
|
|
// Add the default states.
|
|
|
|
this.states.add([
|
2014-07-10 05:50:17 +02:00
|
|
|
libraryState
|
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'),
|
|
|
|
bulkEdit: true,
|
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' ),
|
|
|
|
|
|
|
|
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 );
|
|
|
|
},
|
|
|
|
|
|
|
|
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-10 21:39:14 +02:00
|
|
|
media.view.MediaFrame.EditAttachments = media.view.Frame.extend({
|
2014-07-04 05:39:15 +02:00
|
|
|
|
|
|
|
className: 'edit-attachment-frame',
|
|
|
|
template: media.template( 'edit-attachment-frame' ),
|
|
|
|
regions: [ 'router', 'content' ],
|
|
|
|
|
|
|
|
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-14 22:09:14 +02:00
|
|
|
this.on( 'router:create', this.createRouter, this );
|
|
|
|
this.on( 'router:render', this.browseRouter, this );
|
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() {
|
|
|
|
this.states.add([
|
|
|
|
new media.controller.EditImageNoFrame( { model: this.model } )
|
|
|
|
]);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @returns {wp.media.view.MediaFrame} Returns itself to allow chaining
|
|
|
|
*/
|
|
|
|
render: function() {
|
|
|
|
// Activate the default state if no active state exists.
|
|
|
|
if ( ! this.state() && this.options.state ) {
|
|
|
|
this.setState( this.options.state );
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* call 'render' directly on the parent class
|
|
|
|
*/
|
|
|
|
return media.view.Frame.prototype.render.apply( this, arguments );
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create the router view.
|
|
|
|
*
|
|
|
|
* @param {Object} router
|
|
|
|
* @this wp.media.controller.Region
|
|
|
|
*/
|
|
|
|
createRouter: function( router ) {
|
|
|
|
router.view = new media.view.Router({
|
|
|
|
controller: this
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Router rendering callback.
|
|
|
|
*
|
|
|
|
* @param media.view.Router view Instantiated in this.createRouter()
|
|
|
|
*/
|
|
|
|
browseRouter: function( view ) {
|
|
|
|
view.set({
|
|
|
|
'edit-metadata': {
|
2014-07-13 18:16:15 +02:00
|
|
|
text: l10n.editMetadata,
|
2014-07-04 05:39:15 +02:00
|
|
|
priority: 20
|
2014-07-13 18:16:15 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Only need a tab to Edit Image for images.
|
|
|
|
if ( 'undefined' !== typeof this.model && this.model.get( 'type' ) === 'image' ) {
|
|
|
|
view.set({
|
2014-07-14 22:09:14 +02:00
|
|
|
'edit-image': {
|
2014-07-13 18:16:15 +02:00
|
|
|
text: l10n.editImage,
|
2014-07-14 22:09:14 +02:00
|
|
|
priority: 40
|
|
|
|
}
|
|
|
|
});
|
2014-07-13 18:16:15 +02:00
|
|
|
}
|
2014-07-04 05:39:15 +02:00
|
|
|
},
|
|
|
|
|
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-10 05:50:17 +02:00
|
|
|
media.view.BulkSelectionToggleButton = media.view.Button.extend({
|
|
|
|
initialize: function() {
|
|
|
|
media.view.Button.prototype.initialize.apply( this, arguments );
|
|
|
|
this.listenTo( this.controller, 'bulk-edit:activate bulk-edit:deactivate', _.bind( this.toggleBulkEditHandler, this ) );
|
|
|
|
},
|
|
|
|
|
|
|
|
click: function() {
|
|
|
|
var bulkEditActive = this.controller.activeModes.where( { id: 'bulk-edit' } ).length;
|
|
|
|
media.view.Button.prototype.click.apply( this, arguments );
|
|
|
|
|
|
|
|
if ( bulkEditActive ) {
|
2014-07-11 01:03:14 +02:00
|
|
|
this.controller.deactivateMode( 'bulk-edit' ).activateMode( 'edit' );
|
2014-07-10 05:50:17 +02:00
|
|
|
} else {
|
2014-07-11 01:03:14 +02:00
|
|
|
this.controller.deactivateMode( 'edit' ).activateMode( 'bulk-edit' );
|
2014-07-10 05:50:17 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
toggleBulkEditHandler: function() {
|
|
|
|
var bulkEditActive = this.controller.activeModes.where( { id: 'bulk-edit' } ).length;
|
|
|
|
if ( bulkEditActive ) {
|
|
|
|
this.$el.addClass( 'button-primary' );
|
|
|
|
} else {
|
|
|
|
this.$el.removeClass( 'button-primary' );
|
|
|
|
this.controller.state().get('selection').reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
media.view.BulkDeleteButton = media.view.Button.extend({
|
|
|
|
initialize: function() {
|
|
|
|
media.view.Button.prototype.initialize.apply( this, arguments );
|
|
|
|
this.$el.hide();
|
|
|
|
this.listenTo( this.controller, 'bulk-edit:activate bulk-edit:deactivate', _.bind( this.visibility, this ) );
|
|
|
|
},
|
|
|
|
|
|
|
|
click: function() {
|
|
|
|
media.view.Button.prototype.click.apply( this, arguments );
|
|
|
|
while (this.controller.state().get('selection').length > 0) {
|
|
|
|
this.controller.state().get('selection').at(0).destroy();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
visibility: function() {
|
|
|
|
var bulkEditActive = this.controller.activeModes.where( { id: 'bulk-edit' } ).length;
|
|
|
|
if ( bulkEditActive ) {
|
|
|
|
this.$el.show();
|
|
|
|
} else {
|
|
|
|
this.$el.hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-07-13 18:16:15 +02:00
|
|
|
}(jQuery, _, Backbone, wp));
|