2013-11-13 21:58:05 +01:00
|
|
|
/* global _wpThemeSettings, confirm */
|
|
|
|
window.wp = window.wp || {};
|
|
|
|
|
|
|
|
( function($) {
|
|
|
|
|
|
|
|
// Set up our namespace...
|
2013-11-20 20:44:12 +01:00
|
|
|
var themes, l10n;
|
|
|
|
themes = wp.themes = wp.themes || {};
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
// Store the theme data and settings for organized and quick access
|
2013-11-20 20:44:12 +01:00
|
|
|
// themes.data.settings, themes.data.themes, themes.data.l10n
|
2013-11-13 21:58:05 +01:00
|
|
|
themes.data = _wpThemeSettings;
|
2013-11-20 20:44:12 +01:00
|
|
|
l10n = themes.data.l10n;
|
2013-11-13 21:58:05 +01:00
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
// Shortcut for isInstall check
|
|
|
|
themes.isInstall = !! themes.data.settings.isInstall;
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Setup app structure
|
|
|
|
_.extend( themes, { model: {}, view: {}, routes: {}, router: {}, template: wp.template });
|
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
themes.Model = Backbone.Model.extend({
|
|
|
|
// Adds attributes to the default data coming through the .org themes api
|
|
|
|
// Map `id` to `slug` for shared code
|
|
|
|
initialize: function() {
|
2014-04-15 03:16:14 +02:00
|
|
|
var description;
|
2014-03-11 08:47:15 +01:00
|
|
|
|
2014-04-08 01:04:15 +02:00
|
|
|
// If theme is already installed, set an attribute.
|
|
|
|
if ( _.indexOf( themes.data.installedThemes, this.get( 'slug' ) ) !== -1 ) {
|
|
|
|
this.set({ installed: true });
|
|
|
|
}
|
2014-03-11 08:47:15 +01:00
|
|
|
|
|
|
|
// Set the attributes
|
|
|
|
this.set({
|
2014-03-12 01:29:15 +01:00
|
|
|
// slug is for installation, id is for existing.
|
|
|
|
id: this.get( 'slug' ) || this.get( 'id' )
|
2014-03-11 08:47:15 +01:00
|
|
|
});
|
2014-04-15 00:06:15 +02:00
|
|
|
|
|
|
|
// Map `section.description` to `description`
|
|
|
|
// as the API sometimes returns it differently
|
|
|
|
if ( this.has( 'sections' ) ) {
|
|
|
|
description = this.get( 'sections' ).description;
|
|
|
|
this.set({ description: description });
|
|
|
|
}
|
2014-03-11 08:47:15 +01:00
|
|
|
}
|
|
|
|
});
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
// Main view controller for themes.php
|
|
|
|
// Unifies and renders all available views
|
|
|
|
themes.view.Appearance = wp.Backbone.View.extend({
|
|
|
|
|
2013-11-20 20:44:12 +01:00
|
|
|
el: '#wpbody-content .wrap .theme-browser',
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
window: $( window ),
|
|
|
|
// Pagination instance
|
|
|
|
page: 0,
|
|
|
|
|
|
|
|
// Sets up a throttler for binding to 'scroll'
|
2014-03-11 08:47:15 +01:00
|
|
|
initialize: function( options ) {
|
2013-11-29 06:14:09 +01:00
|
|
|
// Scroller checks how far the scroll position is
|
|
|
|
_.bindAll( this, 'scroller' );
|
2013-11-13 21:58:05 +01:00
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
this.SearchView = options.SearchView ? options.SearchView : themes.view.Search;
|
2013-11-29 06:14:09 +01:00
|
|
|
// Bind to the scroll event and throttle
|
|
|
|
// the results from this.scroller
|
|
|
|
this.window.bind( 'scroll', _.throttle( this.scroller, 300 ) );
|
2013-11-13 21:58:05 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Main render control
|
|
|
|
render: function() {
|
|
|
|
// Setup the main theme view
|
|
|
|
// with the current theme collection
|
|
|
|
this.view = new themes.view.Themes({
|
|
|
|
collection: this.collection,
|
|
|
|
parent: this
|
|
|
|
});
|
2013-11-20 20:44:12 +01:00
|
|
|
|
|
|
|
// Render search form.
|
|
|
|
this.search();
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Render and append
|
|
|
|
this.view.render();
|
No-JavaScript and no-Customizer support for the new Themes screen.
JavaScript is rarely disabled, but graceful degradation is still important. For example, syntax errors can occur, usually with major WP updates that overhaul entire experiences and update external libraries combined with themes or plugins doing weird or old things. If this error is due to their current theme, a user needs to be able to access the themes screen to switch away from the theme. A more subtle issue could make things painful to diagnose.
This commit renders the grid in PHP (the template is duplicated, but it lightweight, fairly mundane, and easy to sync). On Backbone render, the grid is then re-rendered from JavaScript so searches can occur. Customize and Live Preview is disabled if JS fails to kick in. If JS is disabled, old-school "Preview" links are displayed.
No-Customizer support: The customizer is only supported when the browser supports postMessage (IE8+), and if the frontend is a different domain, CORS (IE10+). We use the .hide-if-no-customize class for this. Pre-customize "Preview" links should use .hide-if-customize.
The .load-customize class should be used to declare a link that opens the customizer. This enables customize-loader.js to intercept this link and load the customizer on top of the current window, making for a smoother experience.
fixes #25964.
Built from https://develop.svn.wordpress.org/trunk@26726
git-svn-id: http://core.svn.wordpress.org/trunk@26615 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2013-12-06 17:11:10 +01:00
|
|
|
this.$el.empty().append( this.view.el ).addClass('rendered');
|
2013-11-29 06:17:11 +01:00
|
|
|
this.$el.append( '<br class="clear"/>' );
|
2013-11-13 21:58:05 +01:00
|
|
|
},
|
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
// Defines search element container
|
|
|
|
searchContainer: $( '#wpbody h2:first' ),
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Search input and view
|
|
|
|
// for current theme collection
|
|
|
|
search: function() {
|
|
|
|
var view,
|
|
|
|
self = this;
|
|
|
|
|
2013-12-05 01:16:10 +01:00
|
|
|
// Don't render the search if there is only one theme
|
|
|
|
if ( themes.data.themes.length === 1 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
view = new this.SearchView({
|
|
|
|
collection: self.collection,
|
|
|
|
parent: this
|
|
|
|
});
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
// Render and append after screen title
|
|
|
|
view.render();
|
2014-03-11 08:47:15 +01:00
|
|
|
this.searchContainer
|
2014-07-18 05:40:16 +02:00
|
|
|
.append( $.parseHTML( '<label class="screen-reader-text" for="wp-filter-search-input">' + l10n.search + '</label>' ) )
|
2013-12-09 08:41:10 +01:00
|
|
|
.append( view.el );
|
2013-11-13 21:58:05 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Checks when the user gets close to the bottom
|
|
|
|
// of the mage and triggers a theme:scroll event
|
|
|
|
scroller: function() {
|
|
|
|
var self = this,
|
|
|
|
bottom, threshold;
|
|
|
|
|
|
|
|
bottom = this.window.scrollTop() + self.window.height();
|
|
|
|
threshold = self.$el.offset().top + self.$el.outerHeight( false ) - self.window.height();
|
|
|
|
threshold = Math.round( threshold * 0.9 );
|
|
|
|
|
|
|
|
if ( bottom > threshold ) {
|
|
|
|
this.trigger( 'theme:scroll' );
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
2013-11-13 21:58:05 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Set up the Collection for our theme data
|
|
|
|
// @has 'id' 'name' 'screenshot' 'author' 'authorURI' 'version' 'active' ...
|
|
|
|
themes.Collection = Backbone.Collection.extend({
|
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
model: themes.Model,
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
// Search terms
|
|
|
|
terms: '',
|
|
|
|
|
|
|
|
// Controls searching on the current theme collection
|
|
|
|
// and triggers an update event
|
|
|
|
doSearch: function( value ) {
|
|
|
|
|
2013-12-02 08:16:10 +01:00
|
|
|
// Don't do anything if we've already done this search
|
|
|
|
// Useful because the Search handler fires multiple times per keystroke
|
|
|
|
if ( this.terms === value ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Updates terms with the value passed
|
|
|
|
this.terms = value;
|
|
|
|
|
|
|
|
// If we have terms, run a search...
|
|
|
|
if ( this.terms.length > 0 ) {
|
|
|
|
this.search( this.terms );
|
|
|
|
}
|
|
|
|
|
|
|
|
// If search is blank, show all themes
|
|
|
|
// Useful for resetting the views when you clean the input
|
|
|
|
if ( this.terms === '' ) {
|
|
|
|
this.reset( themes.data.themes );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Trigger an 'update' event
|
|
|
|
this.trigger( 'update' );
|
|
|
|
},
|
2013-12-02 01:55:09 +01:00
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Performs a search within the collection
|
|
|
|
// @uses RegExp
|
|
|
|
search: function( term ) {
|
2013-12-05 20:15:11 +01:00
|
|
|
var match, results, haystack;
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
// Start with a full collection
|
2013-12-05 20:15:11 +01:00
|
|
|
this.reset( themes.data.themes, { silent: true } );
|
2013-11-13 21:58:05 +01:00
|
|
|
|
2014-03-21 22:04:15 +01:00
|
|
|
// Escape the term string for RegExp meta characters
|
|
|
|
term = term.replace( /[-\/\\^$*+?.()|[\]{}]/g, '\\$&' );
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Consider spaces as word delimiters and match the whole string
|
|
|
|
// so matching terms can be combined
|
2014-03-21 22:04:15 +01:00
|
|
|
term = term.replace( / /g, ')(?=.*' );
|
2013-11-13 21:58:05 +01:00
|
|
|
match = new RegExp( '^(?=.*' + term + ').+', 'i' );
|
|
|
|
|
|
|
|
// Find results
|
|
|
|
// _.filter and .test
|
2013-12-05 20:15:11 +01:00
|
|
|
results = this.filter( function( data ) {
|
2014-01-08 22:29:10 +01:00
|
|
|
haystack = _.union( data.get( 'name' ), data.get( 'id' ), data.get( 'description' ), data.get( 'author' ), data.get( 'tags' ) );
|
2013-11-13 21:58:05 +01:00
|
|
|
|
2013-12-05 20:57:11 +01:00
|
|
|
if ( match.test( data.get( 'author' ) ) && term.length > 2 ) {
|
2013-11-13 21:58:05 +01:00
|
|
|
data.set( 'displayAuthor', true );
|
|
|
|
}
|
|
|
|
|
|
|
|
return match.test( haystack );
|
|
|
|
});
|
|
|
|
|
2014-06-29 11:16:14 +02:00
|
|
|
if ( results.length === 0 ) {
|
|
|
|
this.trigger( 'query:empty' );
|
|
|
|
} else {
|
|
|
|
$( 'body' ).removeClass( 'no-results' );
|
|
|
|
}
|
|
|
|
|
2013-12-05 20:15:11 +01:00
|
|
|
this.reset( results );
|
2013-11-13 21:58:05 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Paginates the collection with a helper method
|
|
|
|
// that slices the collection
|
|
|
|
paginate: function( instance ) {
|
|
|
|
var collection = this;
|
|
|
|
instance = instance || 0;
|
|
|
|
|
2014-03-26 18:46:16 +01:00
|
|
|
// Themes per instance are set at 20
|
|
|
|
collection = _( collection.rest( 20 * instance ) );
|
|
|
|
collection = _( collection.first( 20 ) );
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
return collection;
|
2014-03-28 22:49:14 +01:00
|
|
|
},
|
|
|
|
|
2014-04-04 01:53:15 +02:00
|
|
|
count: false,
|
|
|
|
|
2014-03-28 22:49:14 +01:00
|
|
|
// Handles requests for more themes
|
|
|
|
// and caches results
|
|
|
|
//
|
|
|
|
// When we are missing a cache object we fire an apiCall()
|
|
|
|
// which triggers events of `query:success` or `query:fail`
|
2014-04-15 03:16:14 +02:00
|
|
|
query: function( request ) {
|
2014-03-28 22:49:14 +01:00
|
|
|
/**
|
|
|
|
* @static
|
|
|
|
* @type Array
|
|
|
|
*/
|
|
|
|
var queries = this.queries,
|
|
|
|
self = this,
|
|
|
|
query, isPaginated, count;
|
|
|
|
|
2014-04-04 01:53:15 +02:00
|
|
|
// Store current query request args
|
|
|
|
// for later use with the event `theme:end`
|
|
|
|
this.currentQuery.request = request;
|
|
|
|
|
2014-03-28 22:49:14 +01:00
|
|
|
// Search the query cache for matches.
|
|
|
|
query = _.find( queries, function( query ) {
|
|
|
|
return _.isEqual( query.request, request );
|
|
|
|
});
|
|
|
|
|
|
|
|
// If the request matches the stored currentQuery.request
|
|
|
|
// it means we have a paginated request.
|
|
|
|
isPaginated = _.has( request, 'page' );
|
|
|
|
|
|
|
|
// Reset the internal api page counter for non paginated queries.
|
|
|
|
if ( ! isPaginated ) {
|
|
|
|
this.currentQuery.page = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, send a new API call and add it to the cache.
|
2014-04-04 01:53:15 +02:00
|
|
|
if ( ! query && ! isPaginated ) {
|
2014-04-15 03:16:14 +02:00
|
|
|
query = this.apiCall( request ).done( function( data ) {
|
2014-04-15 00:06:15 +02:00
|
|
|
|
2014-03-28 22:49:14 +01:00
|
|
|
// Update the collection with the queried data.
|
2014-04-15 00:06:15 +02:00
|
|
|
if ( data.themes ) {
|
|
|
|
self.reset( data.themes );
|
|
|
|
count = data.info.results;
|
|
|
|
// Store the results and the query request
|
|
|
|
queries.push( { themes: data.themes, request: request, total: count } );
|
|
|
|
}
|
2014-03-28 22:49:14 +01:00
|
|
|
|
|
|
|
// Trigger a collection refresh event
|
|
|
|
// and a `query:success` event with a `count` argument.
|
|
|
|
self.trigger( 'update' );
|
|
|
|
self.trigger( 'query:success', count );
|
|
|
|
|
2014-04-15 00:06:15 +02:00
|
|
|
if ( data.themes && data.themes.length === 0 ) {
|
2014-04-02 00:20:14 +02:00
|
|
|
self.trigger( 'query:empty' );
|
|
|
|
}
|
|
|
|
|
2014-03-28 22:49:14 +01:00
|
|
|
}).fail( function() {
|
|
|
|
self.trigger( 'query:fail' );
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
// If it's a paginated request we need to fetch more themes...
|
|
|
|
if ( isPaginated ) {
|
2014-04-15 03:16:14 +02:00
|
|
|
return this.apiCall( request, isPaginated ).done( function( data ) {
|
2014-03-28 22:49:14 +01:00
|
|
|
// Add the new themes to the current collection
|
|
|
|
// @todo update counter
|
|
|
|
self.add( data.themes );
|
|
|
|
self.trigger( 'query:success' );
|
|
|
|
|
2014-03-29 10:09:14 +01:00
|
|
|
// We are done loading themes for now.
|
|
|
|
self.loadingThemes = false;
|
|
|
|
|
2014-03-28 22:49:14 +01:00
|
|
|
}).fail( function() {
|
|
|
|
self.trigger( 'query:fail' );
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-04-02 00:20:14 +02:00
|
|
|
if ( query.themes.length === 0 ) {
|
|
|
|
self.trigger( 'query:empty' );
|
|
|
|
} else {
|
|
|
|
$( 'body' ).removeClass( 'no-results' );
|
|
|
|
}
|
|
|
|
|
2014-03-28 22:49:14 +01:00
|
|
|
// Only trigger an update event since we already have the themes
|
|
|
|
// on our cached object
|
2014-04-04 01:53:15 +02:00
|
|
|
if ( _.isNumber( query.total ) ) {
|
|
|
|
this.count = query.total;
|
|
|
|
}
|
|
|
|
|
2014-04-15 03:16:14 +02:00
|
|
|
this.reset( query.themes );
|
2014-04-04 01:53:15 +02:00
|
|
|
if ( ! query.total ) {
|
|
|
|
this.count = this.length;
|
|
|
|
}
|
|
|
|
|
2014-03-28 22:49:14 +01:00
|
|
|
this.trigger( 'update' );
|
2014-04-15 03:16:14 +02:00
|
|
|
this.trigger( 'query:success', this.count );
|
2014-03-28 22:49:14 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// Local cache array for API queries
|
|
|
|
queries: [],
|
|
|
|
|
|
|
|
// Keep track of current query so we can handle pagination
|
|
|
|
currentQuery: {
|
|
|
|
page: 1,
|
|
|
|
request: {}
|
|
|
|
},
|
|
|
|
|
2014-04-05 22:28:14 +02:00
|
|
|
// Send request to api.wordpress.org/themes
|
2014-04-15 03:16:14 +02:00
|
|
|
apiCall: function( request, paginated ) {
|
|
|
|
return wp.ajax.send( 'query-themes', {
|
2014-03-28 22:49:14 +01:00
|
|
|
data: {
|
2014-04-15 03:16:14 +02:00
|
|
|
// Request data
|
2014-03-28 22:49:14 +01:00
|
|
|
request: _.extend({
|
2014-04-15 03:16:14 +02:00
|
|
|
per_page: 100,
|
|
|
|
fields: {
|
|
|
|
description: true,
|
|
|
|
tested: true,
|
|
|
|
requires: true,
|
|
|
|
rating: true,
|
|
|
|
downloaded: true,
|
|
|
|
downloadLink: true,
|
|
|
|
last_updated: true,
|
|
|
|
homepage: true,
|
|
|
|
num_ratings: true
|
|
|
|
}
|
2014-03-28 22:49:14 +01:00
|
|
|
}, request)
|
|
|
|
},
|
|
|
|
|
|
|
|
beforeSend: function() {
|
|
|
|
if ( ! paginated ) {
|
|
|
|
// Spin it
|
2014-07-18 05:40:16 +02:00
|
|
|
$( 'body' ).addClass( 'loading-content' ).removeClass( 'no-results' );
|
2014-03-28 22:49:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2014-03-29 10:09:14 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Static status controller for when we are loading themes.
|
|
|
|
loadingThemes: false
|
2013-11-13 21:58:05 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// This is the view that controls each theme item
|
|
|
|
// that will be displayed on the screen
|
|
|
|
themes.view.Theme = wp.Backbone.View.extend({
|
|
|
|
|
|
|
|
// Wrap theme data on a div.theme element
|
|
|
|
className: 'theme',
|
|
|
|
|
|
|
|
// Reflects which theme view we have
|
|
|
|
// 'grid' (default) or 'detail'
|
|
|
|
state: 'grid',
|
|
|
|
|
|
|
|
// The HTML template for each element to be rendered
|
|
|
|
html: themes.template( 'theme' ),
|
|
|
|
|
|
|
|
events: {
|
2014-03-11 08:47:15 +01:00
|
|
|
'click': themes.isInstall ? 'preview': 'expand',
|
|
|
|
'keydown': themes.isInstall ? 'preview': 'expand',
|
|
|
|
'touchend': themes.isInstall ? 'preview': 'expand',
|
2014-03-28 04:16:15 +01:00
|
|
|
'keyup': 'addFocus',
|
2013-12-09 20:38:10 +01:00
|
|
|
'touchmove': 'preventExpand'
|
2013-11-13 21:58:05 +01:00
|
|
|
},
|
|
|
|
|
2013-12-09 20:38:10 +01:00
|
|
|
touchDrag: false,
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
render: function() {
|
|
|
|
var data = this.model.toJSON();
|
|
|
|
// Render themes using the html template
|
2014-01-22 22:00:11 +01:00
|
|
|
this.$el.html( this.html( data ) ).attr({
|
|
|
|
tabindex: 0,
|
|
|
|
'aria-describedby' : data.id + '-action ' + data.id + '-name'
|
|
|
|
});
|
2014-01-08 22:35:09 +01:00
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Renders active theme styles
|
|
|
|
this.activeTheme();
|
|
|
|
|
|
|
|
if ( this.model.get( 'displayAuthor' ) ) {
|
|
|
|
this.$el.addClass( 'display-author' );
|
|
|
|
}
|
2014-04-08 01:04:15 +02:00
|
|
|
|
|
|
|
if ( this.model.get( 'installed' ) ) {
|
|
|
|
this.$el.addClass( 'is-installed' );
|
|
|
|
}
|
2013-11-13 21:58:05 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Adds a class to the currently active theme
|
|
|
|
// and to the overlay in detailed view mode
|
|
|
|
activeTheme: function() {
|
|
|
|
if ( this.model.get( 'active' ) ) {
|
|
|
|
this.$el.addClass( 'active' );
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2014-03-28 04:16:15 +01:00
|
|
|
// Add class of focus to the theme we are focused on.
|
|
|
|
addFocus: function() {
|
|
|
|
var $themeToFocus = ( $( ':focus' ).hasClass( 'theme' ) ) ? $( ':focus' ) : $(':focus').parents('.theme');
|
|
|
|
|
|
|
|
$('.theme.focus').removeClass('focus');
|
|
|
|
$themeToFocus.addClass('focus');
|
|
|
|
},
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Single theme overlay screen
|
|
|
|
// It's shown when clicking a theme
|
|
|
|
expand: function( event ) {
|
|
|
|
var self = this;
|
|
|
|
|
2014-01-08 22:35:09 +01:00
|
|
|
event = event || window.event;
|
|
|
|
|
|
|
|
// 'enter' and 'space' keys expand the details view when a theme is :focused
|
|
|
|
if ( event.type === 'keydown' && ( event.which !== 13 && event.which !== 32 ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-12-09 20:38:10 +01:00
|
|
|
// Bail if the user scrolled on a touch device
|
|
|
|
if ( this.touchDrag === true ) {
|
|
|
|
return this.touchDrag = false;
|
|
|
|
}
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Prevent the modal from showing when the user clicks
|
|
|
|
// one of the direct action buttons
|
2013-12-02 01:55:09 +01:00
|
|
|
if ( $( event.target ).is( '.theme-actions a' ) ) {
|
2013-11-13 21:58:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-01-08 22:35:09 +01:00
|
|
|
// Set focused theme to current element
|
|
|
|
themes.focusedTheme = this.$el;
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
this.trigger( 'theme:expand', self.model.cid );
|
2013-12-09 20:38:10 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
preventExpand: function() {
|
|
|
|
this.touchDrag = true;
|
2014-03-11 08:47:15 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
preview: function( event ) {
|
2014-04-04 01:53:15 +02:00
|
|
|
var self = this,
|
2014-04-04 07:23:14 +02:00
|
|
|
current, preview;
|
2014-04-04 01:53:15 +02:00
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
// Bail if the user scrolled on a touch device
|
|
|
|
if ( this.touchDrag === true ) {
|
|
|
|
return this.touchDrag = false;
|
|
|
|
}
|
|
|
|
|
2014-04-08 01:04:15 +02:00
|
|
|
// Allow direct link path to installing a theme.
|
|
|
|
if ( $( event.target ).hasClass( 'button-primary' ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-03-28 04:16:15 +01:00
|
|
|
// 'enter' and 'space' keys expand the details view when a theme is :focused
|
|
|
|
if ( event.type === 'keydown' && ( event.which !== 13 && event.which !== 32 ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// pressing enter while focused on the buttons shouldn't open the preview
|
|
|
|
if ( event.type === 'keydown' && event.which !== 13 && $( ':focus' ).hasClass( 'button' ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
event = event || window.event;
|
|
|
|
|
2014-04-04 01:53:15 +02:00
|
|
|
// Set focus to current theme.
|
|
|
|
themes.focusedTheme = this.$el;
|
|
|
|
|
|
|
|
// Construct a new Preview view.
|
2014-04-04 07:23:14 +02:00
|
|
|
preview = new themes.view.Preview({
|
2014-03-11 08:47:15 +01:00
|
|
|
model: this.model
|
|
|
|
});
|
|
|
|
|
2014-04-04 01:53:15 +02:00
|
|
|
// Render the view and append it.
|
2014-03-11 08:47:15 +01:00
|
|
|
preview.render();
|
2014-04-08 18:24:14 +02:00
|
|
|
this.setNavButtonsState();
|
2014-04-15 00:06:15 +02:00
|
|
|
|
|
|
|
// Hide previous/next navigation if there is only one theme
|
|
|
|
if ( this.model.collection.length === 1 ) {
|
|
|
|
preview.$el.addClass( 'no-navigation' );
|
|
|
|
} else {
|
|
|
|
preview.$el.removeClass( 'no-navigation' );
|
|
|
|
}
|
|
|
|
|
2014-06-27 18:06:15 +02:00
|
|
|
// Append preview
|
2014-03-11 08:47:15 +01:00
|
|
|
$( 'div.wrap' ).append( preview.el );
|
2014-04-04 01:53:15 +02:00
|
|
|
|
|
|
|
// Listen to our preview object
|
|
|
|
// for `theme:next` and `theme:previous` events.
|
|
|
|
this.listenTo( preview, 'theme:next', function() {
|
|
|
|
|
|
|
|
// Keep local track of current theme model.
|
|
|
|
current = self.model;
|
|
|
|
|
|
|
|
// If we have ventured away from current model update the current model position.
|
|
|
|
if ( ! _.isUndefined( self.current ) ) {
|
|
|
|
current = self.current;
|
|
|
|
}
|
|
|
|
|
2014-06-19 03:36:14 +02:00
|
|
|
// Get next theme model.
|
2014-04-04 01:53:15 +02:00
|
|
|
self.current = self.model.collection.at( self.model.collection.indexOf( current ) + 1 );
|
|
|
|
|
|
|
|
// If we have no more themes, bail.
|
|
|
|
if ( _.isUndefined( self.current ) ) {
|
2014-04-08 01:04:15 +02:00
|
|
|
self.options.parent.parent.trigger( 'theme:end' );
|
2014-04-04 01:53:15 +02:00
|
|
|
return self.current = current;
|
|
|
|
}
|
|
|
|
|
2014-06-27 18:06:15 +02:00
|
|
|
preview.model = self.current;
|
2014-04-04 01:53:15 +02:00
|
|
|
|
|
|
|
// Render and append.
|
|
|
|
preview.render();
|
2014-04-08 05:57:15 +02:00
|
|
|
this.setNavButtonsState();
|
2014-04-08 01:04:15 +02:00
|
|
|
$( '.next-theme' ).focus();
|
2014-04-04 01:53:15 +02:00
|
|
|
})
|
|
|
|
.listenTo( preview, 'theme:previous', function() {
|
|
|
|
|
|
|
|
// Keep track of current theme model.
|
|
|
|
current = self.model;
|
|
|
|
|
2014-04-08 18:24:14 +02:00
|
|
|
// Bail early if we are at the beginning of the collection
|
|
|
|
if ( self.model.collection.indexOf( self.current ) === 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-04-04 01:53:15 +02:00
|
|
|
// If we have ventured away from current model update the current model position.
|
|
|
|
if ( ! _.isUndefined( self.current ) ) {
|
|
|
|
current = self.current;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get previous theme model.
|
|
|
|
self.current = self.model.collection.at( self.model.collection.indexOf( current ) - 1 );
|
|
|
|
|
|
|
|
// If we have no more themes, bail.
|
|
|
|
if ( _.isUndefined( self.current ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-06-27 18:06:15 +02:00
|
|
|
preview.model = self.current;
|
2014-04-04 01:53:15 +02:00
|
|
|
|
|
|
|
// Render and append.
|
|
|
|
preview.render();
|
2014-04-08 05:57:15 +02:00
|
|
|
this.setNavButtonsState();
|
2014-04-08 01:04:15 +02:00
|
|
|
$( '.previous-theme' ).focus();
|
2014-04-04 01:53:15 +02:00
|
|
|
});
|
2014-04-08 18:24:14 +02:00
|
|
|
|
|
|
|
this.listenTo( preview, 'preview:close', function() {
|
2014-04-09 02:58:15 +02:00
|
|
|
self.current = self.model;
|
2014-04-08 18:24:14 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
// Handles .disabled classes for previous/next buttons in theme installer preview
|
|
|
|
setNavButtonsState: function() {
|
|
|
|
var $themeInstaller = $( '.theme-install-overlay' ),
|
|
|
|
current = _.isUndefined( this.current ) ? this.model : this.current;
|
|
|
|
|
|
|
|
// Disable previous at the zero position
|
|
|
|
if ( 0 === this.model.collection.indexOf( current ) ) {
|
|
|
|
$themeInstaller.find( '.previous-theme' ).addClass( 'disabled' );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Disable next if the next model is undefined
|
|
|
|
if ( _.isUndefined( this.model.collection.at( this.model.collection.indexOf( current ) + 1 ) ) ) {
|
|
|
|
$themeInstaller.find( '.next-theme' ).addClass( 'disabled' );
|
|
|
|
}
|
2013-11-13 21:58:05 +01:00
|
|
|
}
|
2013-07-05 17:15:58 +02:00
|
|
|
});
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Theme Details view
|
|
|
|
// Set ups a modal overlay with the expanded theme data
|
|
|
|
themes.view.Details = wp.Backbone.View.extend({
|
|
|
|
|
|
|
|
// Wrap theme data on a div.theme element
|
2013-11-20 20:44:12 +01:00
|
|
|
className: 'theme-overlay',
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
events: {
|
|
|
|
'click': 'collapse',
|
|
|
|
'click .delete-theme': 'deleteTheme',
|
|
|
|
'click .left': 'previousTheme',
|
|
|
|
'click .right': 'nextTheme'
|
|
|
|
},
|
|
|
|
|
|
|
|
// The HTML template for the theme overlay
|
|
|
|
html: themes.template( 'theme-single' ),
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
var data = this.model.toJSON();
|
|
|
|
this.$el.html( this.html( data ) );
|
|
|
|
// Renders active theme styles
|
|
|
|
this.activeTheme();
|
|
|
|
// Set up navigation events
|
|
|
|
this.navigation();
|
2013-12-06 20:42:11 +01:00
|
|
|
// Checks screenshot size
|
|
|
|
this.screenshotCheck( this.$el );
|
2014-01-08 22:35:09 +01:00
|
|
|
// Contain "tabbing" inside the overlay
|
|
|
|
this.containFocus( this.$el );
|
2013-11-13 21:58:05 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Adds a class to the currently active theme
|
|
|
|
// and to the overlay in detailed view mode
|
|
|
|
activeTheme: function() {
|
|
|
|
// Check the model has the active property
|
2013-11-20 20:44:12 +01:00
|
|
|
this.$el.toggleClass( 'active', this.model.get( 'active' ) );
|
2013-11-13 21:58:05 +01:00
|
|
|
},
|
|
|
|
|
2014-01-08 22:35:09 +01:00
|
|
|
// Keeps :focus within the theme details elements
|
|
|
|
containFocus: function( $el ) {
|
|
|
|
var $target;
|
|
|
|
|
|
|
|
// Move focus to the primary action
|
|
|
|
_.delay( function() {
|
|
|
|
$( '.theme-wrap a.button-primary:visible' ).focus();
|
|
|
|
}, 500 );
|
|
|
|
|
|
|
|
$el.on( 'keydown.wp-themes', function( event ) {
|
|
|
|
|
|
|
|
// Tab key
|
|
|
|
if ( event.which === 9 ) {
|
|
|
|
$target = $( event.target );
|
|
|
|
|
|
|
|
// Keep focus within the overlay by making the last link on theme actions
|
|
|
|
// switch focus to button.left on tabbing and vice versa
|
|
|
|
if ( $target.is( 'button.left' ) && event.shiftKey ) {
|
|
|
|
$el.find( '.theme-actions a:last-child' ).focus();
|
|
|
|
event.preventDefault();
|
|
|
|
} else if ( $target.is( '.theme-actions a:last-child' ) ) {
|
|
|
|
$el.find( 'button.left' ).focus();
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Single theme overlay screen
|
|
|
|
// It's shown when clicking a theme
|
|
|
|
collapse: function( event ) {
|
|
|
|
var self = this,
|
|
|
|
scroll;
|
|
|
|
|
|
|
|
event = event || window.event;
|
|
|
|
|
2013-12-05 05:57:10 +01:00
|
|
|
// Prevent collapsing detailed view when there is only one theme available
|
|
|
|
if ( themes.data.themes.length === 1 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Detect if the click is inside the overlay
|
|
|
|
// and don't close it unless the target was
|
|
|
|
// the div.back button
|
2014-01-08 22:35:09 +01:00
|
|
|
if ( $( event.target ).is( '.theme-backdrop' ) || $( event.target ).is( '.close' ) || event.keyCode === 27 ) {
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
// Add a temporary closing class while overlay fades out
|
|
|
|
$( 'body' ).addClass( 'closing-overlay' );
|
|
|
|
|
|
|
|
// With a quick fade out animation
|
|
|
|
this.$el.fadeOut( 130, function() {
|
|
|
|
// Clicking outside the modal box closes the overlay
|
2014-02-27 01:18:13 +01:00
|
|
|
$( 'body' ).removeClass( 'closing-overlay' );
|
2013-11-13 21:58:05 +01:00
|
|
|
// Handle event cleanup
|
|
|
|
self.closeOverlay();
|
|
|
|
|
|
|
|
// Get scroll position to avoid jumping to the top
|
|
|
|
scroll = document.body.scrollTop;
|
|
|
|
|
|
|
|
// Clean the url structure
|
2014-02-25 20:22:13 +01:00
|
|
|
themes.router.navigate( themes.router.baseUrl( '' ) );
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
// Restore scroll position
|
|
|
|
document.body.scrollTop = scroll;
|
2014-01-08 22:35:09 +01:00
|
|
|
|
|
|
|
// Return focus to the theme div
|
|
|
|
if ( themes.focusedTheme ) {
|
|
|
|
themes.focusedTheme.focus();
|
|
|
|
}
|
2013-11-13 21:58:05 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-12-07 04:11:10 +01:00
|
|
|
// Handles .disabled classes for next/previous buttons
|
2013-11-13 21:58:05 +01:00
|
|
|
navigation: function() {
|
2013-12-01 06:59:11 +01:00
|
|
|
|
|
|
|
// Disable Left/Right when at the start or end of the collection
|
|
|
|
if ( this.model.cid === this.model.collection.at(0).cid ) {
|
|
|
|
this.$el.find( '.left' ).addClass( 'disabled' );
|
|
|
|
}
|
|
|
|
if ( this.model.cid === this.model.collection.at( this.model.collection.length - 1 ).cid ) {
|
|
|
|
this.$el.find( '.right' ).addClass( 'disabled' );
|
|
|
|
}
|
2013-11-13 21:58:05 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Performs the actions to effectively close
|
|
|
|
// the theme details overlay
|
|
|
|
closeOverlay: function() {
|
2014-08-01 22:15:15 +02:00
|
|
|
$( 'body' ).removeClass( 'modal-open' );
|
2013-11-13 21:58:05 +01:00
|
|
|
this.remove();
|
|
|
|
this.unbind();
|
|
|
|
this.trigger( 'theme:collapse' );
|
|
|
|
},
|
|
|
|
|
2014-04-08 05:57:15 +02:00
|
|
|
// Confirmation dialog for deleting a theme
|
2013-11-13 21:58:05 +01:00
|
|
|
deleteTheme: function() {
|
|
|
|
return confirm( themes.data.settings.confirmDelete );
|
|
|
|
},
|
|
|
|
|
|
|
|
nextTheme: function() {
|
|
|
|
var self = this;
|
|
|
|
self.trigger( 'theme:next', self.model.cid );
|
2014-04-08 05:57:15 +02:00
|
|
|
return false;
|
2013-11-13 21:58:05 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
previousTheme: function() {
|
|
|
|
var self = this;
|
|
|
|
self.trigger( 'theme:previous', self.model.cid );
|
2014-04-08 05:57:15 +02:00
|
|
|
return false;
|
2013-12-06 20:42:11 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Checks if the theme screenshot is the old 300px width version
|
|
|
|
// and adds a corresponding class if it's true
|
|
|
|
screenshotCheck: function( el ) {
|
2013-12-07 08:52:11 +01:00
|
|
|
var screenshot, image;
|
2013-12-06 20:42:11 +01:00
|
|
|
|
|
|
|
screenshot = el.find( '.screenshot img' );
|
|
|
|
image = new Image();
|
|
|
|
image.src = screenshot.attr( 'src' );
|
|
|
|
|
|
|
|
// Width check
|
2013-12-07 02:59:10 +01:00
|
|
|
if ( image.width && image.width <= 300 ) {
|
2013-12-07 08:52:11 +01:00
|
|
|
el.addClass( 'small-screenshot' );
|
2013-12-06 20:42:11 +01:00
|
|
|
}
|
2013-11-13 21:58:05 +01:00
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
// Theme Preview view
|
|
|
|
// Set ups a modal overlay with the expanded theme data
|
2014-04-04 01:53:15 +02:00
|
|
|
themes.view.Preview = themes.view.Details.extend({
|
2014-03-11 08:47:15 +01:00
|
|
|
|
|
|
|
className: 'wp-full-overlay expanded',
|
2014-04-08 05:57:15 +02:00
|
|
|
el: '.theme-install-overlay',
|
2014-03-11 08:47:15 +01:00
|
|
|
|
|
|
|
events: {
|
|
|
|
'click .close-full-overlay': 'close',
|
2014-04-04 01:53:15 +02:00
|
|
|
'click .collapse-sidebar': 'collapse',
|
|
|
|
'click .previous-theme': 'previousTheme',
|
2014-04-08 18:24:14 +02:00
|
|
|
'click .next-theme': 'nextTheme',
|
|
|
|
'keyup': 'keyEvent'
|
2014-03-11 08:47:15 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// The HTML template for the theme preview
|
|
|
|
html: themes.template( 'theme-preview' ),
|
|
|
|
|
|
|
|
render: function() {
|
2014-04-09 02:58:15 +02:00
|
|
|
var data = this.model.toJSON();
|
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
this.$el.html( this.html( data ) );
|
|
|
|
|
|
|
|
themes.router.navigate( themes.router.baseUrl( '?theme=' + this.model.get( 'id' ) ), { replace: true } );
|
|
|
|
|
|
|
|
this.$el.fadeIn( 200, function() {
|
2014-04-08 18:24:14 +02:00
|
|
|
$( 'body' ).addClass( 'theme-installer-active full-overlay-active' );
|
2014-04-04 01:53:15 +02:00
|
|
|
$( '.close-full-overlay' ).focus();
|
2014-03-11 08:47:15 +01:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
close: function() {
|
|
|
|
this.$el.fadeOut( 200, function() {
|
2014-04-08 18:24:14 +02:00
|
|
|
$( 'body' ).removeClass( 'theme-installer-active full-overlay-active' );
|
2014-04-04 01:53:15 +02:00
|
|
|
|
|
|
|
// Return focus to the theme div
|
|
|
|
if ( themes.focusedTheme ) {
|
|
|
|
themes.focusedTheme.focus();
|
|
|
|
}
|
2014-03-11 08:47:15 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
themes.router.navigate( themes.router.baseUrl( '' ) );
|
2014-04-08 18:24:14 +02:00
|
|
|
this.trigger( 'preview:close' );
|
2014-06-27 18:06:15 +02:00
|
|
|
this.undelegateEvents();
|
2014-04-15 00:06:15 +02:00
|
|
|
this.unbind();
|
2014-03-11 08:47:15 +01:00
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
|
|
|
collapse: function() {
|
2014-04-02 00:20:14 +02:00
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
this.$el.toggleClass( 'collapsed' ).toggleClass( 'expanded' );
|
|
|
|
return false;
|
2014-04-08 18:24:14 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
keyEvent: function( event ) {
|
|
|
|
// The escape key closes the preview
|
|
|
|
if ( event.keyCode === 27 ) {
|
|
|
|
this.undelegateEvents();
|
|
|
|
this.close();
|
|
|
|
}
|
|
|
|
// The right arrow key, next theme
|
|
|
|
if ( event.keyCode === 39 ) {
|
|
|
|
_.once( this.nextTheme() );
|
|
|
|
}
|
|
|
|
|
|
|
|
// The left arrow key, previous theme
|
|
|
|
if ( event.keyCode === 37 ) {
|
|
|
|
this.previousTheme();
|
|
|
|
}
|
2014-03-11 08:47:15 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-11-20 20:44:12 +01:00
|
|
|
// Controls the rendering of div.themes,
|
2013-11-13 21:58:05 +01:00
|
|
|
// a wrapper that will hold all the theme elements
|
|
|
|
themes.view.Themes = wp.Backbone.View.extend({
|
|
|
|
|
2013-11-20 20:44:12 +01:00
|
|
|
className: 'themes',
|
2013-12-07 04:11:10 +01:00
|
|
|
$overlay: $( 'div.theme-overlay' ),
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Number to keep track of scroll position
|
|
|
|
// while in theme-overlay mode
|
|
|
|
index: 0,
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// The theme count element
|
2013-11-20 20:44:12 +01:00
|
|
|
count: $( '.theme-count' ),
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
initialize: function( options ) {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
// Set up parent
|
|
|
|
this.parent = options.parent;
|
|
|
|
|
|
|
|
// Set current view to [grid]
|
|
|
|
this.setView( 'grid' );
|
|
|
|
|
|
|
|
// Move the active theme to the beginning of the collection
|
|
|
|
self.currentTheme();
|
|
|
|
|
|
|
|
// When the collection is updated by user input...
|
|
|
|
this.listenTo( self.collection, 'update', function() {
|
|
|
|
self.parent.page = 0;
|
|
|
|
self.currentTheme();
|
|
|
|
self.render( this );
|
|
|
|
});
|
|
|
|
|
2014-03-28 22:49:14 +01:00
|
|
|
// Update theme count to full result set when available.
|
|
|
|
this.listenTo( self.collection, 'query:success', function( count ) {
|
|
|
|
if ( _.isNumber( count ) ) {
|
|
|
|
self.count.text( count );
|
|
|
|
} else {
|
|
|
|
self.count.text( self.collection.length );
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-04-02 00:20:14 +02:00
|
|
|
this.listenTo( self.collection, 'query:empty', function() {
|
|
|
|
$( 'body' ).addClass( 'no-results' );
|
|
|
|
});
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
this.listenTo( this.parent, 'theme:scroll', function() {
|
|
|
|
self.renderThemes( self.parent.page );
|
|
|
|
});
|
2013-12-07 04:11:10 +01:00
|
|
|
|
2014-02-25 20:22:13 +01:00
|
|
|
this.listenTo( this.parent, 'theme:close', function() {
|
|
|
|
if ( self.overlay ) {
|
|
|
|
self.overlay.closeOverlay();
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
2013-12-07 04:11:10 +01:00
|
|
|
// Bind keyboard events.
|
2014-03-28 22:49:14 +01:00
|
|
|
$( 'body' ).on( 'keyup', function( event ) {
|
2013-12-09 08:07:10 +01:00
|
|
|
if ( ! self.overlay ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-12-07 04:11:10 +01:00
|
|
|
// Pressing the right arrow key fires a theme:next event
|
|
|
|
if ( event.keyCode === 39 ) {
|
|
|
|
self.overlay.nextTheme();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pressing the left arrow key fires a theme:previous event
|
|
|
|
if ( event.keyCode === 37 ) {
|
|
|
|
self.overlay.previousTheme();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pressing the escape key fires a theme:collapse event
|
|
|
|
if ( event.keyCode === 27 ) {
|
|
|
|
self.overlay.collapse( event );
|
|
|
|
}
|
|
|
|
});
|
2013-11-13 21:58:05 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Manages rendering of theme pages
|
|
|
|
// and keeping theme count in sync
|
|
|
|
render: function() {
|
|
|
|
// Clear the DOM, please
|
|
|
|
this.$el.html( '' );
|
|
|
|
|
2013-12-05 01:16:10 +01:00
|
|
|
// If the user doesn't have switch capabilities
|
|
|
|
// or there is only one theme in the collection
|
|
|
|
// render the detailed view of the active theme
|
|
|
|
if ( themes.data.themes.length === 1 ) {
|
|
|
|
|
|
|
|
// Constructs the view
|
|
|
|
this.singleTheme = new themes.view.Details({
|
|
|
|
model: this.collection.models[0]
|
|
|
|
});
|
|
|
|
|
|
|
|
// Render and apply a 'single-theme' class to our container
|
|
|
|
this.singleTheme.render();
|
|
|
|
this.$el.addClass( 'single-theme' );
|
|
|
|
this.$el.append( this.singleTheme.el );
|
|
|
|
}
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Generate the themes
|
|
|
|
// Using page instance
|
2014-03-28 22:49:14 +01:00
|
|
|
// While checking the collection has items
|
|
|
|
if ( this.options.collection.size() > 0 ) {
|
|
|
|
this.renderThemes( this.parent.page );
|
|
|
|
}
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
// Display a live theme count for the collection
|
2014-04-04 01:53:15 +02:00
|
|
|
this.count.text( this.collection.count ? this.collection.count : this.collection.length );
|
2013-11-13 21:58:05 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Iterates through each instance of the collection
|
|
|
|
// and renders each theme module
|
|
|
|
renderThemes: function( page ) {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
self.instance = self.collection.paginate( page );
|
|
|
|
|
|
|
|
// If we have no more themes bail
|
2014-03-28 22:49:14 +01:00
|
|
|
if ( self.instance.size() === 0 ) {
|
|
|
|
// Fire a no-more-themes event.
|
|
|
|
this.parent.trigger( 'theme:end' );
|
2013-11-13 21:58:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the add-new stays at the end
|
|
|
|
if ( page >= 1 ) {
|
2013-11-20 20:44:12 +01:00
|
|
|
$( '.add-new-theme' ).remove();
|
2013-11-13 21:58:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Loop through the themes and setup each theme view
|
|
|
|
self.instance.each( function( theme ) {
|
|
|
|
self.theme = new themes.view.Theme({
|
2014-04-08 01:04:15 +02:00
|
|
|
model: theme,
|
|
|
|
parent: self
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Render the views...
|
|
|
|
self.theme.render();
|
2013-11-20 20:44:12 +01:00
|
|
|
// and append them to div.themes
|
2013-11-13 21:58:05 +01:00
|
|
|
self.$el.append( self.theme.el );
|
|
|
|
|
|
|
|
// Binds to theme:expand to show the modal box
|
|
|
|
// with the theme details
|
|
|
|
self.listenTo( self.theme, 'theme:expand', self.expand, self );
|
|
|
|
});
|
|
|
|
|
|
|
|
// 'Add new theme' element shown at the end of the grid
|
2013-11-20 15:09:10 +01:00
|
|
|
if ( themes.data.settings.canInstall ) {
|
2013-11-21 10:46:10 +01:00
|
|
|
this.$el.append( '<div class="theme add-new-theme"><a href="' + themes.data.settings.installURI + '"><div class="theme-screenshot"><span></span></div><h3 class="theme-name">' + l10n.addNew + '</h3></a></div>' );
|
2013-11-20 15:09:10 +01:00
|
|
|
}
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
this.parent.page++;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Grabs current theme and puts it at the beginning of the collection
|
|
|
|
currentTheme: function() {
|
|
|
|
var self = this,
|
|
|
|
current;
|
|
|
|
|
|
|
|
current = self.collection.findWhere({ active: true });
|
|
|
|
|
|
|
|
// Move the active theme to the beginning of the collection
|
|
|
|
if ( current ) {
|
|
|
|
self.collection.remove( current );
|
|
|
|
self.collection.add( current, { at:0 } );
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// Sets current view
|
|
|
|
setView: function( view ) {
|
|
|
|
return view;
|
|
|
|
},
|
|
|
|
|
|
|
|
// Renders the overlay with the ThemeDetails view
|
|
|
|
// Uses the current model data
|
|
|
|
expand: function( id ) {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
// Set the current theme model
|
|
|
|
this.model = self.collection.get( id );
|
|
|
|
|
|
|
|
// Trigger a route update for the current model
|
2014-02-25 20:22:13 +01:00
|
|
|
themes.router.navigate( themes.router.baseUrl( '?theme=' + this.model.id ) );
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
// Sets this.view to 'detail'
|
|
|
|
this.setView( 'detail' );
|
2014-08-01 22:15:15 +02:00
|
|
|
$( 'body' ).addClass( 'modal-open' );
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
// Set up the theme details view
|
|
|
|
this.overlay = new themes.view.Details({
|
2013-11-20 20:44:12 +01:00
|
|
|
model: self.model
|
2013-11-13 21:58:05 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
this.overlay.render();
|
2013-12-07 04:11:10 +01:00
|
|
|
this.$overlay.html( this.overlay.el );
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
// Bind to theme:next and theme:previous
|
|
|
|
// triggered by the arrow keys
|
|
|
|
//
|
2013-11-20 20:44:12 +01:00
|
|
|
// Keep track of the current model so we
|
|
|
|
// can infer an index position
|
2013-11-13 21:58:05 +01:00
|
|
|
this.listenTo( this.overlay, 'theme:next', function() {
|
|
|
|
// Renders the next theme on the overlay
|
2013-11-20 20:44:12 +01:00
|
|
|
self.next( [ self.model.cid ] );
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
})
|
|
|
|
.listenTo( this.overlay, 'theme:previous', function() {
|
|
|
|
// Renders the previous theme on the overlay
|
2013-11-20 20:44:12 +01:00
|
|
|
self.previous( [ self.model.cid ] );
|
2013-11-13 21:58:05 +01:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
// This method renders the next theme on the overlay modal
|
|
|
|
// based on the current position in the collection
|
2013-11-20 20:44:12 +01:00
|
|
|
// @params [model cid]
|
2013-11-13 21:58:05 +01:00
|
|
|
next: function( args ) {
|
|
|
|
var self = this,
|
|
|
|
model, nextModel;
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Get the current theme
|
|
|
|
model = self.collection.get( args[0] );
|
2013-11-20 20:44:12 +01:00
|
|
|
// Find the next model within the collection
|
|
|
|
nextModel = self.collection.at( self.collection.indexOf( model ) + 1 );
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Sanity check which also serves as a boundary test
|
|
|
|
if ( nextModel !== undefined ) {
|
|
|
|
|
|
|
|
// We have a new theme...
|
2013-11-20 20:44:12 +01:00
|
|
|
// Close the overlay
|
|
|
|
this.overlay.closeOverlay();
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Trigger a route update for the current model
|
2013-12-07 04:11:10 +01:00
|
|
|
self.theme.trigger( 'theme:expand', nextModel.cid );
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// This method renders the previous theme on the overlay modal
|
|
|
|
// based on the current position in the collection
|
2013-11-20 20:44:12 +01:00
|
|
|
// @params [model cid]
|
2013-11-13 21:58:05 +01:00
|
|
|
previous: function( args ) {
|
|
|
|
var self = this,
|
|
|
|
model, previousModel;
|
|
|
|
|
|
|
|
// Get the current theme
|
|
|
|
model = self.collection.get( args[0] );
|
2013-11-20 20:44:12 +01:00
|
|
|
// Find the previous model within the collection
|
|
|
|
previousModel = self.collection.at( self.collection.indexOf( model ) - 1 );
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
if ( previousModel !== undefined ) {
|
|
|
|
|
|
|
|
// We have a new theme...
|
2013-11-20 20:44:12 +01:00
|
|
|
// Close the overlay
|
|
|
|
this.overlay.closeOverlay();
|
2013-11-13 21:58:05 +01:00
|
|
|
|
|
|
|
// Trigger a route update for the current model
|
2013-12-07 04:11:10 +01:00
|
|
|
self.theme.trigger( 'theme:expand', previousModel.cid );
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
2013-11-13 21:58:05 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-11-20 20:44:12 +01:00
|
|
|
// Search input view controller.
|
2013-11-13 21:58:05 +01:00
|
|
|
themes.view.Search = wp.Backbone.View.extend({
|
|
|
|
|
2013-11-20 20:44:12 +01:00
|
|
|
tagName: 'input',
|
2014-07-18 05:40:16 +02:00
|
|
|
className: 'wp-filter-search',
|
|
|
|
id: 'wp-filter-search-input',
|
2014-02-25 20:22:13 +01:00
|
|
|
searching: false,
|
2013-11-13 21:58:05 +01:00
|
|
|
|
2013-11-20 20:44:12 +01:00
|
|
|
attributes: {
|
2013-12-09 08:41:10 +01:00
|
|
|
placeholder: l10n.searchPlaceholder,
|
2013-11-29 23:20:10 +01:00
|
|
|
type: 'search'
|
2013-11-13 21:58:05 +01:00
|
|
|
},
|
|
|
|
|
2013-11-20 20:44:12 +01:00
|
|
|
events: {
|
|
|
|
'input': 'search',
|
|
|
|
'keyup': 'search',
|
|
|
|
'change': 'search',
|
2014-02-25 20:22:13 +01:00
|
|
|
'search': 'search',
|
|
|
|
'blur': 'pushState'
|
|
|
|
},
|
|
|
|
|
|
|
|
initialize: function( options ) {
|
|
|
|
|
|
|
|
this.parent = options.parent;
|
|
|
|
|
|
|
|
this.listenTo( this.parent, 'theme:close', function() {
|
|
|
|
this.searching = false;
|
|
|
|
} );
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
},
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2013-11-20 20:44:12 +01:00
|
|
|
// Runs a search on the theme collection.
|
|
|
|
search: function( event ) {
|
2014-02-25 20:22:13 +01:00
|
|
|
var options = {};
|
|
|
|
|
2013-11-20 20:44:12 +01:00
|
|
|
// Clear on escape.
|
|
|
|
if ( event.type === 'keyup' && event.which === 27 ) {
|
|
|
|
event.target.value = '';
|
|
|
|
}
|
2013-12-02 01:48:09 +01:00
|
|
|
|
2014-03-15 06:14:15 +01:00
|
|
|
// Lose input focus when pressing enter
|
|
|
|
if ( event.which === 13 ) {
|
|
|
|
this.$el.trigger( 'blur' );
|
|
|
|
}
|
|
|
|
|
2013-11-20 20:44:12 +01:00
|
|
|
this.collection.doSearch( event.target.value );
|
2013-12-02 01:48:09 +01:00
|
|
|
|
2014-02-25 20:22:13 +01:00
|
|
|
// if search is initiated and key is not return
|
|
|
|
if ( this.searching && event.which !== 13 ) {
|
|
|
|
options.replace = true;
|
|
|
|
} else {
|
|
|
|
this.searching = true;
|
|
|
|
}
|
|
|
|
|
2013-12-02 01:48:09 +01:00
|
|
|
// Update the URL hash
|
2013-12-02 02:51:09 +01:00
|
|
|
if ( event.target.value ) {
|
2014-02-25 20:22:13 +01:00
|
|
|
themes.router.navigate( themes.router.baseUrl( '?search=' + event.target.value ), options );
|
2013-12-02 02:51:09 +01:00
|
|
|
} else {
|
2014-02-25 20:22:13 +01:00
|
|
|
themes.router.navigate( themes.router.baseUrl( '' ) );
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
pushState: function( event ) {
|
|
|
|
var url = themes.router.baseUrl( '' );
|
|
|
|
|
|
|
|
if ( event.target.value ) {
|
|
|
|
url = themes.router.baseUrl( '?search=' + event.target.value );
|
2013-12-02 02:51:09 +01:00
|
|
|
}
|
2014-02-25 20:22:13 +01:00
|
|
|
|
|
|
|
this.searching = false;
|
|
|
|
themes.router.navigate( url );
|
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
2013-11-13 21:58:05 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// Sets up the routes events for relevant url queries
|
|
|
|
// Listens to [theme] and [search] params
|
2014-03-11 08:47:15 +01:00
|
|
|
themes.Router = Backbone.Router.extend({
|
2013-11-13 21:58:05 +01:00
|
|
|
|
2014-02-25 20:22:13 +01:00
|
|
|
routes: {
|
|
|
|
'themes.php?theme=:slug': 'theme',
|
|
|
|
'themes.php?search=:query': 'search',
|
|
|
|
'themes.php?s=:query': 'search',
|
|
|
|
'themes.php': 'themes',
|
|
|
|
'': 'themes'
|
2013-12-07 04:11:10 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
baseUrl: function( url ) {
|
2014-02-25 20:22:13 +01:00
|
|
|
return 'themes.php' + url;
|
|
|
|
},
|
|
|
|
|
|
|
|
search: function( query ) {
|
2014-07-18 05:40:16 +02:00
|
|
|
$( '.wp-filter-search' ).val( query );
|
2014-02-25 20:22:13 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
themes: function() {
|
2014-07-18 05:40:16 +02:00
|
|
|
$( '.wp-filter-search' ).val( '' );
|
2014-04-16 02:04:15 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
navigate: function() {
|
|
|
|
if ( Backbone.history._hasPushState ) {
|
2014-04-16 05:06:16 +02:00
|
|
|
Backbone.Router.prototype.navigate.apply( this, arguments );
|
2014-04-16 02:04:15 +02:00
|
|
|
}
|
2013-11-13 21:58:05 +01:00
|
|
|
}
|
2014-02-25 20:22:13 +01:00
|
|
|
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Execute and setup the application
|
|
|
|
themes.Run = {
|
|
|
|
init: function() {
|
|
|
|
// Initializes the blog's theme library view
|
|
|
|
// Create a new collection with data
|
|
|
|
this.themes = new themes.Collection( themes.data.themes );
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Set up the view
|
|
|
|
this.view = new themes.view.Appearance({
|
|
|
|
collection: this.themes
|
|
|
|
});
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
this.render();
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
2014-02-25 20:22:13 +01:00
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
// Render results
|
|
|
|
this.view.render();
|
|
|
|
this.routes();
|
|
|
|
|
2014-02-25 20:22:13 +01:00
|
|
|
Backbone.history.start({
|
|
|
|
root: themes.data.settings.adminUrl,
|
|
|
|
pushState: true,
|
|
|
|
hashChange: false
|
|
|
|
});
|
2013-11-13 21:58:05 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
routes: function() {
|
2014-02-25 20:22:13 +01:00
|
|
|
var self = this;
|
2013-11-13 21:58:05 +01:00
|
|
|
// Bind to our global thx object
|
|
|
|
// so that the object is available to sub-views
|
2014-03-11 08:47:15 +01:00
|
|
|
themes.router = new themes.Router();
|
2014-02-25 20:22:13 +01:00
|
|
|
|
|
|
|
// Handles theme details route event
|
|
|
|
themes.router.on( 'route:theme', function( slug ) {
|
|
|
|
self.view.view.expand( slug );
|
|
|
|
});
|
|
|
|
|
|
|
|
themes.router.on( 'route:themes', function() {
|
|
|
|
self.themes.doSearch( '' );
|
|
|
|
self.view.trigger( 'theme:close' );
|
|
|
|
});
|
|
|
|
|
|
|
|
// Handles search route event
|
2014-04-08 10:29:14 +02:00
|
|
|
themes.router.on( 'route:search', function() {
|
2014-07-18 05:40:16 +02:00
|
|
|
$( '.wp-filter-search' ).trigger( 'keyup' );
|
2014-02-25 20:22:13 +01:00
|
|
|
});
|
2014-03-11 08:47:15 +01:00
|
|
|
|
|
|
|
this.extraRoutes();
|
|
|
|
},
|
|
|
|
|
|
|
|
extraRoutes: function() {
|
|
|
|
return false;
|
2012-08-23 02:04:18 +02:00
|
|
|
}
|
2013-11-13 21:58:05 +01:00
|
|
|
};
|
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
// Extend the main Search view
|
|
|
|
themes.view.InstallerSearch = themes.view.Search.extend({
|
|
|
|
|
|
|
|
events: {
|
|
|
|
'keyup': 'search'
|
|
|
|
},
|
|
|
|
|
|
|
|
// Handles Ajax request for searching through themes in public repo
|
|
|
|
search: function( event ) {
|
2014-03-28 04:16:15 +01:00
|
|
|
|
|
|
|
// Tabbing or reverse tabbing into the search input shouldn't trigger a search
|
|
|
|
if ( event.type === 'keyup' && ( event.which === 9 || event.which === 16 ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
this.collection = this.options.parent.view.collection;
|
|
|
|
|
|
|
|
// Clear on escape.
|
|
|
|
if ( event.type === 'keyup' && event.which === 27 ) {
|
|
|
|
event.target.value = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
_.debounce( _.bind( this.doSearch, this ), 300 )( event.target.value );
|
|
|
|
},
|
|
|
|
|
2014-03-28 22:49:14 +01:00
|
|
|
doSearch: _.debounce( function( value ) {
|
2014-03-29 09:53:16 +01:00
|
|
|
var request = {};
|
2014-03-11 08:47:15 +01:00
|
|
|
|
|
|
|
request.search = value;
|
|
|
|
|
|
|
|
// Intercept an [author] search.
|
|
|
|
//
|
|
|
|
// If input value starts with `author:` send a request
|
|
|
|
// for `author` instead of a regular `search`
|
|
|
|
if ( value.substring( 0, 7 ) === 'author:' ) {
|
|
|
|
request.search = '';
|
|
|
|
request.author = value.slice( 7 );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Intercept a [tag] search.
|
|
|
|
//
|
|
|
|
// If input value starts with `tag:` send a request
|
|
|
|
// for `tag` instead of a regular `search`
|
|
|
|
if ( value.substring( 0, 4 ) === 'tag:' ) {
|
|
|
|
request.search = '';
|
|
|
|
request.tag = [ value.slice( 4 ) ];
|
|
|
|
}
|
|
|
|
|
2014-07-18 05:40:16 +02:00
|
|
|
$( '.wp-filter-link.current' ).removeClass( 'current' );
|
|
|
|
$( 'body' ).removeClass( 'show-filter-drawer filters-applied' );
|
2014-04-04 01:53:15 +02:00
|
|
|
|
2014-03-28 22:49:14 +01:00
|
|
|
// Get the themes by sending Ajax POST request to api.wordpress.org/themes
|
|
|
|
// or searching the local cache
|
|
|
|
this.collection.query( request );
|
2014-04-08 01:04:15 +02:00
|
|
|
|
|
|
|
// Set route
|
|
|
|
themes.router.navigate( themes.router.baseUrl( '?search=' + value ), { replace: true } );
|
2014-03-29 09:53:16 +01:00
|
|
|
}, 300 )
|
2014-03-11 08:47:15 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
themes.view.Installer = themes.view.Appearance.extend({
|
|
|
|
|
|
|
|
el: '#wpbody-content .wrap',
|
|
|
|
|
|
|
|
// Register events for sorting and filters in theme-navigation
|
|
|
|
events: {
|
2014-07-18 05:40:16 +02:00
|
|
|
'click .wp-filter-link': 'onSort',
|
2014-03-11 08:47:15 +01:00
|
|
|
'click .theme-filter': 'onFilter',
|
2014-07-18 05:40:16 +02:00
|
|
|
'click .wp-filter-drawer-toggle': 'moreFilters',
|
|
|
|
'click .wp-filter-drawer .apply-filters': 'applyFilters',
|
|
|
|
'click .wp-filter-group [type="checkbox"]': 'addFilter',
|
|
|
|
'click .wp-filter-drawer .clear-filters': 'clearFilters',
|
|
|
|
'click .wp-filter-group-title': 'filterSection',
|
|
|
|
'click .wp-filter-by a': 'backToFilters'
|
2014-03-11 08:47:15 +01:00
|
|
|
},
|
|
|
|
|
2014-04-15 00:06:15 +02:00
|
|
|
// Initial render method
|
|
|
|
render: function() {
|
2014-03-11 08:47:15 +01:00
|
|
|
var self = this;
|
|
|
|
|
2014-04-15 00:06:15 +02:00
|
|
|
this.search();
|
|
|
|
this.uploader();
|
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
this.collection = new themes.Collection();
|
|
|
|
|
2014-03-28 22:49:14 +01:00
|
|
|
// Bump `collection.currentQuery.page` and request more themes if we hit the end of the page.
|
|
|
|
this.listenTo( this, 'theme:end', function() {
|
2014-03-29 10:09:14 +01:00
|
|
|
|
|
|
|
// Make sure we are not already loading
|
|
|
|
if ( self.collection.loadingThemes ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set loadingThemes to true and bump page instance of currentQuery.
|
|
|
|
self.collection.loadingThemes = true;
|
2014-03-28 22:49:14 +01:00
|
|
|
self.collection.currentQuery.page++;
|
2014-03-29 10:09:14 +01:00
|
|
|
|
|
|
|
// Use currentQuery.page to build the themes request.
|
2014-03-28 22:49:14 +01:00
|
|
|
_.extend( self.collection.currentQuery.request, { page: self.collection.currentQuery.page } );
|
|
|
|
self.collection.query( self.collection.currentQuery.request );
|
|
|
|
});
|
2014-03-11 08:47:15 +01:00
|
|
|
|
2014-03-28 22:49:14 +01:00
|
|
|
this.listenTo( this.collection, 'query:success', function() {
|
2014-07-18 05:40:16 +02:00
|
|
|
$( 'body' ).removeClass( 'loading-content' );
|
2014-03-11 08:47:15 +01:00
|
|
|
$( '.theme-browser' ).find( 'div.error' ).remove();
|
|
|
|
});
|
|
|
|
|
2014-03-28 22:49:14 +01:00
|
|
|
this.listenTo( this.collection, 'query:fail', function() {
|
2014-07-18 05:40:16 +02:00
|
|
|
$( 'body' ).removeClass( 'loading-content' );
|
2014-03-28 22:49:14 +01:00
|
|
|
$( '.theme-browser' ).find( 'div.error' ).remove();
|
2014-04-05 21:26:14 +02:00
|
|
|
$( '.theme-browser' ).find( 'div.themes' ).before( '<div class="error"><p>' + l10n.error + '</p></div>' );
|
2014-03-28 22:49:14 +01:00
|
|
|
});
|
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
if ( this.view ) {
|
|
|
|
this.view.remove();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set ups the view and passes the section argument
|
|
|
|
this.view = new themes.view.Themes({
|
|
|
|
collection: this.collection,
|
|
|
|
parent: this
|
|
|
|
});
|
|
|
|
|
|
|
|
// Reset pagination every time the install view handler is run
|
|
|
|
this.page = 0;
|
|
|
|
|
|
|
|
// Render and append
|
|
|
|
this.$el.find( '.themes' ).remove();
|
|
|
|
this.view.render();
|
|
|
|
this.$el.find( '.theme-browser' ).append( this.view.el ).addClass( 'rendered' );
|
|
|
|
},
|
|
|
|
|
2014-04-15 00:06:15 +02:00
|
|
|
// Handles all the rendering of the public theme directory
|
|
|
|
browse: function( section ) {
|
|
|
|
// Create a new collection with the proper theme data
|
|
|
|
// for each section
|
|
|
|
this.collection.query( { browse: section } );
|
2014-03-11 08:47:15 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Sorting navigation
|
|
|
|
onSort: function( event ) {
|
|
|
|
var $el = $( event.target ),
|
|
|
|
sort = $el.data( 'sort' );
|
|
|
|
|
2014-03-28 04:16:15 +01:00
|
|
|
event.preventDefault();
|
|
|
|
|
2014-07-18 05:40:16 +02:00
|
|
|
$( 'body' ).removeClass( 'filters-applied show-filter-drawer' );
|
2014-04-02 00:20:14 +02:00
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
// Bail if this is already active
|
|
|
|
if ( $el.hasClass( this.activeClass ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.sort( sort );
|
|
|
|
|
|
|
|
// Trigger a router.naviagte update
|
2014-04-08 06:13:16 +02:00
|
|
|
themes.router.navigate( themes.router.baseUrl( '?browse=' + sort ) );
|
2014-03-11 08:47:15 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
sort: function( sort ) {
|
2014-04-08 01:04:15 +02:00
|
|
|
this.clearSearch();
|
2014-03-11 08:47:15 +01:00
|
|
|
|
2014-07-18 05:40:16 +02:00
|
|
|
$( '.wp-filter-link, .theme-filter' ).removeClass( this.activeClass );
|
2014-03-11 08:47:15 +01:00
|
|
|
$( '[data-sort="' + sort + '"]' ).addClass( this.activeClass );
|
|
|
|
|
|
|
|
this.browse( sort );
|
|
|
|
},
|
|
|
|
|
|
|
|
// Filters and Tags
|
|
|
|
onFilter: function( event ) {
|
|
|
|
var request,
|
|
|
|
$el = $( event.target ),
|
2014-03-29 09:53:16 +01:00
|
|
|
filter = $el.data( 'filter' );
|
2013-11-13 21:58:05 +01:00
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
// Bail if this is already active
|
|
|
|
if ( $el.hasClass( this.activeClass ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-18 05:40:16 +02:00
|
|
|
$( '.wp-filter-link, .theme-section' ).removeClass( this.activeClass );
|
2014-03-11 08:47:15 +01:00
|
|
|
$el.addClass( this.activeClass );
|
|
|
|
|
|
|
|
if ( ! filter ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Construct the filter request
|
|
|
|
// using the default values
|
2014-03-20 05:20:15 +01:00
|
|
|
filter = _.union( filter, this.filtersChecked() );
|
2014-03-11 08:47:15 +01:00
|
|
|
request = { tag: [ filter ] };
|
|
|
|
|
2014-03-28 22:49:14 +01:00
|
|
|
// Get the themes by sending Ajax POST request to api.wordpress.org/themes
|
|
|
|
// or searching the local cache
|
|
|
|
this.collection.query( request );
|
2014-03-11 08:47:15 +01:00
|
|
|
},
|
|
|
|
|
2014-04-05 22:46:15 +02:00
|
|
|
// Clicking on a checkbox to add another filter to the request
|
|
|
|
addFilter: function() {
|
|
|
|
this.filtersChecked();
|
|
|
|
},
|
|
|
|
|
|
|
|
// Applying filters triggers a tag request
|
|
|
|
applyFilters: function( event ) {
|
2014-04-02 00:20:14 +02:00
|
|
|
var name,
|
|
|
|
tags = this.filtersChecked(),
|
|
|
|
request = { tag: tags },
|
2014-07-18 05:40:16 +02:00
|
|
|
filteringBy = $( '.wp-filter-by .tags' );
|
2014-04-02 00:20:14 +02:00
|
|
|
|
|
|
|
if ( event ) {
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
|
|
|
|
$( 'body' ).addClass( 'filters-applied' );
|
2014-07-18 05:40:16 +02:00
|
|
|
$( '.wp-filter-link.current' ).removeClass( 'current' );
|
2014-04-02 00:20:14 +02:00
|
|
|
filteringBy.empty();
|
|
|
|
|
|
|
|
_.each( tags, function( tag ) {
|
2014-07-18 05:40:16 +02:00
|
|
|
name = $( 'label[for="filter-id-' + tag + '"]' ).text();
|
2014-04-02 00:20:14 +02:00
|
|
|
filteringBy.append( '<span class="tag">' + name + '</span>' );
|
|
|
|
});
|
2014-03-20 05:20:15 +01:00
|
|
|
|
2014-03-28 22:49:14 +01:00
|
|
|
// Get the themes by sending Ajax POST request to api.wordpress.org/themes
|
|
|
|
// or searching the local cache
|
|
|
|
this.collection.query( request );
|
2014-03-20 05:20:15 +01:00
|
|
|
},
|
|
|
|
|
2014-04-02 00:20:14 +02:00
|
|
|
// Get the checked filters
|
|
|
|
// @return {array} of tags or false
|
2014-03-20 05:20:15 +01:00
|
|
|
filtersChecked: function() {
|
2014-07-18 05:40:16 +02:00
|
|
|
var items = $( '.wp-filter-group' ).find( ':checkbox' ),
|
2014-03-20 05:20:15 +01:00
|
|
|
tags = [];
|
|
|
|
|
|
|
|
_.each( items.filter( ':checked' ), function( item ) {
|
|
|
|
tags.push( $( item ).prop( 'value' ) );
|
|
|
|
});
|
|
|
|
|
2014-04-02 00:20:14 +02:00
|
|
|
// When no filters are checked, restore initial state and return
|
|
|
|
if ( tags.length === 0 ) {
|
2014-07-18 05:40:16 +02:00
|
|
|
$( '.wp-filter-drawer .apply-filters' ).find( 'span' ).text( '' );
|
|
|
|
$( '.wp-filter-drawer .clear-filters' ).hide();
|
2014-04-02 00:20:14 +02:00
|
|
|
$( 'body' ).removeClass( 'filters-applied' );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-07-18 05:40:16 +02:00
|
|
|
$( '.wp-filter-drawer .apply-filters' ).find( 'span' ).text( tags.length );
|
|
|
|
$( '.wp-filter-drawer .clear-filters' ).css( 'display', 'inline-block' );
|
2014-04-02 00:20:14 +02:00
|
|
|
|
2014-03-20 05:20:15 +01:00
|
|
|
return tags;
|
|
|
|
},
|
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
activeClass: 'current',
|
|
|
|
|
|
|
|
// Overwrite search container class to append search
|
|
|
|
// in new location
|
2014-07-18 05:40:16 +02:00
|
|
|
searchContainer: $( '.wp-filter' ),
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
uploader: function() {
|
2014-04-08 14:35:18 +02:00
|
|
|
$( 'a.upload' ).on( 'click', function( event ) {
|
|
|
|
event.preventDefault();
|
2014-03-20 05:20:15 +01:00
|
|
|
$( 'body' ).addClass( 'show-upload-theme' );
|
|
|
|
themes.router.navigate( themes.router.baseUrl( '?upload' ), { replace: true } );
|
|
|
|
});
|
2014-04-08 14:35:18 +02:00
|
|
|
$( 'a.browse-themes' ).on( 'click', function( event ) {
|
|
|
|
event.preventDefault();
|
2014-03-20 05:20:15 +01:00
|
|
|
$( 'body' ).removeClass( 'show-upload-theme' );
|
|
|
|
themes.router.navigate( themes.router.baseUrl( '' ), { replace: true } );
|
2014-03-11 08:47:15 +01:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2014-04-02 00:20:14 +02:00
|
|
|
// Toggle the full filters navigation
|
|
|
|
moreFilters: function( event ) {
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
if ( $( 'body' ).hasClass( 'filters-applied' ) ) {
|
2014-04-04 01:53:15 +02:00
|
|
|
return this.backToFilters();
|
2014-04-02 00:20:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// If the filters section is opened and filters are checked
|
|
|
|
// run the relevant query collapsing to filtered-by state
|
2014-07-18 05:40:16 +02:00
|
|
|
if ( $( 'body' ).hasClass( 'show-filter-drawer' ) && this.filtersChecked() ) {
|
2014-04-02 00:20:14 +02:00
|
|
|
return this.addFilter();
|
|
|
|
}
|
|
|
|
|
2014-04-08 01:04:15 +02:00
|
|
|
this.clearSearch();
|
|
|
|
|
|
|
|
themes.router.navigate( themes.router.baseUrl( '' ) );
|
2014-07-18 05:40:16 +02:00
|
|
|
$( 'body' ).toggleClass( 'show-filter-drawer' );
|
2014-04-02 00:20:14 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// Expand/collapse each individual filter section
|
|
|
|
filterSection: function() {
|
|
|
|
$( event.target ).parent().toggleClass( 'open' );
|
|
|
|
},
|
|
|
|
|
|
|
|
// Clears all the checked filters
|
|
|
|
// @uses filtersChecked()
|
|
|
|
clearFilters: function( event ) {
|
2014-07-18 05:40:16 +02:00
|
|
|
var items = $( '.wp-filter-group' ).find( ':checkbox' ),
|
2014-04-02 00:20:14 +02:00
|
|
|
self = this;
|
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
_.each( items.filter( ':checked' ), function( item ) {
|
|
|
|
$( item ).prop( 'checked', false );
|
|
|
|
return self.filtersChecked();
|
|
|
|
});
|
2014-04-04 01:53:15 +02:00
|
|
|
},
|
|
|
|
|
2014-04-15 03:16:14 +02:00
|
|
|
backToFilters: function( event ) {
|
|
|
|
if ( event ) {
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
|
2014-04-04 01:53:15 +02:00
|
|
|
$( 'body' ).removeClass( 'filters-applied' );
|
2014-04-08 01:04:15 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
clearSearch: function() {
|
2014-07-18 05:40:16 +02:00
|
|
|
$( '#wp-filter-search-input').val( '' );
|
2014-03-11 08:47:15 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
themes.InstallerRouter = Backbone.Router.extend({
|
|
|
|
routes: {
|
|
|
|
'theme-install.php?theme=:slug': 'preview',
|
2014-04-08 06:13:16 +02:00
|
|
|
'theme-install.php?browse=:sort': 'sort',
|
2014-03-20 05:20:15 +01:00
|
|
|
'theme-install.php?upload': 'upload',
|
2014-04-08 01:04:15 +02:00
|
|
|
'theme-install.php?search=:query': 'search',
|
2014-04-15 00:06:15 +02:00
|
|
|
'theme-install.php': 'sort'
|
2014-03-11 08:47:15 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
baseUrl: function( url ) {
|
|
|
|
return 'theme-install.php' + url;
|
2014-04-08 01:04:15 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
search: function( query ) {
|
2014-07-18 05:40:16 +02:00
|
|
|
$( '.wp-filter-search' ).val( query );
|
2014-04-16 02:04:15 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
navigate: function() {
|
|
|
|
if ( Backbone.history._hasPushState ) {
|
2014-04-16 05:06:16 +02:00
|
|
|
Backbone.Router.prototype.navigate.apply( this, arguments );
|
2014-04-16 02:04:15 +02:00
|
|
|
}
|
2014-04-08 10:29:14 +02:00
|
|
|
}
|
2014-03-11 08:47:15 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
themes.RunInstaller = {
|
|
|
|
|
|
|
|
init: function() {
|
|
|
|
// Set up the view
|
|
|
|
// Passes the default 'section' as an option
|
|
|
|
this.view = new themes.view.Installer({
|
|
|
|
section: 'featured',
|
|
|
|
SearchView: themes.view.InstallerSearch
|
|
|
|
});
|
|
|
|
|
|
|
|
// Render results
|
|
|
|
this.render();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
|
|
|
|
// Render results
|
|
|
|
this.view.render();
|
|
|
|
this.routes();
|
|
|
|
|
|
|
|
Backbone.history.start({
|
|
|
|
root: themes.data.settings.adminUrl,
|
|
|
|
pushState: true,
|
|
|
|
hashChange: false
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
routes: function() {
|
2014-04-15 00:06:15 +02:00
|
|
|
var self = this,
|
|
|
|
request = {};
|
|
|
|
|
|
|
|
// Bind to our global `wp.themes` object
|
|
|
|
// so that the router is available to sub-views
|
2014-03-11 08:47:15 +01:00
|
|
|
themes.router = new themes.InstallerRouter();
|
|
|
|
|
2014-04-15 00:06:15 +02:00
|
|
|
// Handles `theme` route event
|
|
|
|
// Queries the API for the passed theme slug
|
|
|
|
themes.router.on( 'route:preview', function( slug ) {
|
2014-04-15 03:16:14 +02:00
|
|
|
request.theme = slug;
|
|
|
|
self.view.collection.query( request );
|
2014-03-11 08:47:15 +01:00
|
|
|
});
|
|
|
|
|
2014-04-15 00:06:15 +02:00
|
|
|
// Handles sorting / browsing routes
|
|
|
|
// Also handles the root URL triggering a sort request
|
|
|
|
// for `featured`, the default view
|
2014-03-11 08:47:15 +01:00
|
|
|
themes.router.on( 'route:sort', function( sort ) {
|
|
|
|
if ( ! sort ) {
|
|
|
|
sort = 'featured';
|
|
|
|
}
|
|
|
|
self.view.sort( sort );
|
|
|
|
self.view.trigger( 'theme:close' );
|
|
|
|
});
|
|
|
|
|
2014-04-15 00:06:15 +02:00
|
|
|
// Support the `upload` route by going straight to upload section
|
2014-03-20 23:27:15 +01:00
|
|
|
themes.router.on( 'route:upload', function() {
|
2014-03-20 05:20:15 +01:00
|
|
|
$( 'a.upload' ).trigger( 'click' );
|
|
|
|
});
|
|
|
|
|
2014-04-15 00:06:15 +02:00
|
|
|
// The `search` route event. The router populates the input field.
|
2014-04-08 10:29:14 +02:00
|
|
|
themes.router.on( 'route:search', function() {
|
2014-07-18 05:40:16 +02:00
|
|
|
$( '.wp-filter-search' ).focus().trigger( 'keyup' );
|
2014-04-08 01:04:15 +02:00
|
|
|
});
|
|
|
|
|
2014-03-11 08:47:15 +01:00
|
|
|
this.extraRoutes();
|
|
|
|
},
|
|
|
|
|
|
|
|
extraRoutes: function() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Ready...
|
|
|
|
$( document ).ready(function() {
|
|
|
|
if ( themes.isInstall ) {
|
|
|
|
themes.RunInstaller.init();
|
|
|
|
} else {
|
|
|
|
themes.Run.init();
|
|
|
|
}
|
|
|
|
});
|
2012-08-23 02:04:18 +02:00
|
|
|
|
2013-11-13 21:58:05 +01:00
|
|
|
})( jQuery );
|
2013-11-22 09:06:09 +01:00
|
|
|
|
|
|
|
// Align theme browser thickbox
|
|
|
|
var tb_position;
|
|
|
|
jQuery(document).ready( function($) {
|
|
|
|
tb_position = function() {
|
|
|
|
var tbWindow = $('#TB_window'),
|
|
|
|
width = $(window).width(),
|
|
|
|
H = $(window).height(),
|
|
|
|
W = ( 1040 < width ) ? 1040 : width,
|
|
|
|
adminbar_height = 0;
|
|
|
|
|
2014-02-25 01:26:13 +01:00
|
|
|
if ( $('#wpadminbar').length ) {
|
|
|
|
adminbar_height = parseInt( $('#wpadminbar').css('height'), 10 );
|
2013-11-22 09:06:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( tbWindow.size() ) {
|
|
|
|
tbWindow.width( W - 50 ).height( H - 45 - adminbar_height );
|
|
|
|
$('#TB_iframeContent').width( W - 50 ).height( H - 75 - adminbar_height );
|
|
|
|
tbWindow.css({'margin-left': '-' + parseInt( ( ( W - 50 ) / 2 ), 10 ) + 'px'});
|
|
|
|
if ( typeof document.body.style.maxWidth !== 'undefined' ) {
|
|
|
|
tbWindow.css({'top': 20 + adminbar_height + 'px', 'margin-top': '0'});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
$(window).resize(function(){ tb_position(); });
|
|
|
|
});
|