a92bb89f4f
* Incorporates code from the Customize Snapshots and Customize Posts feature plugins. * Adds a new Publish Settings section for managing the changeset status, scheduled date, and frontend preview link. * Updates Publish button to reflect the status selected in the Publish Settings (including Save Draft and Schedule). * Deactivates the Themes section when a non-publish status selected, and deactivates the Publish Settings section when previewing a theme switch. * Introduces an `outer` section type (`wp.customize.OuterSection` in JS) for the Publish Settings section to use and for available widgets and available nav menu panels to use in the future. These sections can be expanded while other sections are expanded. * Introduces `WP_Customize_Date_Time_Control` in PHP and `wp.customize.DateTimeControl` in JS for managing a date/time value. * Keeps track of scheduled time and proactively publish from the client when the time arrives, as opposed to waiting for WP Cron. * Auto-publishes a scheduled changeset when attempting to access one that missed its schedule. * Starts a new changeset if attempting to save a changeset that was previously publish. * Adds `force` arg to `requestChangesetUpdate()` to force an update request even when there are no pending changes. * Adds utils methods for `getCurrentTimestamp` and `getRemainingTime`. * Adds new state values for `selectedChangesetStatus`, `changesetDate`, `selectedChangesetDate`. * Fixes logic for when to short-circuit check to close Customizer when there are unsaved changes. * Adds getter methods for `autosaved` and `branching` parameters, with the latter applying the `customize_changeset_branching` filter. * Call to `establish_loaded_changeset` on the fly when `changeset_uuid()` is called if no changeset UUID was specififed. * De-duplicates logic for dismissing auto-draft changesets. * Includes unit tests. Builds on [41597]. Props sayedwp, westonruter, melchoyce, JoshuaWold, folletto, stubgo, karmatosed, dlh, paaljoachim, afercia, johnregan3, utkarshpatel, valendesigns. See #30937. Fixes #39896, #28721, #39275. git-svn-id: https://develop.svn.wordpress.org/trunk@41626 602fd350-edb4-49c9-b593-d223f7449a82
189 lines
6.7 KiB
JavaScript
189 lines
6.7 KiB
JavaScript
window.wp = window.wp || {};
|
|
window.wp.customize = window.wp.customize || { get: function() {} };
|
|
|
|
var customizerRootElement;
|
|
customizerRootElement = jQuery( '<div id="customize-theme-controls"><ul></ul></div>' );
|
|
customizerRootElement.css( { position: 'absolute', left: -10000, top: -10000 } ); // Remove from view.
|
|
jQuery( document.body ).append( customizerRootElement );
|
|
|
|
window._wpCustomizeSettings = {
|
|
'autofocus': {},
|
|
'browser': {
|
|
'ios': false,
|
|
'mobile': false
|
|
},
|
|
'controls': {
|
|
'fixture-control': {
|
|
'active': true,
|
|
'content': '<li id="accordion-section-fixture-section" class="accordion-section control-section control-section-default"> <h3 class="accordion-section-title" tabindex="0"> Section Fixture <span class="screen-reader-text">Press return or enter to open</span> </h3> <ul class="accordion-section-content"> <li class="customize-section-description-container"> <div class="customize-section-title"> <button class="customize-section-back" tabindex="-1"> <span class="screen-reader-text">Back</span> </button> <h3> <span class="customize-action">Customizing ▸ Fixture Panel</span> Section Fixture </h3> </div> </li> </ul> </li>',
|
|
'description': '',
|
|
'instanceNumber': 8,
|
|
'label': 'Fixture Control',
|
|
'priority': 10,
|
|
'section': 'fixture-section',
|
|
'settings': {
|
|
'default': 'fixture-setting'
|
|
},
|
|
'type': 'text'
|
|
}
|
|
},
|
|
'documentTitleTmpl': 'Customize: %s',
|
|
'nonce': {
|
|
'preview': '',
|
|
'save': ''
|
|
},
|
|
'panels': {
|
|
'fixture-panel': {
|
|
'active': true,
|
|
'content': '<li id="accordion-panel-fixture-panel" class="accordion-section control-section control-panel control-panel-default"> <h3 class="accordion-section-title" tabindex="0"> Fixture Panel <span class="screen-reader-text">Press return or enter to open this panel</span> </h3> <ul class="accordion-sub-container control-panel-content"> <li class="panel-meta customize-info accordion-section cannot-expand"> <button class="customize-panel-back" tabindex="-1"><span class="screen-reader-text">Back</span></button> <div class="accordion-section-title"> <span class="preview-notice">You are customizing <strong class="panel-title">Fixture Panel</strong></span> <button class="customize-help-toggle dashicons dashicons-editor-help" tabindex="0" aria-expanded="false"><span class="screen-reader-text">Help</span></button> </div> </li> </ul> </li>',
|
|
'description': 'Lorem ipsum',
|
|
'instanceNumber': 1,
|
|
'priority': 110,
|
|
'title': 'Fixture panel with content',
|
|
'type': 'default'
|
|
},
|
|
'fixture-panel-default-templated': {
|
|
'active': true,
|
|
'description': 'Lorem ipsum',
|
|
'instanceNumber': 2,
|
|
'priority': 110,
|
|
'title': 'Fixture default panel using template',
|
|
'type': 'default'
|
|
},
|
|
'fixture-panel-titleless-templated': {
|
|
'active': true,
|
|
'description': 'Lorem ipsum',
|
|
'instanceNumber': 3,
|
|
'priority': 110,
|
|
'title': 'Fixture titleless panel using template',
|
|
'type': 'titleless'
|
|
},
|
|
'fixture-panel-reusing-default-template': {
|
|
'active': true,
|
|
'description': 'Lorem ipsum',
|
|
'instanceNumber': 3,
|
|
'priority': 110,
|
|
'title': 'Fixture panel of custom type re-using default template',
|
|
'type': 'reusing-default-template'
|
|
},
|
|
'fixture-panel-without-params': {}
|
|
},
|
|
'sections': {
|
|
'fixture-section': {
|
|
'active': true,
|
|
'content': '<li id="accordion-section-fixture-section" class="accordion-section control-section control-section-default"> <h3 class="accordion-section-title" tabindex="0"> Section Fixture <span class="screen-reader-text">Press return or enter to open</span> </h3> <ul class="accordion-section-content"> <li class="customize-section-description-container"> <div class="customize-section-title"> <button class="customize-section-back" tabindex="-1"> <span class="screen-reader-text">Back</span> </button> <h3> <span class="customize-action">Customizing ▸ Fixture Panel</span> Section Fixture </h3> </div> </li> </ul> </li>',
|
|
'description': '',
|
|
'instanceNumber': 2,
|
|
'panel': 'fixture-panel',
|
|
'priority': 20,
|
|
'title': 'Fixture Section',
|
|
'type': 'default'
|
|
},
|
|
'fixture-section-default-templated': {
|
|
'active': true,
|
|
'description': '',
|
|
'instanceNumber': 3,
|
|
'panel': 'fixture-panel',
|
|
'priority': 20,
|
|
'title': 'Fixture default section using template',
|
|
'type': 'default'
|
|
},
|
|
'fixture-section-titleless-templated': {
|
|
'active': true,
|
|
'description': '',
|
|
'instanceNumber': 4,
|
|
'panel': 'fixture-panel',
|
|
'priority': 20,
|
|
'title': 'Fixture titleless section using template',
|
|
'type': 'titleless'
|
|
},
|
|
'fixture-section-reusing-default-template': {
|
|
'active': true,
|
|
'description': '',
|
|
'instanceNumber': 4,
|
|
'panel': 'fixture-panel',
|
|
'priority': 20,
|
|
'title': 'Fixture section of custom type re-using default template',
|
|
'type': 'reusing-default-template'
|
|
},
|
|
'publish_settings': {
|
|
'active': true,
|
|
'description': '',
|
|
'instanceNumber': 6,
|
|
'priority': 20,
|
|
'title': 'Fixture section of custom type re-using default template',
|
|
'type': 'outer'
|
|
},
|
|
'fixture-section-without-params': {}
|
|
},
|
|
'settings': {
|
|
'fixture-setting': {
|
|
'transport': 'postMessage',
|
|
'value': 'Lorem Ipsum'
|
|
},
|
|
'fixture-setting-abbr': {
|
|
'transport': 'postMessage',
|
|
'value': 'NASA',
|
|
'type': 'abbreviation'
|
|
}
|
|
},
|
|
'theme': {
|
|
'active': true,
|
|
'stylesheet': 'twentyfifteen'
|
|
},
|
|
'url': {
|
|
'activated': 'http://example.org/wp-admin/themes.php?activated=true&previewed',
|
|
'ajax': '/wp-admin/admin-ajax.php',
|
|
'allowed': [
|
|
'http://example.org/'
|
|
],
|
|
'fallback': 'http://example.org/?preview=1&template=twentyfifteen&stylesheet=twentyfifteen&preview_iframe=1&TB_iframe=true',
|
|
'home': 'http://example.org/',
|
|
'isCrossDomain': false,
|
|
'login': 'http://example.org/wp-login.php?interim-login=1&customize-login=1',
|
|
'parent': 'http://example.org/wp-admin/',
|
|
'preview': 'http://example.org/'
|
|
},
|
|
'previewableDevices': {
|
|
'desktop': {
|
|
'label': 'Enter desktop preview mode',
|
|
'default': true
|
|
},
|
|
'tablet': {
|
|
'label': 'Enter tablet preview mode'
|
|
},
|
|
'mobile': {
|
|
'label': 'Enter mobile preview mode'
|
|
}
|
|
},
|
|
initialClientTimestamp: 1506510531595,
|
|
initialServerDate: '2017-09-27 16:38:49',
|
|
initialServerTimestamp: 1506510529913,
|
|
changeset: {
|
|
status: '',
|
|
uuid: '0c674ff4-c159-4e7a-beb4-cb830ae73979',
|
|
autosaved: false,
|
|
branching: false,
|
|
currentUserCanPublish: false,
|
|
hasAutosaveRevision: false,
|
|
latestAutoDraftUuid: '341b06f6-3c1f-454f-96df-3cf197f3e347',
|
|
publishDate: ''
|
|
},
|
|
timeouts: {
|
|
windowRefresh: 250,
|
|
changesetAutoSave: 60000,
|
|
keepAliveCheck: 2500,
|
|
reflowPaneContents: 100,
|
|
previewFrameSensitivity: 2000
|
|
}
|
|
};
|
|
window._wpCustomizeControlsL10n = {};
|
|
|
|
jQuery.ajaxSetup( {
|
|
beforeSend: function( e, data ) {
|
|
if ( data.url.indexOf( '//example.org' ) !== -1 ) {
|
|
return false;
|
|
}
|
|
}
|
|
} );
|