diff --git a/wp-includes/js/media/controllers/edit-attachment-metadata.js b/wp-includes/js/media/controllers/edit-attachment-metadata.js index ac5c8eb68c..f2d2aa1c32 100644 --- a/wp-includes/js/media/controllers/edit-attachment-metadata.js +++ b/wp-includes/js/media/controllers/edit-attachment-metadata.js @@ -9,7 +9,7 @@ * @augments wp.media.controller.State * @augments Backbone.Model */ -var State = require( './state.js' ), +var State = wp.media.controller.State, l10n = wp.media.view.l10n, EditAttachmentMetadata; diff --git a/wp-includes/js/media/grid.js b/wp-includes/js/media/grid.js index 15dbaea357..51c33abeab 100644 --- a/wp-includes/js/media/grid.js +++ b/wp-includes/js/media/grid.js @@ -10,7 +10,7 @@ * @augments wp.media.controller.State * @augments Backbone.Model */ -var State = require( './state.js' ), +var State = wp.media.controller.State, l10n = wp.media.view.l10n, EditAttachmentMetadata; @@ -29,913 +29,7 @@ EditAttachmentMetadata = State.extend({ module.exports = EditAttachmentMetadata; -},{"./state.js":6}],2:[function(require,module,exports){ -/*globals wp */ - -/** - * wp.media.controller.EditImage - * - * A state for editing (cropping, etc.) an image. - * - * @class - * @augments wp.media.controller.State - * @augments Backbone.Model - * - * @param {object} attributes The attributes hash passed to the state. - * @param {wp.media.model.Attachment} attributes.model The attachment. - * @param {string} [attributes.id=edit-image] Unique identifier. - * @param {string} [attributes.title=Edit Image] Title for the state. Displays in the media menu and the frame's title region. - * @param {string} [attributes.content=edit-image] Initial mode for the content region. - * @param {string} [attributes.toolbar=edit-image] Initial mode for the toolbar region. - * @param {string} [attributes.menu=false] Initial mode for the menu region. - * @param {string} [attributes.url] Unused. @todo Consider removal. - */ -var State = require( './state.js' ), - ToolbarView = require( '../views/toolbar.js' ), - l10n = wp.media.view.l10n, - EditImage; - -EditImage = State.extend({ - defaults: { - id: 'edit-image', - title: l10n.editImage, - menu: false, - toolbar: 'edit-image', - content: 'edit-image', - url: '' - }, - - /** - * @since 3.9.0 - */ - activate: function() { - this.listenTo( this.frame, 'toolbar:render:edit-image', this.toolbar ); - }, - - /** - * @since 3.9.0 - */ - deactivate: function() { - this.stopListening( this.frame ); - }, - - /** - * @since 3.9.0 - */ - toolbar: function() { - var frame = this.frame, - lastState = frame.lastState(), - previous = lastState && lastState.id; - - frame.toolbar.set( new ToolbarView({ - controller: frame, - items: { - back: { - style: 'primary', - text: l10n.back, - priority: 20, - click: function() { - if ( previous ) { - frame.setState( previous ); - } else { - frame.close(); - } - } - } - } - }) ); - } -}); - -module.exports = EditImage; - -},{"../views/toolbar.js":44,"./state.js":6}],3:[function(require,module,exports){ -/*globals wp, _, Backbone */ - -/** - * wp.media.controller.Library - * - * A state for choosing an attachment or group of attachments from the media library. - * - * @class - * @augments wp.media.controller.State - * @augments Backbone.Model - * @mixes media.selectionSync - * - * @param {object} [attributes] The attributes hash passed to the state. - * @param {string} [attributes.id=library] Unique identifier. - * @param {string} [attributes.title=Media library] Title for the state. Displays in the media menu and the frame's title region. - * @param {wp.media.model.Attachments} [attributes.library] The attachments collection to browse. - * If one is not supplied, a collection of all attachments will be created. - * @param {wp.media.model.Selection|object} [attributes.selection] A collection to contain attachment selections within the state. - * If the 'selection' attribute is a plain JS object, - * a Selection will be created using its values as the selection instance's `props` model. - * Otherwise, it will copy the library's `props` model. - * @param {boolean} [attributes.multiple=false] Whether multi-select is enabled. - * @param {string} [attributes.content=upload] Initial mode for the content region. - * Overridden by persistent user setting if 'contentUserSetting' is true. - * @param {string} [attributes.menu=default] Initial mode for the menu region. - * @param {string} [attributes.router=browse] Initial mode for the router region. - * @param {string} [attributes.toolbar=select] Initial mode for the toolbar region. - * @param {boolean} [attributes.searchable=true] Whether the library is searchable. - * @param {boolean|string} [attributes.filterable=false] Whether the library is filterable, and if so what filters should be shown. - * Accepts 'all', 'uploaded', or 'unattached'. - * @param {boolean} [attributes.sortable=true] Whether the Attachments should be sortable. Depends on the orderby property being set to menuOrder on the attachments collection. - * @param {boolean} [attributes.autoSelect=true] Whether an uploaded attachment should be automatically added to the selection. - * @param {boolean} [attributes.describe=false] Whether to offer UI to describe attachments - e.g. captioning images in a gallery. - * @param {boolean} [attributes.contentUserSetting=true] Whether the content region's mode should be set and persisted per user. - * @param {boolean} [attributes.syncSelection=true] Whether the Attachments selection should be persisted from the last state. - */ -var selectionSync = require( '../utils/selection-sync.js' ), - State = require( './state.js' ), - l10n = wp.media.view.l10n, - getUserSetting = window.getUserSetting, - setUserSetting = window.setUserSetting, - Library; - -Library = State.extend({ - defaults: { - id: 'library', - title: l10n.mediaLibraryTitle, - multiple: false, - content: 'upload', - menu: 'default', - router: 'browse', - toolbar: 'select', - searchable: true, - filterable: false, - sortable: true, - autoSelect: true, - describe: false, - contentUserSetting: true, - syncSelection: true - }, - - /** - * If a library isn't provided, query all media items. - * If a selection instance isn't provided, create one. - * - * @since 3.5.0 - */ - initialize: function() { - var selection = this.get('selection'), - props; - - if ( ! this.get('library') ) { - this.set( 'library', wp.media.query() ); - } - - if ( ! ( selection instanceof wp.media.model.Selection ) ) { - props = selection; - - if ( ! props ) { - props = this.get('library').props.toJSON(); - props = _.omit( props, 'orderby', 'query' ); - } - - this.set( 'selection', new wp.media.model.Selection( null, { - multiple: this.get('multiple'), - props: props - }) ); - } - - this.resetDisplays(); - }, - - /** - * @since 3.5.0 - */ - activate: function() { - this.syncSelection(); - - wp.Uploader.queue.on( 'add', this.uploading, this ); - - this.get('selection').on( 'add remove reset', this.refreshContent, this ); - - if ( this.get( 'router' ) && this.get('contentUserSetting') ) { - this.frame.on( 'content:activate', this.saveContentMode, this ); - this.set( 'content', getUserSetting( 'libraryContent', this.get('content') ) ); - } - }, - - /** - * @since 3.5.0 - */ - deactivate: function() { - this.recordSelection(); - - this.frame.off( 'content:activate', this.saveContentMode, this ); - - // Unbind all event handlers that use this state as the context - // from the selection. - this.get('selection').off( null, null, this ); - - wp.Uploader.queue.off( null, null, this ); - }, - - /** - * Reset the library to its initial state. - * - * @since 3.5.0 - */ - reset: function() { - this.get('selection').reset(); - this.resetDisplays(); - this.refreshContent(); - }, - - /** - * Reset the attachment display settings defaults to the site options. - * - * If site options don't define them, fall back to a persistent user setting. - * - * @since 3.5.0 - */ - resetDisplays: function() { - var defaultProps = wp.media.view.settings.defaultProps; - this._displays = []; - this._defaultDisplaySettings = { - align: defaultProps.align || getUserSetting( 'align', 'none' ), - size: defaultProps.size || getUserSetting( 'imgsize', 'medium' ), - link: defaultProps.link || getUserSetting( 'urlbutton', 'file' ) - }; - }, - - /** - * Create a model to represent display settings (alignment, etc.) for an attachment. - * - * @since 3.5.0 - * - * @param {wp.media.model.Attachment} attachment - * @returns {Backbone.Model} - */ - display: function( attachment ) { - var displays = this._displays; - - if ( ! displays[ attachment.cid ] ) { - displays[ attachment.cid ] = new Backbone.Model( this.defaultDisplaySettings( attachment ) ); - } - return displays[ attachment.cid ]; - }, - - /** - * Given an attachment, create attachment display settings properties. - * - * @since 3.6.0 - * - * @param {wp.media.model.Attachment} attachment - * @returns {Object} - */ - defaultDisplaySettings: function( attachment ) { - var settings = this._defaultDisplaySettings; - if ( settings.canEmbed = this.canEmbed( attachment ) ) { - settings.link = 'embed'; - } - return settings; - }, - - /** - * Whether an attachment can be embedded (audio or video). - * - * @since 3.6.0 - * - * @param {wp.media.model.Attachment} attachment - * @returns {Boolean} - */ - canEmbed: function( attachment ) { - // If uploading, we know the filename but not the mime type. - if ( ! attachment.get('uploading') ) { - var type = attachment.get('type'); - if ( type !== 'audio' && type !== 'video' ) { - return false; - } - } - - return _.contains( wp.media.view.settings.embedExts, attachment.get('filename').split('.').pop() ); - }, - - - /** - * If the state is active, no items are selected, and the current - * content mode is not an option in the state's router (provided - * the state has a router), reset the content mode to the default. - * - * @since 3.5.0 - */ - refreshContent: function() { - var selection = this.get('selection'), - frame = this.frame, - router = frame.router.get(), - mode = frame.content.mode(); - - if ( this.active && ! selection.length && router && ! router.get( mode ) ) { - this.frame.content.render( this.get('content') ); - } - }, - - /** - * Callback handler when an attachment is uploaded. - * - * Switch to the Media Library if uploaded from the 'Upload Files' tab. - * - * Adds any uploading attachments to the selection. - * - * If the state only supports one attachment to be selected and multiple - * attachments are uploaded, the last attachment in the upload queue will - * be selected. - * - * @since 3.5.0 - * - * @param {wp.media.model.Attachment} attachment - */ - uploading: function( attachment ) { - var content = this.frame.content; - - if ( 'upload' === content.mode() ) { - this.frame.content.mode('browse'); - } - - if ( this.get( 'autoSelect' ) ) { - this.get('selection').add( attachment ); - this.frame.trigger( 'library:selection:add' ); - } - }, - - /** - * Persist the mode of the content region as a user setting. - * - * @since 3.5.0 - */ - saveContentMode: function() { - if ( 'browse' !== this.get('router') ) { - return; - } - - var mode = this.frame.content.mode(), - view = this.frame.router.get(); - - if ( view && view.get( mode ) ) { - setUserSetting( 'libraryContent', mode ); - } - } -}); - -// Make selectionSync available on any Media Library state. -_.extend( Library.prototype, selectionSync ); - -module.exports = Library; - -},{"../utils/selection-sync.js":9,"./state.js":6}],4:[function(require,module,exports){ -/*globals Backbone, _ */ - -/** - * wp.media.controller.Region - * - * A region is a persistent application layout area. - * - * A region assumes one mode at any time, and can be switched to another. - * - * When mode changes, events are triggered on the region's parent view. - * The parent view will listen to specific events and fill the region with an - * appropriate view depending on mode. For example, a frame listens for the - * 'browse' mode t be activated on the 'content' view and then fills the region - * with an AttachmentsBrowser view. - * - * @class - * - * @param {object} options Options hash for the region. - * @param {string} options.id Unique identifier for the region. - * @param {Backbone.View} options.view A parent view the region exists within. - * @param {string} options.selector jQuery selector for the region within the parent view. - */ -var Region = function( options ) { - _.extend( this, _.pick( options || {}, 'id', 'view', 'selector' ) ); -}; - -// Use Backbone's self-propagating `extend` inheritance method. -Region.extend = Backbone.Model.extend; - -_.extend( Region.prototype, { - /** - * Activate a mode. - * - * @since 3.5.0 - * - * @param {string} mode - * - * @fires this.view#{this.id}:activate:{this._mode} - * @fires this.view#{this.id}:activate - * @fires this.view#{this.id}:deactivate:{this._mode} - * @fires this.view#{this.id}:deactivate - * - * @returns {wp.media.controller.Region} Returns itself to allow chaining. - */ - mode: function( mode ) { - if ( ! mode ) { - return this._mode; - } - // Bail if we're trying to change to the current mode. - if ( mode === this._mode ) { - return this; - } - - /** - * Region mode deactivation event. - * - * @event this.view#{this.id}:deactivate:{this._mode} - * @event this.view#{this.id}:deactivate - */ - this.trigger('deactivate'); - - this._mode = mode; - this.render( mode ); - - /** - * Region mode activation event. - * - * @event this.view#{this.id}:activate:{this._mode} - * @event this.view#{this.id}:activate - */ - this.trigger('activate'); - return this; - }, - /** - * Render a mode. - * - * @since 3.5.0 - * - * @param {string} mode - * - * @fires this.view#{this.id}:create:{this._mode} - * @fires this.view#{this.id}:create - * @fires this.view#{this.id}:render:{this._mode} - * @fires this.view#{this.id}:render - * - * @returns {wp.media.controller.Region} Returns itself to allow chaining - */ - render: function( mode ) { - // If the mode isn't active, activate it. - if ( mode && mode !== this._mode ) { - return this.mode( mode ); - } - - var set = { view: null }, - view; - - /** - * Create region view event. - * - * Region view creation takes place in an event callback on the frame. - * - * @event this.view#{this.id}:create:{this._mode} - * @event this.view#{this.id}:create - */ - this.trigger( 'create', set ); - view = set.view; - - /** - * Render region view event. - * - * Region view creation takes place in an event callback on the frame. - * - * @event this.view#{this.id}:create:{this._mode} - * @event this.view#{this.id}:create - */ - this.trigger( 'render', view ); - if ( view ) { - this.set( view ); - } - return this; - }, - - /** - * Get the region's view. - * - * @since 3.5.0 - * - * @returns {wp.media.View} - */ - get: function() { - return this.view.views.first( this.selector ); - }, - - /** - * Set the region's view as a subview of the frame. - * - * @since 3.5.0 - * - * @param {Array|Object} views - * @param {Object} [options={}] - * @returns {wp.Backbone.Subviews} Subviews is returned to allow chaining - */ - set: function( views, options ) { - if ( options ) { - options.add = false; - } - return this.view.views.set( this.selector, views, options ); - }, - - /** - * Trigger regional view events on the frame. - * - * @since 3.5.0 - * - * @param {string} event - * @returns {undefined|wp.media.controller.Region} Returns itself to allow chaining. - */ - trigger: function( event ) { - var base, args; - - if ( ! this._mode ) { - return; - } - - args = _.toArray( arguments ); - base = this.id + ':' + event; - - // Trigger `{this.id}:{event}:{this._mode}` event on the frame. - args[0] = base + ':' + this._mode; - this.view.trigger.apply( this.view, args ); - - // Trigger `{this.id}:{event}` event on the frame. - args[0] = base; - this.view.trigger.apply( this.view, args ); - return this; - } -}); - -module.exports = Region; - -},{}],5:[function(require,module,exports){ -/*globals _, Backbone */ - -/** - * wp.media.controller.StateMachine - * - * A state machine keeps track of state. It is in one state at a time, - * and can change from one state to another. - * - * States are stored as models in a Backbone collection. - * - * @since 3.5.0 - * - * @class - * @augments Backbone.Model - * @mixin - * @mixes Backbone.Events - * - * @param {Array} states - */ -var StateMachine = function( states ) { - // @todo This is dead code. The states collection gets created in media.view.Frame._createStates. - this.states = new Backbone.Collection( states ); -}; - -// Use Backbone's self-propagating `extend` inheritance method. -StateMachine.extend = Backbone.Model.extend; - -_.extend( StateMachine.prototype, Backbone.Events, { - /** - * Fetch a state. - * - * If no `id` is provided, returns the active state. - * - * Implicitly creates states. - * - * Ensure that the `states` collection exists so the `StateMachine` - * can be used as a mixin. - * - * @since 3.5.0 - * - * @param {string} id - * @returns {wp.media.controller.State} Returns a State model - * from the StateMachine collection - */ - state: function( id ) { - this.states = this.states || new Backbone.Collection(); - - // Default to the active state. - id = id || this._state; - - if ( id && ! this.states.get( id ) ) { - this.states.add({ id: id }); - } - return this.states.get( id ); - }, - - /** - * Sets the active state. - * - * Bail if we're trying to select the current state, if we haven't - * created the `states` collection, or are trying to select a state - * that does not exist. - * - * @since 3.5.0 - * - * @param {string} id - * - * @fires wp.media.controller.State#deactivate - * @fires wp.media.controller.State#activate - * - * @returns {wp.media.controller.StateMachine} Returns itself to allow chaining - */ - setState: function( id ) { - var previous = this.state(); - - if ( ( previous && id === previous.id ) || ! this.states || ! this.states.get( id ) ) { - return this; - } - - if ( previous ) { - previous.trigger('deactivate'); - this._lastState = previous.id; - } - - this._state = id; - this.state().trigger('activate'); - - return this; - }, - - /** - * Returns the previous active state. - * - * Call the `state()` method with no parameters to retrieve the current - * active state. - * - * @since 3.5.0 - * - * @returns {wp.media.controller.State} Returns a State model - * from the StateMachine collection - */ - lastState: function() { - if ( this._lastState ) { - return this.state( this._lastState ); - } - } -}); - -// Map all event binding and triggering on a StateMachine to its `states` collection. -_.each([ 'on', 'off', 'trigger' ], function( method ) { - /** - * @returns {wp.media.controller.StateMachine} Returns itself to allow chaining. - */ - StateMachine.prototype[ method ] = function() { - // Ensure that the `states` collection exists so the `StateMachine` - // can be used as a mixin. - this.states = this.states || new Backbone.Collection(); - // Forward the method to the `states` collection. - this.states[ method ].apply( this.states, arguments ); - return this; - }; -}); - -module.exports = StateMachine; - -},{}],6:[function(require,module,exports){ -/*globals _, Backbone */ - -/** - * wp.media.controller.State - * - * A state is a step in a workflow that when set will trigger the controllers - * for the regions to be updated as specified in the frame. - * - * A state has an event-driven lifecycle: - * - * 'ready' triggers when a state is added to a state machine's collection. - * 'activate' triggers when a state is activated by a state machine. - * 'deactivate' triggers when a state is deactivated by a state machine. - * 'reset' is not triggered automatically. It should be invoked by the - * proper controller to reset the state to its default. - * - * @class - * @augments Backbone.Model - */ -var State = Backbone.Model.extend({ - /** - * Constructor. - * - * @since 3.5.0 - */ - constructor: function() { - this.on( 'activate', this._preActivate, this ); - this.on( 'activate', this.activate, this ); - this.on( 'activate', this._postActivate, this ); - this.on( 'deactivate', this._deactivate, this ); - this.on( 'deactivate', this.deactivate, this ); - this.on( 'reset', this.reset, this ); - this.on( 'ready', this._ready, this ); - this.on( 'ready', this.ready, this ); - /** - * Call parent constructor with passed arguments - */ - Backbone.Model.apply( this, arguments ); - this.on( 'change:menu', this._updateMenu, this ); - }, - /** - * Ready event callback. - * - * @abstract - * @since 3.5.0 - */ - ready: function() {}, - - /** - * Activate event callback. - * - * @abstract - * @since 3.5.0 - */ - activate: function() {}, - - /** - * Deactivate event callback. - * - * @abstract - * @since 3.5.0 - */ - deactivate: function() {}, - - /** - * Reset event callback. - * - * @abstract - * @since 3.5.0 - */ - reset: function() {}, - - /** - * @access private - * @since 3.5.0 - */ - _ready: function() { - this._updateMenu(); - }, - - /** - * @access private - * @since 3.5.0 - */ - _preActivate: function() { - this.active = true; - }, - - /** - * @access private - * @since 3.5.0 - */ - _postActivate: function() { - this.on( 'change:menu', this._menu, this ); - this.on( 'change:titleMode', this._title, this ); - this.on( 'change:content', this._content, this ); - this.on( 'change:toolbar', this._toolbar, this ); - - this.frame.on( 'title:render:default', this._renderTitle, this ); - - this._title(); - this._menu(); - this._toolbar(); - this._content(); - this._router(); - }, - - /** - * @access private - * @since 3.5.0 - */ - _deactivate: function() { - this.active = false; - - this.frame.off( 'title:render:default', this._renderTitle, this ); - - this.off( 'change:menu', this._menu, this ); - this.off( 'change:titleMode', this._title, this ); - this.off( 'change:content', this._content, this ); - this.off( 'change:toolbar', this._toolbar, this ); - }, - - /** - * @access private - * @since 3.5.0 - */ - _title: function() { - this.frame.title.render( this.get('titleMode') || 'default' ); - }, - - /** - * @access private - * @since 3.5.0 - */ - _renderTitle: function( view ) { - view.$el.text( this.get('title') || '' ); - }, - - /** - * @access private - * @since 3.5.0 - */ - _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() ); - } - }, - - /** - * @access private - * @since 3.5.0 - */ - _menu: function() { - var menu = this.frame.menu, - mode = this.get('menu'), - view; - - this.frame.$el.toggleClass( 'hide-menu', ! mode ); - if ( ! mode ) { - return; - } - - menu.mode( mode ); - - view = menu.get(); - if ( view && view.select ) { - view.select( this.id ); - } - }, - - /** - * @access private - * @since 3.5.0 - */ - _updateMenu: function() { - var previous = this.previous('menu'), - menu = this.get('menu'); - - if ( previous ) { - this.frame.off( 'menu:render:' + previous, this._renderMenu, this ); - } - - if ( menu ) { - this.frame.on( 'menu:render:' + menu, this._renderMenu, this ); - } - }, - - /** - * Create a view in the media menu for the state. - * - * @access private - * @since 3.5.0 - * - * @param {media.view.Menu} view The menu view. - */ - _renderMenu: function( view ) { - var menuItem = this.get('menuItem'), - title = this.get('title'), - priority = this.get('priority'); - - if ( ! menuItem && title ) { - menuItem = { text: title }; - - if ( priority ) { - menuItem.priority = priority; - } - } - - if ( ! menuItem ) { - return; - } - - view.set( this.id, menuItem ); - } -}); - -_.each(['toolbar','content'], function( region ) { - /** - * @access private - */ - State.prototype[ '_' + region ] = function() { - var mode = this.get( region ); - if ( mode ) { - this.frame[ region ].render( mode ); - } - }; -}); - -module.exports = State; - -},{}],7:[function(require,module,exports){ +},{}],2:[function(require,module,exports){ /*globals wp */ var media = wp.media; @@ -950,7 +44,7 @@ media.view.SelectModeToggleButton = require( './views/button/select-mode-toggle. media.view.DeleteSelectedButton = require( './views/button/delete-selected.js' ); media.view.DeleteSelectedPermanentlyButton = require( './views/button/delete-selected-permanently.js' ); -},{"./controllers/edit-attachment-metadata.js":1,"./routers/manage.js":8,"./views/attachment/details-two-column.js":16,"./views/button/delete-selected-permanently.js":22,"./views/button/delete-selected.js":23,"./views/button/select-mode-toggle.js":24,"./views/edit-image-details.js":25,"./views/frame/edit-attachments.js":28,"./views/frame/manage.js":29}],8:[function(require,module,exports){ +},{"./controllers/edit-attachment-metadata.js":1,"./routers/manage.js":3,"./views/attachment/details-two-column.js":4,"./views/button/delete-selected-permanently.js":5,"./views/button/delete-selected.js":6,"./views/button/select-mode-toggle.js":7,"./views/edit-image-details.js":8,"./views/frame/edit-attachments.js":9,"./views/frame/manage.js":10}],3:[function(require,module,exports){ /*globals wp, Backbone */ /** @@ -1000,997 +94,7 @@ var Router = Backbone.Router.extend({ module.exports = Router; -},{}],9:[function(require,module,exports){ -/*globals _ */ - -/** - * wp.media.selectionSync - * - * Sync an attachments selection in a state with another state. - * - * Allows for selecting multiple images in the Insert Media workflow, and then - * switching to the Insert Gallery workflow while preserving the attachments selection. - * - * @mixin - */ -var selectionSync = { - /** - * @since 3.5.0 - */ - syncSelection: function() { - var selection = this.get('selection'), - manager = this.frame._selection; - - if ( ! this.get('syncSelection') || ! manager || ! selection ) { - return; - } - - // If the selection supports multiple items, validate the stored - // attachments based on the new selection's conditions. Record - // the attachments that are not included; we'll maintain a - // reference to those. Other attachments are considered in flux. - if ( selection.multiple ) { - selection.reset( [], { silent: true }); - selection.validateAll( manager.attachments ); - manager.difference = _.difference( manager.attachments.models, selection.models ); - } - - // Sync the selection's single item with the master. - selection.single( manager.single ); - }, - - /** - * Record the currently active attachments, which is a combination - * of the selection's attachments and the set of selected - * attachments that this specific selection considered invalid. - * Reset the difference and record the single attachment. - * - * @since 3.5.0 - */ - recordSelection: function() { - var selection = this.get('selection'), - manager = this.frame._selection; - - if ( ! this.get('syncSelection') || ! manager || ! selection ) { - return; - } - - if ( selection.multiple ) { - manager.attachments.reset( selection.toArray().concat( manager.difference ) ); - manager.difference = []; - } else { - manager.attachments.add( selection.toArray() ); - } - - manager.single = selection._single; - } -}; - -module.exports = selectionSync; - -},{}],10:[function(require,module,exports){ -/*globals _ */ - -/** - * wp.media.view.AttachmentCompat - * - * A view to display fields added via the `attachment_fields_to_edit` filter. - * - * @class - * @augments wp.media.View - * @augments wp.Backbone.View - * @augments Backbone.View - */ -var View = require( './view.js' ), - AttachmentCompat; - -AttachmentCompat = View.extend({ - tagName: 'form', - className: 'compat-item', - - events: { - 'submit': 'preventDefault', - 'change input': 'save', - 'change select': 'save', - 'change textarea': 'save' - }, - - initialize: function() { - this.listenTo( this.model, 'change:compat', this.render ); - }, - /** - * @returns {wp.media.view.AttachmentCompat} Returns itself to allow chaining - */ - dispose: function() { - if ( this.$(':focus').length ) { - this.save(); - } - /** - * call 'dispose' directly on the parent class - */ - return View.prototype.dispose.apply( this, arguments ); - }, - /** - * @returns {wp.media.view.AttachmentCompat} Returns itself to allow chaining - */ - render: function() { - var compat = this.model.get('compat'); - if ( ! compat || ! compat.item ) { - return; - } - - this.views.detach(); - this.$el.html( compat.item ); - this.views.render(); - return this; - }, - /** - * @param {Object} event - */ - preventDefault: function( event ) { - event.preventDefault(); - }, - /** - * @param {Object} event - */ - save: function( event ) { - var data = {}; - - if ( event ) { - event.preventDefault(); - } - - _.each( this.$el.serializeArray(), function( pair ) { - data[ pair.name ] = pair.value; - }); - - this.controller.trigger( 'attachment:compat:waiting', ['waiting'] ); - this.model.saveCompat( data ).always( _.bind( this.postSave, this ) ); - }, - - postSave: function() { - this.controller.trigger( 'attachment:compat:ready', ['ready'] ); - } -}); - -module.exports = AttachmentCompat; - -},{"./view.js":49}],11:[function(require,module,exports){ -/*globals _, jQuery */ - -/** - * wp.media.view.AttachmentFilters - * - * @class - * @augments wp.media.View - * @augments wp.Backbone.View - * @augments Backbone.View - */ -var View = require( './view.js' ), - $ = jQuery, - AttachmentFilters; - -AttachmentFilters = View.extend({ - tagName: 'select', - className: 'attachment-filters', - id: 'media-attachment-filters', - - events: { - change: 'change' - }, - - keys: [], - - initialize: function() { - this.createFilters(); - _.extend( this.filters, this.options.filters ); - - // Build `' ).val( value ).html( filter.text )[0], - priority: filter.priority || 50 - }; - }, this ).sortBy('priority').pluck('el').value() ); - - this.listenTo( this.model, 'change', this.select ); - this.select(); - }, - - /** - * @abstract - */ - createFilters: function() { - this.filters = {}; - }, - - /** - * When the selected filter changes, update the Attachment Query properties to match. - */ - change: function() { - var filter = this.filters[ this.el.value ]; - if ( filter ) { - this.model.set( filter.props ); - } - }, - - select: function() { - var model = this.model, - value = 'all', - props = model.toJSON(); - - _.find( this.filters, function( filter, id ) { - var equal = _.all( filter.props, function( prop, key ) { - return prop === ( _.isUndefined( props[ key ] ) ? null : props[ key ] ); - }); - - if ( equal ) { - return value = id; - } - }); - - this.$el.val( value ); - } -}); - -module.exports = AttachmentFilters; - -},{"./view.js":49}],12:[function(require,module,exports){ -/*globals wp */ - -/** - * wp.media.view.AttachmentFilters.All - * - * @class - * @augments wp.media.view.AttachmentFilters - * @augments wp.media.View - * @augments wp.Backbone.View - * @augments Backbone.View - */ -var AttachmentFilters = require( '../attachment-filters.js' ), - l10n = wp.media.view.l10n, - All; - -All = AttachmentFilters.extend({ - createFilters: function() { - var filters = {}; - - _.each( wp.media.view.settings.mimeTypes || {}, function( text, key ) { - filters[ key ] = { - text: text, - props: { - status: null, - type: key, - uploadedTo: null, - orderby: 'date', - order: 'DESC' - } - }; - }); - - filters.all = { - text: l10n.allMediaItems, - props: { - status: null, - type: null, - uploadedTo: null, - orderby: 'date', - order: 'DESC' - }, - priority: 10 - }; - - if ( wp.media.view.settings.post.id ) { - filters.uploaded = { - text: l10n.uploadedToThisPost, - props: { - status: null, - type: null, - uploadedTo: wp.media.view.settings.post.id, - orderby: 'menuOrder', - order: 'ASC' - }, - priority: 20 - }; - } - - filters.unattached = { - text: l10n.unattached, - props: { - status: null, - uploadedTo: 0, - type: null, - orderby: 'menuOrder', - order: 'ASC' - }, - priority: 50 - }; - - if ( wp.media.view.settings.mediaTrash && - this.controller.isModeActive( 'grid' ) ) { - - filters.trash = { - text: l10n.trash, - props: { - uploadedTo: null, - status: 'trash', - type: null, - orderby: 'date', - order: 'DESC' - }, - priority: 50 - }; - } - - this.filters = filters; - } -}); - -module.exports = All; - -},{"../attachment-filters.js":11}],13:[function(require,module,exports){ -/*globals wp, _ */ - -/** - * A filter dropdown for month/dates. - * - * @class - * @augments wp.media.view.AttachmentFilters - * @augments wp.media.View - * @augments wp.Backbone.View - * @augments Backbone.View - */ -var AttachmentFilters = require( '../attachment-filters.js' ), - l10n = wp.media.view.l10n, - DateFilter; - -DateFilter = AttachmentFilters.extend({ - id: 'media-attachment-date-filters', - - createFilters: function() { - var filters = {}; - _.each( wp.media.view.settings.months || {}, function( value, index ) { - filters[ index ] = { - text: value.text, - props: { - year: value.year, - monthnum: value.month - } - }; - }); - filters.all = { - text: l10n.allDates, - props: { - monthnum: false, - year: false - }, - priority: 10 - }; - this.filters = filters; - } -}); - -module.exports = DateFilter; - -},{"../attachment-filters.js":11}],14:[function(require,module,exports){ -/*globals wp */ - -/** - * wp.media.view.AttachmentFilters.Uploaded - * - * @class - * @augments wp.media.view.AttachmentFilters - * @augments wp.media.View - * @augments wp.Backbone.View - * @augments Backbone.View - */ -var AttachmentFilters = require( '../attachment-filters.js' ), - l10n = wp.media.view.l10n, - Uploaded; - -Uploaded = AttachmentFilters.extend({ - createFilters: function() { - var type = this.model.get('type'), - types = wp.media.view.settings.mimeTypes, - text; - - if ( types && type ) { - text = types[ type ]; - } - - this.filters = { - all: { - text: text || l10n.allMediaItems, - props: { - uploadedTo: null, - orderby: 'date', - order: 'DESC' - }, - priority: 10 - }, - - uploaded: { - text: l10n.uploadedToThisPost, - props: { - uploadedTo: wp.media.view.settings.post.id, - orderby: 'menuOrder', - order: 'ASC' - }, - priority: 20 - }, - - unattached: { - text: l10n.unattached, - props: { - uploadedTo: 0, - orderby: 'menuOrder', - order: 'ASC' - }, - priority: 50 - } - }; - } -}); - -module.exports = Uploaded; - -},{"../attachment-filters.js":11}],15:[function(require,module,exports){ -/*globals wp, _, jQuery */ - -/** - * wp.media.view.Attachment - * - * @class - * @augments wp.media.View - * @augments wp.Backbone.View - * @augments Backbone.View - */ -var View = require( './view.js' ), - $ = jQuery, - Attachment; - -Attachment = View.extend({ - tagName: 'li', - className: 'attachment', - template: wp.template('attachment'), - - attributes: function() { - return { - 'tabIndex': 0, - 'role': 'checkbox', - 'aria-label': this.model.get( 'title' ), - 'aria-checked': false, - 'data-id': this.model.get( 'id' ) - }; - }, - - events: { - 'click .js--select-attachment': 'toggleSelectionHandler', - 'change [data-setting]': 'updateSetting', - 'change [data-setting] input': 'updateSetting', - 'change [data-setting] select': 'updateSetting', - 'change [data-setting] textarea': 'updateSetting', - 'click .close': 'removeFromLibrary', - 'click .check': 'checkClickHandler', - 'click a': 'preventDefault', - 'keydown .close': 'removeFromLibrary', - 'keydown': 'toggleSelectionHandler' - }, - - buttons: {}, - - initialize: function() { - var selection = this.options.selection, - options = _.defaults( this.options, { - rerenderOnModelChange: true - } ); - - if ( options.rerenderOnModelChange ) { - this.listenTo( this.model, 'change', this.render ); - } else { - this.listenTo( this.model, 'change:percent', this.progress ); - } - this.listenTo( this.model, 'change:title', this._syncTitle ); - this.listenTo( this.model, 'change:caption', this._syncCaption ); - this.listenTo( this.model, 'change:artist', this._syncArtist ); - this.listenTo( this.model, 'change:album', this._syncAlbum ); - - // Update the selection. - this.listenTo( this.model, 'add', this.select ); - this.listenTo( this.model, 'remove', this.deselect ); - if ( selection ) { - selection.on( 'reset', this.updateSelect, this ); - // Update the model's details view. - this.listenTo( this.model, 'selection:single selection:unsingle', this.details ); - this.details( this.model, this.controller.state().get('selection') ); - } - - this.listenTo( this.controller, 'attachment:compat:waiting attachment:compat:ready', this.updateSave ); - }, - /** - * @returns {wp.media.view.Attachment} Returns itself to allow chaining - */ - dispose: function() { - var selection = this.options.selection; - - // Make sure all settings are saved before removing the view. - this.updateAll(); - - if ( selection ) { - selection.off( null, null, this ); - } - /** - * call 'dispose' directly on the parent class - */ - View.prototype.dispose.apply( this, arguments ); - return this; - }, - /** - * @returns {wp.media.view.Attachment} Returns itself to allow chaining - */ - render: function() { - var options = _.defaults( this.model.toJSON(), { - orientation: 'landscape', - uploading: false, - type: '', - subtype: '', - icon: '', - filename: '', - caption: '', - title: '', - dateFormatted: '', - width: '', - height: '', - compat: false, - alt: '', - description: '' - }, this.options ); - - options.buttons = this.buttons; - options.describe = this.controller.state().get('describe'); - - if ( 'image' === options.type ) { - options.size = this.imageSize(); - } - - options.can = {}; - if ( options.nonces ) { - options.can.remove = !! options.nonces['delete']; - options.can.save = !! options.nonces.update; - } - - if ( this.controller.state().get('allowLocalEdits') ) { - options.allowLocalEdits = true; - } - - if ( options.uploading && ! options.percent ) { - options.percent = 0; - } - - this.views.detach(); - this.$el.html( this.template( options ) ); - - this.$el.toggleClass( 'uploading', options.uploading ); - - if ( options.uploading ) { - this.$bar = this.$('.media-progress-bar div'); - } else { - delete this.$bar; - } - - // Check if the model is selected. - this.updateSelect(); - - // Update the save status. - this.updateSave(); - - this.views.render(); - - return this; - }, - - progress: function() { - if ( this.$bar && this.$bar.length ) { - this.$bar.width( this.model.get('percent') + '%' ); - } - }, - - /** - * @param {Object} event - */ - toggleSelectionHandler: function( event ) { - var method; - - // Don't do anything inside inputs. - if ( 'INPUT' === event.target.nodeName ) { - return; - } - - // Catch arrow events - if ( 37 === event.keyCode || 38 === event.keyCode || 39 === event.keyCode || 40 === event.keyCode ) { - this.controller.trigger( 'attachment:keydown:arrow', event ); - return; - } - - // Catch enter and space events - if ( 'keydown' === event.type && 13 !== event.keyCode && 32 !== event.keyCode ) { - return; - } - - event.preventDefault(); - - // In the grid view, bubble up an edit:attachment event to the controller. - if ( this.controller.isModeActive( 'grid' ) ) { - if ( this.controller.isModeActive( 'edit' ) ) { - // Pass the current target to restore focus when closing - this.controller.trigger( 'edit:attachment', this.model, event.currentTarget ); - return; - } - - if ( this.controller.isModeActive( 'select' ) ) { - method = 'toggle'; - } - } - - if ( event.shiftKey ) { - method = 'between'; - } else if ( event.ctrlKey || event.metaKey ) { - method = 'toggle'; - } - - this.toggleSelection({ - method: method - }); - - this.controller.trigger( 'selection:toggle' ); - }, - /** - * @param {Object} options - */ - toggleSelection: function( options ) { - var collection = this.collection, - selection = this.options.selection, - model = this.model, - method = options && options.method, - single, models, singleIndex, modelIndex; - - if ( ! selection ) { - return; - } - - single = selection.single(); - method = _.isUndefined( method ) ? selection.multiple : method; - - // If the `method` is set to `between`, select all models that - // exist between the current and the selected model. - if ( 'between' === method && single && selection.multiple ) { - // If the models are the same, short-circuit. - if ( single === model ) { - return; - } - - singleIndex = collection.indexOf( single ); - modelIndex = collection.indexOf( this.model ); - - if ( singleIndex < modelIndex ) { - models = collection.models.slice( singleIndex, modelIndex + 1 ); - } else { - models = collection.models.slice( modelIndex, singleIndex + 1 ); - } - - selection.add( models ); - selection.single( model ); - return; - - // If the `method` is set to `toggle`, just flip the selection - // status, regardless of whether the model is the single model. - } else if ( 'toggle' === method ) { - selection[ this.selected() ? 'remove' : 'add' ]( model ); - selection.single( model ); - return; - } else if ( 'add' === method ) { - selection.add( model ); - selection.single( model ); - return; - } - - // Fixes bug that loses focus when selecting a featured image - if ( ! method ) { - method = 'add'; - } - - if ( method !== 'add' ) { - method = 'reset'; - } - - if ( this.selected() ) { - // If the model is the single model, remove it. - // If it is not the same as the single model, - // it now becomes the single model. - selection[ single === model ? 'remove' : 'single' ]( model ); - } else { - // If the model is not selected, run the `method` on the - // selection. By default, we `reset` the selection, but the - // `method` can be set to `add` the model to the selection. - selection[ method ]( model ); - selection.single( model ); - } - }, - - updateSelect: function() { - this[ this.selected() ? 'select' : 'deselect' ](); - }, - /** - * @returns {unresolved|Boolean} - */ - selected: function() { - var selection = this.options.selection; - if ( selection ) { - return !! selection.get( this.model.cid ); - } - }, - /** - * @param {Backbone.Model} model - * @param {Backbone.Collection} collection - */ - select: function( model, collection ) { - var selection = this.options.selection, - controller = this.controller; - - // Check if a selection exists and if it's the collection provided. - // If they're not the same collection, bail; we're in another - // selection's event loop. - if ( ! selection || ( collection && collection !== selection ) ) { - return; - } - - // Bail if the model is already selected. - if ( this.$el.hasClass( 'selected' ) ) { - return; - } - - // Add 'selected' class to model, set aria-checked to true. - this.$el.addClass( 'selected' ).attr( 'aria-checked', true ); - // Make the checkbox tabable, except in media grid (bulk select mode). - if ( ! ( controller.isModeActive( 'grid' ) && controller.isModeActive( 'select' ) ) ) { - this.$( '.check' ).attr( 'tabindex', '0' ); - } - }, - /** - * @param {Backbone.Model} model - * @param {Backbone.Collection} collection - */ - deselect: function( model, collection ) { - var selection = this.options.selection; - - // Check if a selection exists and if it's the collection provided. - // If they're not the same collection, bail; we're in another - // selection's event loop. - if ( ! selection || ( collection && collection !== selection ) ) { - return; - } - this.$el.removeClass( 'selected' ).attr( 'aria-checked', false ) - .find( '.check' ).attr( 'tabindex', '-1' ); - }, - /** - * @param {Backbone.Model} model - * @param {Backbone.Collection} collection - */ - details: function( model, collection ) { - var selection = this.options.selection, - details; - - if ( selection !== collection ) { - return; - } - - details = selection.single(); - this.$el.toggleClass( 'details', details === this.model ); - }, - /** - * @param {Object} event - */ - preventDefault: function( event ) { - event.preventDefault(); - }, - /** - * @param {string} size - * @returns {Object} - */ - imageSize: function( size ) { - var sizes = this.model.get('sizes'), matched = false; - - size = size || 'medium'; - - // Use the provided image size if possible. - if ( sizes ) { - if ( sizes[ size ] ) { - matched = sizes[ size ]; - } else if ( sizes.large ) { - matched = sizes.large; - } else if ( sizes.thumbnail ) { - matched = sizes.thumbnail; - } else if ( sizes.full ) { - matched = sizes.full; - } - - if ( matched ) { - return _.clone( matched ); - } - } - - return { - url: this.model.get('url'), - width: this.model.get('width'), - height: this.model.get('height'), - orientation: this.model.get('orientation') - }; - }, - /** - * @param {Object} event - */ - updateSetting: function( event ) { - var $setting = $( event.target ).closest('[data-setting]'), - setting, value; - - if ( ! $setting.length ) { - return; - } - - setting = $setting.data('setting'); - value = event.target.value; - - if ( this.model.get( setting ) !== value ) { - this.save( setting, value ); - } - }, - - /** - * Pass all the arguments to the model's save method. - * - * Records the aggregate status of all save requests and updates the - * view's classes accordingly. - */ - save: function() { - var view = this, - save = this._save = this._save || { status: 'ready' }, - request = this.model.save.apply( this.model, arguments ), - requests = save.requests ? $.when( request, save.requests ) : request; - - // If we're waiting to remove 'Saved.', stop. - if ( save.savedTimer ) { - clearTimeout( save.savedTimer ); - } - - this.updateSave('waiting'); - save.requests = requests; - requests.always( function() { - // If we've performed another request since this one, bail. - if ( save.requests !== requests ) { - return; - } - - view.updateSave( requests.state() === 'resolved' ? 'complete' : 'error' ); - save.savedTimer = setTimeout( function() { - view.updateSave('ready'); - delete save.savedTimer; - }, 2000 ); - }); - }, - /** - * @param {string} status - * @returns {wp.media.view.Attachment} Returns itself to allow chaining - */ - updateSave: function( status ) { - var save = this._save = this._save || { status: 'ready' }; - - if ( status && status !== save.status ) { - this.$el.removeClass( 'save-' + save.status ); - save.status = status; - } - - this.$el.addClass( 'save-' + save.status ); - return this; - }, - - updateAll: function() { - var $settings = this.$('[data-setting]'), - model = this.model, - changed; - - changed = _.chain( $settings ).map( function( el ) { - var $input = $('input, textarea, select, [value]', el ), - setting, value; - - if ( ! $input.length ) { - return; - } - - setting = $(el).data('setting'); - value = $input.val(); - - // Record the value if it changed. - if ( model.get( setting ) !== value ) { - return [ setting, value ]; - } - }).compact().object().value(); - - if ( ! _.isEmpty( changed ) ) { - model.save( changed ); - } - }, - /** - * @param {Object} event - */ - removeFromLibrary: function( event ) { - // Catch enter and space events - if ( 'keydown' === event.type && 13 !== event.keyCode && 32 !== event.keyCode ) { - return; - } - - // Stop propagation so the model isn't selected. - event.stopPropagation(); - - this.collection.remove( this.model ); - }, - - /** - * Add the model if it isn't in the selection, if it is in the selection, - * remove it. - * - * @param {[type]} event [description] - * @return {[type]} [description] - */ - checkClickHandler: function ( event ) { - var selection = this.options.selection; - if ( ! selection ) { - return; - } - event.stopPropagation(); - if ( selection.where( { id: this.model.get( 'id' ) } ).length ) { - selection.remove( this.model ); - // Move focus back to the attachment tile (from the check). - this.$el.focus(); - } else { - selection.add( this.model ); - } - } -}); - -// Ensure settings remain in sync between attachment views. -_.each({ - caption: '_syncCaption', - title: '_syncTitle', - artist: '_syncArtist', - album: '_syncAlbum' -}, function( method, setting ) { - /** - * @param {Backbone.Model} model - * @param {string} value - * @returns {wp.media.view.Attachment} Returns itself to allow chaining - */ - Attachment.prototype[ method ] = function( model, value ) { - var $setting = this.$('[data-setting="' + setting + '"]'); - - if ( ! $setting.length ) { - return this; - } - - // If the updated value is in sync with the value in the DOM, there - // is no need to re-render. If we're currently editing the value, - // it will automatically be in sync, suppressing the re-render for - // the view we're editing, while updating any others. - if ( value === $setting.find('input, textarea, select, [value]').val() ) { - return this; - } - - return this.render(); - }; -}); - -module.exports = Attachment; - -},{"./view.js":49}],16:[function(require,module,exports){ +},{}],4:[function(require,module,exports){ /*globals wp */ /** @@ -2006,7 +110,7 @@ module.exports = Attachment; * @augments wp.Backbone.View * @augments Backbone.View */ -var Details = require( './details.js' ), +var Details = wp.media.view.Attachment.Details, TwoColumn; TwoColumn = Details.extend({ @@ -2035,1024 +139,7 @@ TwoColumn = Details.extend({ module.exports = TwoColumn; -},{"./details.js":17}],17:[function(require,module,exports){ -/*globals wp, _ */ - -/** - * wp.media.view.Attachment.Details - * - * @class - * @augments wp.media.view.Attachment - * @augments wp.media.View - * @augments wp.Backbone.View - * @augments Backbone.View - */ -var Attachment = require( '../attachment.js' ), - l10n = wp.media.view.l10n, - Details; - -Details = Attachment.extend({ - tagName: 'div', - className: 'attachment-details', - template: wp.template('attachment-details'), - - attributes: function() { - return { - 'tabIndex': 0, - 'data-id': this.model.get( 'id' ) - }; - }, - - 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 .untrash-attachment': 'untrashAttachment', - 'click .edit-attachment': 'editAttachment', - 'click .refresh-attachment': 'refreshAttachment', - 'keydown': 'toggleSelectionHandler' - }, - - initialize: function() { - this.options = _.defaults( this.options, { - rerenderOnModelChange: false - }); - - this.on( 'ready', this.initialFocus ); - // Call 'initialize' directly on the parent class. - Attachment.prototype.initialize.apply( this, arguments ); - }, - - initialFocus: function() { - if ( ! wp.media.isTouchDevice ) { - this.$( ':input' ).eq( 0 ).focus(); - } - }, - /** - * @param {Object} event - */ - deleteAttachment: function( event ) { - event.preventDefault(); - - if ( window.confirm( l10n.warnDelete ) ) { - this.model.destroy(); - // Keep focus inside media modal - // after image is deleted - this.controller.modal.focusManager.focus(); - } - }, - /** - * @param {Object} event - */ - trashAttachment: function( event ) { - var library = this.controller.library; - event.preventDefault(); - - if ( wp.media.view.settings.mediaTrash && - 'edit-metadata' === this.controller.content.mode() ) { - - this.model.set( 'status', 'trash' ); - this.model.save().done( function() { - library._requery( true ); - } ); - } else { - this.model.destroy(); - } - }, - /** - * @param {Object} event - */ - untrashAttachment: function( event ) { - var library = this.controller.library; - event.preventDefault(); - - this.model.set( 'status', 'inherit' ); - this.model.save().done( function() { - library._requery( true ); - } ); - }, - /** - * @param {Object} event - */ - editAttachment: function( event ) { - var editState = this.controller.states.get( 'edit-image' ); - if ( window.imageEdit && editState ) { - event.preventDefault(); - - editState.set( 'image', this.model ); - this.controller.setState( 'edit-image' ); - } else { - this.$el.addClass('needs-refresh'); - } - }, - /** - * @param {Object} event - */ - refreshAttachment: function( event ) { - this.$el.removeClass('needs-refresh'); - event.preventDefault(); - this.model.fetch(); - }, - /** - * When reverse tabbing(shift+tab) out of the right details panel, deliver - * the focus to the item in the list that was being edited. - * - * @param {Object} event - */ - toggleSelectionHandler: function( event ) { - if ( 'keydown' === event.type && 9 === event.keyCode && event.shiftKey && event.target === this.$( ':tabbable' ).get( 0 ) ) { - this.controller.trigger( 'attachment:details:shift-tab', event ); - return false; - } - - if ( 37 === event.keyCode || 38 === event.keyCode || 39 === event.keyCode || 40 === event.keyCode ) { - this.controller.trigger( 'attachment:keydown:arrow', event ); - return; - } - } -}); - -module.exports = Details; - -},{"../attachment.js":15}],18:[function(require,module,exports){ -/** - * wp.media.view.Attachment.Library - * - * @class - * @augments wp.media.view.Attachment - * @augments wp.media.View - * @augments wp.Backbone.View - * @augments Backbone.View - */ -var Attachment = require( '../attachment.js' ), - Library; - -Library = Attachment.extend({ - buttons: { - check: true - } -}); - -module.exports = Library; - -},{"../attachment.js":15}],19:[function(require,module,exports){ -/*globals wp, _, jQuery */ - -/** - * wp.media.view.Attachments - * - * @class - * @augments wp.media.View - * @augments wp.Backbone.View - * @augments Backbone.View - */ -var View = require( './view.js' ), - Attachment = require( './attachment.js' ), - $ = jQuery, - Attachments; - -Attachments = View.extend({ - tagName: 'ul', - className: 'attachments', - - attributes: { - tabIndex: -1 - }, - - initialize: function() { - this.el.id = _.uniqueId('__attachments-view-'); - - _.defaults( this.options, { - refreshSensitivity: wp.media.isTouchDevice ? 300 : 200, - refreshThreshold: 3, - AttachmentView: Attachment, - sortable: false, - resize: true, - idealColumnWidth: $( window ).width() < 640 ? 135 : 150 - }); - - this._viewsByCid = {}; - this.$window = $( window ); - this.resizeEvent = 'resize.media-modal-columns'; - - this.collection.on( 'add', function( attachment ) { - this.views.add( this.createAttachmentView( attachment ), { - at: this.collection.indexOf( attachment ) - }); - }, this ); - - this.collection.on( 'remove', function( attachment ) { - var view = this._viewsByCid[ attachment.cid ]; - delete this._viewsByCid[ attachment.cid ]; - - if ( view ) { - view.remove(); - } - }, this ); - - this.collection.on( 'reset', this.render, this ); - - this.listenTo( this.controller, 'library:selection:add', this.attachmentFocus ); - - // Throttle the scroll handler and bind this. - this.scroll = _.chain( this.scroll ).bind( this ).throttle( this.options.refreshSensitivity ).value(); - - this.options.scrollElement = this.options.scrollElement || this.el; - $( this.options.scrollElement ).on( 'scroll', this.scroll ); - - this.initSortable(); - - _.bindAll( this, 'setColumns' ); - - if ( this.options.resize ) { - this.on( 'ready', this.bindEvents ); - this.controller.on( 'open', this.setColumns ); - - // Call this.setColumns() after this view has been rendered in the DOM so - // attachments get proper width applied. - _.defer( this.setColumns, this ); - } - }, - - bindEvents: function() { - this.$window.off( this.resizeEvent ).on( this.resizeEvent, _.debounce( this.setColumns, 50 ) ); - }, - - attachmentFocus: function() { - this.$( 'li:first' ).focus(); - }, - - restoreFocus: function() { - this.$( 'li.selected:first' ).focus(); - }, - - arrowEvent: function( event ) { - var attachments = this.$el.children( 'li' ), - perRow = this.columns, - index = attachments.filter( ':focus' ).index(), - row = ( index + 1 ) <= perRow ? 1 : Math.ceil( ( index + 1 ) / perRow ); - - if ( index === -1 ) { - return; - } - - // Left arrow - if ( 37 === event.keyCode ) { - if ( 0 === index ) { - return; - } - attachments.eq( index - 1 ).focus(); - } - - // Up arrow - if ( 38 === event.keyCode ) { - if ( 1 === row ) { - return; - } - attachments.eq( index - perRow ).focus(); - } - - // Right arrow - if ( 39 === event.keyCode ) { - if ( attachments.length === index ) { - return; - } - attachments.eq( index + 1 ).focus(); - } - - // Down arrow - if ( 40 === event.keyCode ) { - if ( Math.ceil( attachments.length / perRow ) === row ) { - return; - } - attachments.eq( index + perRow ).focus(); - } - }, - - dispose: function() { - this.collection.props.off( null, null, this ); - if ( this.options.resize ) { - this.$window.off( this.resizeEvent ); - } - - /** - * call 'dispose' directly on the parent class - */ - View.prototype.dispose.apply( this, arguments ); - }, - - setColumns: function() { - var prev = this.columns, - width = this.$el.width(); - - if ( width ) { - this.columns = Math.min( Math.round( width / this.options.idealColumnWidth ), 12 ) || 1; - - if ( ! prev || prev !== this.columns ) { - this.$el.closest( '.media-frame-content' ).attr( 'data-columns', this.columns ); - } - } - }, - - initSortable: function() { - var collection = this.collection; - - if ( wp.media.isTouchDevice || ! this.options.sortable || ! $.fn.sortable ) { - return; - } - - this.$el.sortable( _.extend({ - // If the `collection` has a `comparator`, disable sorting. - disabled: !! collection.comparator, - - // Change the position of the attachment as soon as the - // mouse pointer overlaps a thumbnail. - tolerance: 'pointer', - - // Record the initial `index` of the dragged model. - start: function( event, ui ) { - ui.item.data('sortableIndexStart', ui.item.index()); - }, - - // Update the model's index in the collection. - // Do so silently, as the view is already accurate. - update: function( event, ui ) { - var model = collection.at( ui.item.data('sortableIndexStart') ), - comparator = collection.comparator; - - // Temporarily disable the comparator to prevent `add` - // from re-sorting. - delete collection.comparator; - - // Silently shift the model to its new index. - collection.remove( model, { - silent: true - }); - collection.add( model, { - silent: true, - at: ui.item.index() - }); - - // Restore the comparator. - collection.comparator = comparator; - - // Fire the `reset` event to ensure other collections sync. - collection.trigger( 'reset', collection ); - - // If the collection is sorted by menu order, - // update the menu order. - collection.saveMenuOrder(); - } - }, this.options.sortable ) ); - - // If the `orderby` property is changed on the `collection`, - // check to see if we have a `comparator`. If so, disable sorting. - collection.props.on( 'change:orderby', function() { - this.$el.sortable( 'option', 'disabled', !! collection.comparator ); - }, this ); - - this.collection.props.on( 'change:orderby', this.refreshSortable, this ); - this.refreshSortable(); - }, - - refreshSortable: function() { - if ( wp.media.isTouchDevice || ! this.options.sortable || ! $.fn.sortable ) { - return; - } - - // If the `collection` has a `comparator`, disable sorting. - var collection = this.collection, - orderby = collection.props.get('orderby'), - enabled = 'menuOrder' === orderby || ! collection.comparator; - - this.$el.sortable( 'option', 'disabled', ! enabled ); - }, - - /** - * @param {wp.media.model.Attachment} attachment - * @returns {wp.media.View} - */ - createAttachmentView: function( attachment ) { - var view = new this.options.AttachmentView({ - controller: this.controller, - model: attachment, - collection: this.collection, - selection: this.options.selection - }); - - return this._viewsByCid[ attachment.cid ] = view; - }, - - prepare: function() { - // Create all of the Attachment views, and replace - // the list in a single DOM operation. - if ( this.collection.length ) { - this.views.set( this.collection.map( this.createAttachmentView, this ) ); - - // If there are no elements, clear the views and load some. - } else { - this.views.unset(); - this.collection.more().done( this.scroll ); - } - }, - - ready: function() { - // Trigger the scroll event to check if we're within the - // threshold to query for additional attachments. - this.scroll(); - }, - - scroll: function() { - var view = this, - el = this.options.scrollElement, - scrollTop = el.scrollTop, - toolbar; - - // The scroll event occurs on the document, but the element - // that should be checked is the document body. - if ( el === document ) { - el = document.body; - scrollTop = $(document).scrollTop(); - } - - if ( ! $(el).is(':visible') || ! this.collection.hasMore() ) { - return; - } - - toolbar = this.views.parent.toolbar; - - // Show the spinner only if we are close to the bottom. - if ( el.scrollHeight - ( scrollTop + el.clientHeight ) < el.clientHeight / 3 ) { - toolbar.get('spinner').show(); - } - - if ( el.scrollHeight < scrollTop + ( el.clientHeight * this.options.refreshThreshold ) ) { - this.collection.more().done(function() { - view.scroll(); - toolbar.get('spinner').hide(); - }); - } - } -}); - -module.exports = Attachments; - -},{"./attachment.js":15,"./view.js":49}],20:[function(require,module,exports){ -/*globals wp, _, jQuery */ - -/** - * wp.media.view.AttachmentsBrowser - * - * @class - * @augments wp.media.View - * @augments wp.Backbone.View - * @augments Backbone.View - * - * @param {object} options - * @param {object} [options.filters=false] Which filters to show in the browser's toolbar. - * Accepts 'uploaded' and 'all'. - * @param {object} [options.search=true] Whether to show the search interface in the - * browser's toolbar. - * @param {object} [options.date=true] Whether to show the date filter in the - * browser's toolbar. - * @param {object} [options.display=false] Whether to show the attachments display settings - * view in the sidebar. - * @param {bool|string} [options.sidebar=true] Whether to create a sidebar for the browser. - * Accepts true, false, and 'errors'. - */ -var View = require( '../view.js' ), - Library = require( '../attachment/library.js' ), - Toolbar = require( '../toolbar.js' ), - Spinner = require( '../spinner.js' ), - Search = require( '../search.js' ), - Label = require( '../label.js' ), - Uploaded = require( '../attachment-filters/uploaded.js' ), - All = require( '../attachment-filters/all.js' ), - DateFilter = require( '../attachment-filters/date.js' ), - UploaderInline = require( '../uploader/inline.js' ), - Attachments = require( '../attachments.js' ), - Sidebar = require( '../sidebar.js' ), - UploaderStatus = require( '../uploader/status.js' ), - Details = require( '../attachment/details.js' ), - AttachmentCompat = require( '../attachment-compat.js' ), - AttachmentDisplay = require( '../settings/attachment-display.js' ), - mediaTrash = wp.media.view.settings.mediaTrash, - l10n = wp.media.view.l10n, - $ = jQuery, - AttachmentsBrowser; - -AttachmentsBrowser = View.extend({ - tagName: 'div', - className: 'attachments-browser', - - initialize: function() { - _.defaults( this.options, { - filters: false, - search: true, - date: true, - display: false, - sidebar: true, - AttachmentView: Library - }); - - this.listenTo( this.controller, 'toggle:upload:attachment', _.bind( this.toggleUploader, this ) ); - this.controller.on( 'edit:selection', this.editSelection ); - this.createToolbar(); - if ( this.options.sidebar ) { - this.createSidebar(); - } - this.createUploader(); - this.createAttachments(); - this.updateContent(); - - if ( ! this.options.sidebar || 'errors' === this.options.sidebar ) { - this.$el.addClass( 'hide-sidebar' ); - - if ( 'errors' === this.options.sidebar ) { - this.$el.addClass( 'sidebar-for-errors' ); - } - } - - this.collection.on( 'add remove reset', this.updateContent, this ); - }, - - editSelection: function( modal ) { - modal.$( '.media-button-backToLibrary' ).focus(); - }, - - /** - * @returns {wp.media.view.AttachmentsBrowser} Returns itself to allow chaining - */ - dispose: function() { - this.options.selection.off( null, null, this ); - View.prototype.dispose.apply( this, arguments ); - return this; - }, - - createToolbar: function() { - var LibraryViewSwitcher, Filters, toolbarOptions; - - toolbarOptions = { - controller: this.controller - }; - - if ( this.controller.isModeActive( 'grid' ) ) { - toolbarOptions.className = 'media-toolbar wp-filter'; - } - - /** - * @member {wp.media.view.Toolbar} - */ - this.toolbar = new Toolbar( toolbarOptions ); - - this.views.add( this.toolbar ); - - this.toolbar.set( 'spinner', new Spinner({ - priority: -60 - }) ); - - if ( -1 !== $.inArray( this.options.filters, [ 'uploaded', 'all' ] ) ) { - // "Filters" will return a , screen reader text needs to be rendered before - this.toolbar.set( 'dateFilterLabel', new Label({ - value: l10n.filterByDate, - attributes: { - 'for': 'media-attachment-date-filters' - }, - priority: -75 - }).render() ); - this.toolbar.set( 'dateFilter', new DateFilter({ - controller: this.controller, - model: this.collection.props, - priority: -75 - }).render() ); - - // BulkSelection is a
with subviews, including screen reader text - this.toolbar.set( 'selectModeToggleButton', new wp.media.view.SelectModeToggleButton({ - text: l10n.bulkSelect, - controller: this.controller, - priority: -70 - }).render() ); - - this.toolbar.set( 'deleteSelectedButton', new wp.media.view.DeleteSelectedButton({ - filters: Filters, - style: 'primary', - disabled: true, - text: mediaTrash ? l10n.trashSelected : l10n.deleteSelected, - controller: this.controller, - priority: -60, - click: function() { - var changed = [], removed = [], - selection = this.controller.state().get( 'selection' ), - library = this.controller.state().get( 'library' ); - - if ( ! selection.length ) { - return; - } - - if ( ! mediaTrash && ! window.confirm( l10n.warnBulkDelete ) ) { - return; - } - - if ( mediaTrash && - 'trash' !== selection.at( 0 ).get( 'status' ) && - ! window.confirm( l10n.warnBulkTrash ) ) { - - return; - } - - selection.each( function( model ) { - if ( ! model.get( 'nonces' )['delete'] ) { - removed.push( model ); - return; - } - - if ( mediaTrash && 'trash' === model.get( 'status' ) ) { - model.set( 'status', 'inherit' ); - changed.push( model.save() ); - removed.push( model ); - } else if ( mediaTrash ) { - model.set( 'status', 'trash' ); - changed.push( model.save() ); - removed.push( model ); - } else { - model.destroy({wait: true}); - } - } ); - - if ( changed.length ) { - selection.remove( removed ); - - $.when.apply( null, changed ).then( _.bind( function() { - library._requery( true ); - this.controller.trigger( 'selection:action:done' ); - }, this ) ); - } else { - this.controller.trigger( 'selection:action:done' ); - } - } - }).render() ); - - if ( mediaTrash ) { - this.toolbar.set( 'deleteSelectedPermanentlyButton', new wp.media.view.DeleteSelectedPermanentlyButton({ - filters: Filters, - style: 'primary', - disabled: true, - text: l10n.deleteSelected, - controller: this.controller, - priority: -55, - click: function() { - var removed = [], selection = this.controller.state().get( 'selection' ); - - if ( ! selection.length || ! window.confirm( l10n.warnBulkDelete ) ) { - return; - } - - selection.each( function( model ) { - if ( ! model.get( 'nonces' )['delete'] ) { - removed.push( model ); - return; - } - - model.destroy(); - } ); - - selection.remove( removed ); - this.controller.trigger( 'selection:action:done' ); - } - }).render() ); - } - - } else if ( this.options.date ) { - // DateFilter is a ').val(this.model.get("url")),this.input=this.$input[0],this.spinner=e('')[0],this.$el.append([this.input,this.spinner]),this.listenTo(this.model,"change:url",this.render),this.model.get("url")&&_.delay(_.bind(function(){this.model.trigger("change:url")},this),500)},render:function(){var a=this.$input;if(!a.is(":focus"))return this.input.value=this.model.get("url")||"http://",d.prototype.render.apply(this,arguments),this},ready:function(){wp.media.isTouchDevice||this.focus()},url:function(a){this.model.set("url",a.target.value)},focus:function(){var a=this.$input;a.is(":visible")&&a.focus()[0].select()}}),b.exports=c},{"../view.js":71}],40:[function(a,b){var c,d=a("./view.js");c=d.extend({events:{keydown:"constrainTabbing"},focus:function(){this.$(".media-menu-item").first().focus()},constrainTabbing:function(a){var b;if(9===a.keyCode)return b=this.$(":tabbable").not('.moxie-shim input[type="file"]'),b.last()[0]!==a.target||a.shiftKey?b.first()[0]===a.target&&a.shiftKey?(b.last().focus(),!1):void 0:(b.first().focus(),!1)}}),b.exports=c},{"./view.js":71}],41:[function(a,b){var c,d=a("../controllers/state-machine.js"),e=a("../controllers/state.js"),f=a("../controllers/region.js"),g=a("./view.js");c=g.extend({initialize:function(){_.defaults(this.options,{mode:["select"]}),this._createRegions(),this._createStates(),this._createModes()},_createRegions:function(){this.regions=this.regions?this.regions.slice():[],_.each(this.regions,function(a){this[a]=new f({view:this,id:a,selector:".media-frame-"+a})},this)},_createStates:function(){this.states=new Backbone.Collection(null,{model:e}),this.states.on("add",function(a){a.frame=this,a.trigger("ready")},this),this.options.states&&this.states.add(this.options.states)},_createModes:function(){this.activeModes=new Backbone.Collection,this.activeModes.on("add remove reset",_.bind(this.triggerModeEvents,this)),_.each(this.options.mode,function(a){this.activateMode(a)},this)},reset:function(){return this.states.invoke("trigger","reset"),this},triggerModeEvents:function(a,b,c){var d,e,f={add:"activate",remove:"deactivate"};_.each(c,function(a,b){a&&(d=b)}),_.has(f,d)&&(e=a.get("id")+":"+f[d],this.trigger(e))},activateMode:function(a){return this.isModeActive(a)?void 0:(this.activeModes.add([{id:a}]),this.$el.addClass("mode-"+a),this)},deactivateMode:function(a){return this.isModeActive(a)?(this.activeModes.remove(this.activeModes.where({id:a})),this.$el.removeClass("mode-"+a),this.trigger(a+":deactivate"),this):this},isModeActive:function(a){return Boolean(this.activeModes.where({id:a}).length)}}),_.extend(c.prototype,d.prototype),b.exports=c},{"../controllers/region.js":12,"../controllers/state-machine.js":14,"../controllers/state.js":15,"./view.js":71}],42:[function(a,b){var c,d=a("./select.js"),e=a("../toolbar.js"),f=a("../../controllers/image-details.js"),g=a("../../controllers/replace-image.js"),h=a("../../controllers/edit-image.js"),i=a("../image-details.js"),j=a("../edit-image.js"),k=wp.media.view.l10n;c=d.extend({defaults:{id:"image",url:"",menu:"image-details",content:"image-details",toolbar:"image-details",type:"link",title:k.imageDetailsTitle,priority:120},initialize:function(a){this.image=new wp.media.model.PostImage(a.metadata),this.options.selection=new wp.media.model.Selection(this.image.attachment,{multiple:!1}),d.prototype.initialize.apply(this,arguments)},bindHandlers:function(){d.prototype.bindHandlers.apply(this,arguments),this.on("menu:create:image-details",this.createMenu,this),this.on("content:create:image-details",this.imageDetailsContent,this),this.on("content:render:edit-image",this.editImageContent,this),this.on("toolbar:render:image-details",this.renderImageDetailsToolbar,this),this.on("toolbar:render:replace",this.renderReplaceImageToolbar,this)},createStates:function(){this.states.add([new f({image:this.image,editable:!1}),new g({id:"replace-image",library:wp.media.query({type:"image"}),image:this.image,multiple:!1,title:k.imageReplaceTitle,toolbar:"replace",priority:80,displaySettings:!0}),new h({image:this.image,selection:this.options.selection})])},imageDetailsContent:function(a){a.view=new i({controller:this,model:this.state().image,attachment:this.state().image.attachment})},editImageContent:function(){var a,b=this.state(),c=b.get("image");c&&(a=new j({model:c,controller:this}).render(),this.content.set(a),a.loadEditor())},renderImageDetailsToolbar:function(){this.toolbar.set(new e({controller:this,items:{select:{style:"primary",text:k.update,priority:80,click:function(){var a=this.controller,b=a.state();a.close(),b.trigger("update",a.image.toJSON()),a.setState(a.options.state),a.reset()}}}}))},renderReplaceImageToolbar:function(){var a=this,b=a.lastState(),c=b&&b.id;this.toolbar.set(new e({controller:this,items:{back:{text:k.back,priority:20,click:function(){c?a.setState(c):a.close()}},replace:{style:"primary",text:k.replace,priority:80,click:function(){var a=this.controller,b=a.state(),c=b.get("selection"),d=c.single();a.close(),a.image.changeAttachment(d,b.display(d)),b.trigger("replace",a.image.toJSON()),a.setState(a.options.state),a.reset()}}}}))}}),b.exports=c},{"../../controllers/edit-image.js":4,"../../controllers/image-details.js":9,"../../controllers/replace-image.js":13,"../edit-image.js":35,"../image-details.js":46,"../toolbar.js":63,"./select.js":44}],43:[function(a,b){var c,d=a("../view.js"),e=a("./select.js"),f=a("../../controllers/library.js"),g=a("../embed.js"),h=a("../edit-image.js"),i=a("../attachment/edit-selection.js"),j=a("../toolbar.js"),k=a("../toolbar/embed.js"),l=a("../settings/playlist.js"),m=a("../attachments/browser.js"),n=a("../selection.js"),o=a("../../controllers/embed.js"),p=a("../../controllers/edit-image.js"),q=a("../../controllers/gallery-edit.js"),r=a("../../controllers/gallery-add.js"),s=a("../../controllers/collection-edit.js"),t=a("../../controllers/collection-add.js"),u=a("../../controllers/featured-image.js"),v=wp.media.view.l10n;c=e.extend({initialize:function(){this.counts={audio:{count:wp.media.view.settings.attachmentCounts.audio,state:"playlist"},video:{count:wp.media.view.settings.attachmentCounts.video,state:"video-playlist"}},_.defaults(this.options,{multiple:!0,editing:!1,state:"insert",metadata:{}}),e.prototype.initialize.apply(this,arguments),this.createIframeStates()},createStates:function(){var a=this.options;this.states.add([new f({id:"insert",title:v.insertMediaTitle,priority:20,toolbar:"main-insert",filterable:"all",library:wp.media.query(a.library),multiple:a.multiple?"reset":!1,editable:!0,allowLocalEdits:!0,displaySettings:!0,displayUserSettings:!0}),new f({id:"gallery",title:v.createGalleryTitle,priority:40,toolbar:"main-gallery",filterable:"uploaded",multiple:"add",editable:!1,library:wp.media.query(_.defaults({type:"image"},a.library))}),new o({metadata:a.metadata}),new p({model:a.editImage}),new q({library:a.selection,editing:a.editing,menu:"gallery"}),new r,new f({id:"playlist",title:v.createPlaylistTitle,priority:60,toolbar:"main-playlist",filterable:"uploaded",multiple:"add",editable:!1,library:wp.media.query(_.defaults({type:"audio"},a.library))}),new s({type:"audio",collectionType:"playlist",title:v.editPlaylistTitle,SettingsView:l,library:a.selection,editing:a.editing,menu:"playlist",dragInfoText:v.playlistDragInfo,dragInfo:!1}),new t({type:"audio",collectionType:"playlist",title:v.addToPlaylistTitle}),new f({id:"video-playlist",title:v.createVideoPlaylistTitle,priority:60,toolbar:"main-video-playlist",filterable:"uploaded",multiple:"add",editable:!1,library:wp.media.query(_.defaults({type:"video"},a.library))}),new s({type:"video",collectionType:"playlist",title:v.editVideoPlaylistTitle,SettingsView:l,library:a.selection,editing:a.editing,menu:"video-playlist",dragInfoText:v.videoPlaylistDragInfo,dragInfo:!1}),new t({type:"video",collectionType:"playlist",title:v.addToVideoPlaylistTitle})]),wp.media.view.settings.post.featuredImageId&&this.states.add(new u) },bindHandlers:function(){var a,b;e.prototype.bindHandlers.apply(this,arguments),this.on("activate",this.activate,this),b=_.find(this.counts,function(a){return 0===a.count}),"undefined"!=typeof b&&this.listenTo(wp.media.model.Attachments.all,"change:type",this.mediaTypeCounts),this.on("menu:create:gallery",this.createMenu,this),this.on("menu:create:playlist",this.createMenu,this),this.on("menu:create:video-playlist",this.createMenu,this),this.on("toolbar:create:main-insert",this.createToolbar,this),this.on("toolbar:create:main-gallery",this.createToolbar,this),this.on("toolbar:create:main-playlist",this.createToolbar,this),this.on("toolbar:create:main-video-playlist",this.createToolbar,this),this.on("toolbar:create:featured-image",this.featuredImageToolbar,this),this.on("toolbar:create:main-embed",this.mainEmbedToolbar,this),a={menu:{"default":"mainMenu",gallery:"galleryMenu",playlist:"playlistMenu","video-playlist":"videoPlaylistMenu"},content:{embed:"embedContent","edit-image":"editImageContent","edit-selection":"editSelectionContent"},toolbar:{"main-insert":"mainInsertToolbar","main-gallery":"mainGalleryToolbar","gallery-edit":"galleryEditToolbar","gallery-add":"galleryAddToolbar","main-playlist":"mainPlaylistToolbar","playlist-edit":"playlistEditToolbar","playlist-add":"playlistAddToolbar","main-video-playlist":"mainVideoPlaylistToolbar","video-playlist-edit":"videoPlaylistEditToolbar","video-playlist-add":"videoPlaylistAddToolbar"}},_.each(a,function(a,b){_.each(a,function(a,c){this.on(b+":render:"+c,this[a],this)},this)},this)},activate:function(){_.each(this.counts,function(a){a.count<1&&this.menuItemVisibility(a.state,"hide")},this)},mediaTypeCounts:function(a,b){"undefined"!=typeof this.counts[b]&&this.counts[b].count<1&&(this.counts[b].count++,this.menuItemVisibility(this.counts[b].state,"show"))},mainMenu:function(a){a.set({"library-separator":new d({className:"separator",priority:100})})},menuItemVisibility:function(a,b){var c=this.menu.get();"hide"===b?c.hide(a):"show"===b&&c.show(a)},galleryMenu:function(a){var b=this.lastState(),c=b&&b.id,e=this;a.set({cancel:{text:v.cancelGalleryTitle,priority:20,click:function(){c?e.setState(c):e.close(),this.controller.modal.focusManager.focus()}},separateCancel:new d({className:"separator",priority:40})})},playlistMenu:function(a){var b=this.lastState(),c=b&&b.id,e=this;a.set({cancel:{text:v.cancelPlaylistTitle,priority:20,click:function(){c?e.setState(c):e.close()}},separateCancel:new d({className:"separator",priority:40})})},videoPlaylistMenu:function(a){var b=this.lastState(),c=b&&b.id,e=this;a.set({cancel:{text:v.cancelVideoPlaylistTitle,priority:20,click:function(){c?e.setState(c):e.close()}},separateCancel:new d({className:"separator",priority:40})})},embedContent:function(){var a=new g({controller:this,model:this.state()}).render();this.content.set(a),wp.media.isTouchDevice||a.url.focus()},editSelectionContent:function(){var a,b=this.state(),c=b.get("selection");a=new m({controller:this,collection:c,selection:c,model:b,sortable:!0,search:!1,date:!1,dragInfo:!0,AttachmentView:i}).render(),a.toolbar.set("backToLibrary",{text:v.returnToLibrary,priority:-100,click:function(){this.controller.content.mode("browse")}}),this.content.set(a),this.trigger("edit:selection",this)},editImageContent:function(){var a=this.state().get("image"),b=new h({model:a,controller:this}).render();this.content.set(b),b.loadEditor()},selectionStatusToolbar:function(a){var b=this.state().get("editable");a.set("selection",new n({controller:this,collection:this.state().get("selection"),priority:-40,editable:b&&function(){this.controller.content.mode("edit-selection")}}).render())},mainInsertToolbar:function(a){var b=this;this.selectionStatusToolbar(a),a.set("insert",{style:"primary",priority:80,text:v.insertIntoPost,requires:{selection:!0},click:function(){var a=b.state(),c=a.get("selection");b.close(),a.trigger("insert",c).reset()}})},mainGalleryToolbar:function(a){var b=this;this.selectionStatusToolbar(a),a.set("gallery",{style:"primary",text:v.createNewGallery,priority:60,requires:{selection:!0},click:function(){var a=b.state().get("selection"),c=b.state("gallery-edit"),d=a.where({type:"image"});c.set("library",new wp.media.model.Selection(d,{props:a.props.toJSON(),multiple:!0})),this.controller.setState("gallery-edit"),this.controller.modal.focusManager.focus()}})},mainPlaylistToolbar:function(a){var b=this;this.selectionStatusToolbar(a),a.set("playlist",{style:"primary",text:v.createNewPlaylist,priority:100,requires:{selection:!0},click:function(){var a=b.state().get("selection"),c=b.state("playlist-edit"),d=a.where({type:"audio"});c.set("library",new wp.media.model.Selection(d,{props:a.props.toJSON(),multiple:!0})),this.controller.setState("playlist-edit"),this.controller.modal.focusManager.focus()}})},mainVideoPlaylistToolbar:function(a){var b=this;this.selectionStatusToolbar(a),a.set("video-playlist",{style:"primary",text:v.createNewVideoPlaylist,priority:100,requires:{selection:!0},click:function(){var a=b.state().get("selection"),c=b.state("video-playlist-edit"),d=a.where({type:"video"});c.set("library",new wp.media.model.Selection(d,{props:a.props.toJSON(),multiple:!0})),this.controller.setState("video-playlist-edit"),this.controller.modal.focusManager.focus()}})},featuredImageToolbar:function(a){this.createSelectToolbar(a,{text:v.setFeaturedImage,state:this.options.state})},mainEmbedToolbar:function(a){a.view=new k({controller:this})},galleryEditToolbar:function(){var a=this.state().get("editing");this.toolbar.set(new j({controller:this,items:{insert:{style:"primary",text:a?v.updateGallery:v.insertGallery,priority:80,requires:{library:!0},click:function(){var a=this.controller,b=a.state();a.close(),b.trigger("update",b.get("library")),a.setState(a.options.state),a.reset()}}}}))},galleryAddToolbar:function(){this.toolbar.set(new j({controller:this,items:{insert:{style:"primary",text:v.addToGallery,priority:80,requires:{selection:!0},click:function(){var a=this.controller,b=a.state(),c=a.state("gallery-edit");c.get("library").add(b.get("selection").models),b.trigger("reset"),a.setState("gallery-edit")}}}}))},playlistEditToolbar:function(){var a=this.state().get("editing");this.toolbar.set(new j({controller:this,items:{insert:{style:"primary",text:a?v.updatePlaylist:v.insertPlaylist,priority:80,requires:{library:!0},click:function(){var a=this.controller,b=a.state();a.close(),b.trigger("update",b.get("library")),a.setState(a.options.state),a.reset()}}}}))},playlistAddToolbar:function(){this.toolbar.set(new j({controller:this,items:{insert:{style:"primary",text:v.addToPlaylist,priority:80,requires:{selection:!0},click:function(){var a=this.controller,b=a.state(),c=a.state("playlist-edit");c.get("library").add(b.get("selection").models),b.trigger("reset"),a.setState("playlist-edit")}}}}))},videoPlaylistEditToolbar:function(){var a=this.state().get("editing");this.toolbar.set(new j({controller:this,items:{insert:{style:"primary",text:a?v.updateVideoPlaylist:v.insertVideoPlaylist,priority:140,requires:{library:!0},click:function(){var a=this.controller,b=a.state(),c=b.get("library");c.type="video",a.close(),b.trigger("update",c),a.setState(a.options.state),a.reset()}}}}))},videoPlaylistAddToolbar:function(){this.toolbar.set(new j({controller:this,items:{insert:{style:"primary",text:v.addToVideoPlaylist,priority:140,requires:{selection:!0},click:function(){var a=this.controller,b=a.state(),c=a.state("video-playlist-edit");c.get("library").add(b.get("selection").models),b.trigger("reset"),a.setState("video-playlist-edit")}}}}))}}),b.exports=c},{"../../controllers/collection-add.js":1,"../../controllers/collection-edit.js":2,"../../controllers/edit-image.js":4,"../../controllers/embed.js":5,"../../controllers/featured-image.js":6,"../../controllers/gallery-add.js":7,"../../controllers/gallery-edit.js":8,"../../controllers/library.js":10,"../attachment/edit-selection.js":26,"../attachments/browser.js":30,"../edit-image.js":35,"../embed.js":36,"../selection.js":56,"../settings/playlist.js":60,"../toolbar.js":63,"../toolbar/embed.js":64,"../view.js":71,"./select.js":44}],44:[function(a,b){var c,d=a("../media-frame.js"),e=a("../../controllers/library.js"),f=a("../attachments/browser.js"),g=a("../uploader/inline.js"),h=a("../toolbar/select.js"),i=wp.media.view.l10n;c=d.extend({initialize:function(){d.prototype.initialize.apply(this,arguments),_.defaults(this.options,{selection:[],library:{},multiple:!1,state:"library"}),this.createSelection(),this.createStates(),this.bindHandlers()},createSelection:function(){var a=this.options.selection;a instanceof wp.media.model.Selection||(this.options.selection=new wp.media.model.Selection(a,{multiple:this.options.multiple})),this._selection={attachments:new wp.media.model.Attachments,difference:[]}},createStates:function(){var a=this.options;this.options.states||this.states.add([new e({library:wp.media.query(a.library),multiple:a.multiple,title:a.title,priority:20})])},bindHandlers:function(){this.on("router:create:browse",this.createRouter,this),this.on("router:render:browse",this.browseRouter,this),this.on("content:create:browse",this.browseContent,this),this.on("content:render:upload",this.uploadContent,this),this.on("toolbar:create:select",this.createSelectToolbar,this)},browseRouter:function(a){a.set({upload:{text:i.uploadFilesTitle,priority:20},browse:{text:i.mediaLibraryTitle,priority:40}})},browseContent:function(a){var b=this.state();this.$el.removeClass("hide-toolbar"),a.view=new f({controller:this,collection:b.get("library"),selection:b.get("selection"),model:b,sortable:b.get("sortable"),search:b.get("searchable"),filters:b.get("filterable"),display:b.get(b.has("display")?"display":"displaySettings"),dragInfo:b.get("dragInfo"),idealColumnWidth:b.get("idealColumnWidth"),suggestedWidth:b.get("suggestedWidth"),suggestedHeight:b.get("suggestedHeight"),AttachmentView:b.get("AttachmentView")})},uploadContent:function(){this.$el.removeClass("hide-toolbar"),this.content.set(new g({controller:this}))},createSelectToolbar:function(a,b){b=b||this.options.button||{},b.controller=this,a.view=new h(b)}}),b.exports=c},{"../../controllers/library.js":10,"../attachments/browser.js":30,"../media-frame.js":48,"../toolbar/select.js":65,"../uploader/inline.js":67}],45:[function(a,b){var c,d=a("./view.js");c=d.extend({className:"media-iframe",render:function(){return this.views.detach(),this.$el.html('