|
@@ -0,0 +1,107 @@
|
|
|
+/**
|
|
|
+ * File color-annotations-preview.js.
|
|
|
+ *
|
|
|
+ * Instantly live-update customizer settings in the preview for improved user experience,
|
|
|
+ * targeting the updates needed to hide the page title on the homepage on WordPress.com.
|
|
|
+ */
|
|
|
+
|
|
|
+// From https://gist.github.com/xenozauros/f6e185c8de2a04cdfecf
|
|
|
+function hexToHSL( hex ) {
|
|
|
+ var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec( hex );
|
|
|
+ r = parseInt( result[1], 16 );
|
|
|
+ g = parseInt( result[2], 16 );
|
|
|
+ b = parseInt( result[3], 16 );
|
|
|
+ r /= 255, g /= 255, b /= 255;
|
|
|
+ var max = Math.max( r, g, b ), min = Math.min( r, g, b );
|
|
|
+ var h, s, l = ( max + min ) / 2;
|
|
|
+ if( max == min ){
|
|
|
+ h = s = 0; // achromatic
|
|
|
+ } else {
|
|
|
+ var d = max - min;
|
|
|
+ s = l > 0.5 ? d / (2 - max - min) : d / (max + min);
|
|
|
+ switch( max ){
|
|
|
+ case r: h = ( g - b ) / d + ( g < b ? 6 : 0 ); break;
|
|
|
+ case g: h = ( b - r ) / d + 2; break;
|
|
|
+ case b: h = ( r - g ) / d + 4; break;
|
|
|
+ }
|
|
|
+ h /= 6;
|
|
|
+ }
|
|
|
+ var HSL = new Object();
|
|
|
+ HSL['h'] = h;
|
|
|
+ HSL['s'] = s;
|
|
|
+ HSL['l'] = l;
|
|
|
+ return HSL;
|
|
|
+}
|
|
|
+
|
|
|
+function changeColorLuminescence( hex, amount ) {
|
|
|
+ var hsl = hexToHSL( hex );
|
|
|
+ return 'hsl( ' + hsl.h * 360 + ',' + hsl.s * 100 + '%,' + ( hsl.l * 100 + amount ) + '%)';
|
|
|
+}
|
|
|
+
|
|
|
+( function( $ ) {
|
|
|
+
|
|
|
+ // Since the plugin handles customizer preview updates via the postMessage transport,
|
|
|
+ // we need to manually override the "extra CSS" when a user selects a different color palette.
|
|
|
+ wp.customize( 'colors_manager[colors]', function( value ) {
|
|
|
+ value.bind( function( to ) {
|
|
|
+
|
|
|
+ var background = to.bg;
|
|
|
+ var foreground = to.txt;
|
|
|
+ var primary = to.link;
|
|
|
+ var secondary = to.fg1;
|
|
|
+ var border = to.fg2;
|
|
|
+
|
|
|
+ var cssVariables = '';
|
|
|
+
|
|
|
+ if(background !== ''){
|
|
|
+ var backgroundLowContrast = changeColorLuminescence( background, -10 );
|
|
|
+ var backgroundHighContrast = changeColorLuminescence( background, 10 );
|
|
|
+ cssVariables += '--wp--preset--color--background: ' + background + ';' +
|
|
|
+ '--wp--preset--color--background-low-contrast: ' + backgroundLowContrast + ';' +
|
|
|
+ '--wp--preset--color--background-high-contrast: ' + backgroundHighContrast + ';';
|
|
|
+ }
|
|
|
+
|
|
|
+ if(foreground !== ''){
|
|
|
+ var foregroundLowContrast = changeColorLuminescence( foreground, 10 );
|
|
|
+ var foregroundHighContrast = changeColorLuminescence( foreground, -10 );
|
|
|
+ cssVariables += '--wp--preset--color--foreground: ' + foreground + ';' +
|
|
|
+ '--wp--preset--color--foreground-low-contrast: ' + foregroundLowContrast + ';' +
|
|
|
+ '--wp--preset--color--foreground-high-contrast: ' + foregroundHighContrast + ';';
|
|
|
+ }
|
|
|
+
|
|
|
+ if(primary !== ''){
|
|
|
+ var primaryHover = changeColorLuminescence( primary, 10 );
|
|
|
+ cssVariables += '--wp--preset--color--primary: ' + primary + ';' +
|
|
|
+ '--wp--preset--color--primary-hover: ' + primaryHover + ';';
|
|
|
+ }
|
|
|
+
|
|
|
+ if(secondary !== ''){
|
|
|
+ var secondaryHover = changeColorLuminescence( secondary, 10 );
|
|
|
+ cssVariables += '--wp--preset--color--secondary: ' + secondary + ';' +
|
|
|
+ '--wp--preset--color--secondary-hover: ' + secondaryHover + ';';
|
|
|
+ }
|
|
|
+
|
|
|
+ if(border !== ''){
|
|
|
+ var borderLowContrast = changeColorLuminescence( border, 10 );
|
|
|
+ var borderHighContrast = changeColorLuminescence( border, -10 );
|
|
|
+ cssVariables += '--wp--preset--color--border: ' + border + ';' +
|
|
|
+ '--wp--preset--color--border-low-contrast: ' + borderLowContrast + ';' +
|
|
|
+ '--wp--preset--color--border-high-contrast: ' + borderHighContrast + ';';
|
|
|
+ }
|
|
|
+
|
|
|
+ const extraCSS = ':root {' + cssVariables + '}';
|
|
|
+
|
|
|
+ // Append an extra style element that overrides the previous extra CSS
|
|
|
+ if ( $('#custom-colors-extra-css').length ) {
|
|
|
+ $( '#custom-colors-extra-css' ).html( extraCSS );
|
|
|
+ } else {
|
|
|
+ $( 'head' ).append( '<style id="custom-colors-extra-css">' + extraCSS + '</style>' );
|
|
|
+ }
|
|
|
+
|
|
|
+ if ( typeof cssVars !== 'undefined' ) {
|
|
|
+ cssVars( {} );
|
|
|
+ }
|
|
|
+ } );
|
|
|
+ } );
|
|
|
+
|
|
|
+} )( jQuery );
|