golden hour
/home/phakp/public_html/wp/wp-admin/js
⬆️ Go Up
Upload
File/Folder
Size
Actions
accordion.js
2.89 KB
Del
OK
accordion.min.js
865 B
Del
OK
code-editor.js
11.32 KB
Del
OK
code-editor.min.js
3.01 KB
Del
OK
color-picker.js
9.57 KB
Del
OK
color-picker.min.js
3.44 KB
Del
OK
comment.js
2.73 KB
Del
OK
comment.min.js
1.24 KB
Del
OK
common.js
42.64 KB
Del
OK
common.min.js
15.4 KB
Del
OK
custom-background.js
3.34 KB
Del
OK
custom-background.min.js
1.17 KB
Del
OK
custom-header.js
1.97 KB
Del
OK
customize-controls.js
284.28 KB
Del
OK
customize-controls.min.js
108.19 KB
Del
OK
customize-nav-menus.js
105.84 KB
Del
OK
customize-nav-menus.min.js
44.53 KB
Del
OK
customize-widgets.js
69.91 KB
Del
OK
customize-widgets.min.js
27.35 KB
Del
OK
dashboard.js
18.41 KB
Del
OK
dashboard.min.js
6.49 KB
Del
OK
edit-comments.js
36.16 KB
Del
OK
edit-comments.min.js
14.81 KB
Del
OK
editor-expand.js
41.61 KB
Del
OK
editor-expand.min.js
13.14 KB
Del
OK
editor.js
44.27 KB
Del
OK
editor.min.js
12.92 KB
Del
OK
farbtastic.js
7.51 KB
Del
OK
gallery.js
5.51 KB
Del
OK
gallery.min.js
3.75 KB
Del
OK
image-edit.js
28.78 KB
Del
OK
image-edit.min.js
9.94 KB
Del
OK
inline-edit-post.js
15.9 KB
Del
OK
inline-edit-post.min.js
7.14 KB
Del
OK
inline-edit-tax.js
7.52 KB
Del
OK
inline-edit-tax.min.js
2.84 KB
Del
OK
iris.min.js
23.09 KB
Del
OK
language-chooser.js
873 B
Del
OK
language-chooser.min.js
409 B
Del
OK
link.js
3.78 KB
Del
OK
link.min.js
1.63 KB
Del
OK
media-gallery.js
1.27 KB
Del
OK
media-gallery.min.js
613 B
Del
OK
media-upload.js
3.38 KB
Del
OK
media-upload.min.js
1.12 KB
Del
OK
media.js
5.1 KB
Del
OK
media.min.js
1.86 KB
Del
OK
nav-menu.js
42.81 KB
Del
OK
nav-menu.min.js
21.1 KB
Del
OK
password-strength-meter.js
3.1 KB
Del
OK
password-strength-meter.min.js
766 B
Del
OK
plugin-install.js
6.86 KB
Del
OK
plugin-install.min.js
2.33 KB
Del
OK
post.js
36.54 KB
Del
OK
post.min.js
17.64 KB
Del
OK
postbox.js
11.53 KB
Del
OK
postbox.min.js
4.08 KB
Del
OK
privacy-tools.js
8.84 KB
Del
OK
privacy-tools.min.js
3.91 KB
Del
OK
revisions.js
33.13 KB
Del
OK
revisions.min.js
17.46 KB
Del
OK
set-post-thumbnail.js
841 B
Del
OK
set-post-thumbnail.min.js
568 B
Del
OK
site-health.js
8.83 KB
Del
OK
site-health.min.js
4.92 KB
Del
OK
svg-painter.js
5.4 KB
Del
OK
svg-painter.min.js
2.32 KB
Del
OK
tags-box.js
10.82 KB
Del
OK
tags-box.min.js
2.99 KB
Del
OK
tags-suggest.js
5.33 KB
Del
OK
tags-suggest.min.js
2.18 KB
Del
OK
tags.js
4.57 KB
Del
OK
tags.min.js
1.77 KB
Del
OK
theme-plugin-editor.js
24.09 KB
Del
OK
theme-plugin-editor.min.js
10.97 KB
Del
OK
theme.js
53.46 KB
Del
OK
theme.min.js
25.89 KB
Del
OK
updates.js
78.68 KB
Del
OK
updates.min.js
34.82 KB
Del
OK
user-profile.js
10.78 KB
Del
OK
user-profile.min.js
5.45 KB
Del
OK
user-suggest.js
2.26 KB
Del
OK
user-suggest.min.js
692 B
Del
OK
widgets
-
Del
OK
widgets.js
22.33 KB
Del
OK
widgets.min.js
12.13 KB
Del
OK
word-count.js
7.52 KB
Del
OK
word-count.min.js
1.5 KB
Del
OK
xfn.js
759 B
Del
OK
xfn.min.js
476 B
Del
OK
Edit: site-health.js
/** * Interactions used by the Site Health modules in WordPress. * * @output wp-admin/js/site-health.js */ /* global ajaxurl, ClipboardJS, SiteHealth, wp */ jQuery( document ).ready( function( $ ) { var __ = wp.i18n.__, _n = wp.i18n._n, sprintf = wp.i18n.sprintf; var data; var clipboard = new ClipboardJS( '.site-health-copy-buttons .copy-button' ); var isDebugTab = $( '.health-check-body.health-check-debug-tab' ).length; var pathsSizesSection = $( '#health-check-accordion-block-wp-paths-sizes' ); // Debug information copy section. clipboard.on( 'success', function( e ) { var $wrapper = $( e.trigger ).closest( 'div' ); $( '.success', $wrapper ).addClass( 'visible' ); wp.a11y.speak( __( 'Site information has been added to your clipboard.' ) ); } ); // Accordion handling in various areas. $( '.health-check-accordion' ).on( 'click', '.health-check-accordion-trigger', function() { var isExpanded = ( 'true' === $( this ).attr( 'aria-expanded' ) ); if ( isExpanded ) { $( this ).attr( 'aria-expanded', 'false' ); $( '#' + $( this ).attr( 'aria-controls' ) ).attr( 'hidden', true ); } else { $( this ).attr( 'aria-expanded', 'true' ); $( '#' + $( this ).attr( 'aria-controls' ) ).attr( 'hidden', false ); } } ); // Site Health test handling. $( '.site-health-view-passed' ).on( 'click', function() { var goodIssuesWrapper = $( '#health-check-issues-good' ); goodIssuesWrapper.toggleClass( 'hidden' ); $( this ).attr( 'aria-expanded', ! goodIssuesWrapper.hasClass( 'hidden' ) ); } ); /** * Append a new issue to the issue list. * * @since 5.2.0 * * @param {Object} issue The issue data. */ function AppendIssue( issue ) { var template = wp.template( 'health-check-issue' ), issueWrapper = $( '#health-check-issues-' + issue.status ), heading, count; SiteHealth.site_status.issues[ issue.status ]++; count = SiteHealth.site_status.issues[ issue.status ]; if ( 'critical' === issue.status ) { heading = sprintf( _n( '%s critical issue', '%s critical issues', count ), '<span class="issue-count">' + count + '</span>' ); } else if ( 'recommended' === issue.status ) { heading = sprintf( _n( '%s recommended improvement', '%s recommended improvements', count ), '<span class="issue-count">' + count + '</span>' ); } else if ( 'good' === issue.status ) { heading = sprintf( _n( '%s item with no issues detected', '%s items with no issues detected', count ), '<span class="issue-count">' + count + '</span>' ); } if ( heading ) { $( '.site-health-issue-count-title', issueWrapper ).html( heading ); } $( '.issues', '#health-check-issues-' + issue.status ).append( template( issue ) ); } /** * Update site health status indicator as asynchronous tests are run and returned. * * @since 5.2.0 */ function RecalculateProgression() { var r, c, pct; var $progress = $( '.site-health-progress' ); var $wrapper = $progress.closest( '.site-health-progress-wrapper' ); var $progressLabel = $( '.site-health-progress-label', $wrapper ); var $circle = $( '.site-health-progress svg #bar' ); var totalTests = parseInt( SiteHealth.site_status.issues.good, 0 ) + parseInt( SiteHealth.site_status.issues.recommended, 0 ) + ( parseInt( SiteHealth.site_status.issues.critical, 0 ) * 1.5 ); var failedTests = ( parseInt( SiteHealth.site_status.issues.recommended, 0 ) * 0.5 ) + ( parseInt( SiteHealth.site_status.issues.critical, 0 ) * 1.5 ); var val = 100 - Math.ceil( ( failedTests / totalTests ) * 100 ); if ( 0 === totalTests ) { $progress.addClass( 'hidden' ); return; } $wrapper.removeClass( 'loading' ); r = $circle.attr( 'r' ); c = Math.PI * ( r * 2 ); if ( 0 > val ) { val = 0; } if ( 100 < val ) { val = 100; } pct = ( ( 100 - val ) / 100 ) * c; $circle.css( { strokeDashoffset: pct } ); if ( 1 > parseInt( SiteHealth.site_status.issues.critical, 0 ) ) { $( '#health-check-issues-critical' ).addClass( 'hidden' ); } if ( 1 > parseInt( SiteHealth.site_status.issues.recommended, 0 ) ) { $( '#health-check-issues-recommended' ).addClass( 'hidden' ); } if ( 80 <= val && 0 === parseInt( SiteHealth.site_status.issues.critical, 0 ) ) { $wrapper.addClass( 'green' ).removeClass( 'orange' ); $progressLabel.text( __( 'Good' ) ); wp.a11y.speak( __( 'All site health tests have finished running. Your site is looking good, and the results are now available on the page.' ) ); } else { $wrapper.addClass( 'orange' ).removeClass( 'green' ); $progressLabel.text( __( 'Should be improved' ) ); wp.a11y.speak( __( 'All site health tests have finished running. There are items that should be addressed, and the results are now available on the page.' ) ); } if ( ! isDebugTab ) { $.post( ajaxurl, { 'action': 'health-check-site-status-result', '_wpnonce': SiteHealth.nonce.site_status_result, 'counts': SiteHealth.site_status.issues } ); if ( 100 === val ) { $( '.site-status-all-clear' ).removeClass( 'hide' ); $( '.site-status-has-issues' ).addClass( 'hide' ); } } } /** * Queue the next asynchronous test when we're ready to run it. * * @since 5.2.0 */ function maybeRunNextAsyncTest() { var doCalculation = true; if ( 1 <= SiteHealth.site_status.async.length ) { $.each( SiteHealth.site_status.async, function() { var data = { 'action': 'health-check-' + this.test.replace( '_', '-' ), '_wpnonce': SiteHealth.nonce.site_status }; if ( this.completed ) { return true; } doCalculation = false; this.completed = true; $.post( ajaxurl, data, function( response ) { /** This filter is documented in wp-admin/includes/class-wp-site-health.php */ AppendIssue( wp.hooks.applyFilters( 'site_status_test_result', response.data ) ); maybeRunNextAsyncTest(); } ); return false; } ); } if ( doCalculation ) { RecalculateProgression(); } } if ( 'undefined' !== typeof SiteHealth && ! isDebugTab ) { if ( 0 === SiteHealth.site_status.direct.length && 0 === SiteHealth.site_status.async.length ) { RecalculateProgression(); } else { SiteHealth.site_status.issues = { 'good': 0, 'recommended': 0, 'critical': 0 }; } if ( 0 < SiteHealth.site_status.direct.length ) { $.each( SiteHealth.site_status.direct, function() { AppendIssue( this ); } ); } if ( 0 < SiteHealth.site_status.async.length ) { data = { 'action': 'health-check-' + SiteHealth.site_status.async[0].test.replace( '_', '-' ), '_wpnonce': SiteHealth.nonce.site_status }; SiteHealth.site_status.async[0].completed = true; $.post( ajaxurl, data, function( response ) { AppendIssue( response.data ); maybeRunNextAsyncTest(); } ); } else { RecalculateProgression(); } } function getDirectorySizes() { var data = { action: 'health-check-get-sizes', _wpnonce: SiteHealth.nonce.site_status_result }; var timestamp = ( new Date().getTime() ); // After 3 seconds announce that we're still waiting for directory sizes. var timeout = window.setTimeout( function() { wp.a11y.speak( __( 'Please wait...' ) ); }, 3000 ); $.post( { type: 'POST', url: ajaxurl, data: data, dataType: 'json' } ).done( function( response ) { updateDirSizes( response.data || {} ); } ).always( function() { var delay = ( new Date().getTime() ) - timestamp; $( '.health-check-wp-paths-sizes.spinner' ).css( 'visibility', 'hidden' ); RecalculateProgression(); if ( delay > 3000 ) { /* * We have announced that we're waiting. * Announce that we're ready after giving at least 3 seconds * for the first announcement to be read out, or the two may collide. */ if ( delay > 6000 ) { delay = 0; } else { delay = 6500 - delay; } window.setTimeout( function() { wp.a11y.speak( __( 'All site health tests have finished running.' ) ); }, delay ); } else { // Cancel the announcement. window.clearTimeout( timeout ); } $( document ).trigger( 'site-health-info-dirsizes-done' ); } ); } function updateDirSizes( data ) { var copyButton = $( 'button.button.copy-button' ); var clipboardText = copyButton.attr( 'data-clipboard-text' ); $.each( data, function( name, value ) { var text = value.debug || value.size; if ( typeof text !== 'undefined' ) { clipboardText = clipboardText.replace( name + ': loading...', name + ': ' + text ); } } ); copyButton.attr( 'data-clipboard-text', clipboardText ); pathsSizesSection.find( 'td[class]' ).each( function( i, element ) { var td = $( element ); var name = td.attr( 'class' ); if ( data.hasOwnProperty( name ) && data[ name ].size ) { td.text( data[ name ].size ); } } ); } if ( isDebugTab ) { if ( pathsSizesSection.length ) { getDirectorySizes(); } else { RecalculateProgression(); } } } );
Save