wordcamp-bristol-2019/wp-admin/js/custom-header.js

89 lines
2 KiB
JavaScript
Raw Normal View History

2019-04-16 19:56:22 +00:00
/**
* @output wp-admin/js/custom-header.js
*/
2019-03-12 09:27:46 +00:00
/* global isRtl */
2019-04-16 19:56:22 +00:00
/**
* Initializes the custom header selection page.
*
* @since 3.5.0
*
* @deprecated 4.1.0 The page this is used on is never linked to from the UI.
* Setting a custom header is completely handled by the Customizer.
*/
2019-03-12 09:27:46 +00:00
(function($) {
var frame;
$( function() {
2019-04-16 19:56:22 +00:00
// Fetch available headers.
2019-03-12 09:27:46 +00:00
var $headers = $('.available-headers');
2019-04-16 19:56:22 +00:00
// Apply jQuery.masonry once the images have loaded.
2019-03-12 09:27:46 +00:00
$headers.imagesLoaded( function() {
$headers.masonry({
itemSelector: '.default-header',
isRTL: !! ( 'undefined' != typeof isRtl && isRtl )
});
});
2019-04-16 19:56:22 +00:00
/**
* Opens the 'choose from library' frame and creates it if it doesn't exist.
*
* @since 3.5.0
* @deprecated 4.1.0
*
* @returns {void}
*/
2019-03-12 09:27:46 +00:00
$('#choose-from-library-link').click( function( event ) {
var $el = $(this);
event.preventDefault();
// If the media frame already exists, reopen it.
if ( frame ) {
frame.open();
return;
}
// Create the media frame.
frame = wp.media.frames.customHeader = wp.media({
// Set the title of the modal.
title: $el.data('choose'),
// Tell the modal to show only images.
library: {
type: 'image'
},
// Customize the submit button.
button: {
// Set the text of the button.
text: $el.data('update'),
// Tell the button not to close the modal, since we're
// going to refresh the page when the image is selected.
close: false
}
});
2019-04-16 19:56:22 +00:00
/**
* Updates the window location to include the selected attachment.
*
* @since 3.5.0
* @deprecated 4.1.0
*
* @returns {void}
*/
2019-03-12 09:27:46 +00:00
frame.on( 'select', function() {
// Grab the selected attachment.
var attachment = frame.state().get('selection').first(),
link = $el.data('updateLink');
// Tell the browser to navigate to the crop step.
window.location = link + '&file=' + attachment.id;
});
frame.open();
});
});
}(jQuery));