Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The left edge of the 2.13.7 version picks up the color BUG #620

Closed
sjwl123 opened this issue May 26, 2019 · 5 comments · Fixed by #670
Closed

The left edge of the 2.13.7 version picks up the color BUG #620

sjwl123 opened this issue May 26, 2019 · 5 comments · Fixed by #670

Comments

@sjwl123
Copy link

sjwl123 commented May 26, 2019

Zài shí sè qì zuǒ cè biānyuán shíqǔ yánsè shí, yánsè huì tiào dào zuì yòubiān huò zhōngjiān
25/5000
When you pick a color on the left edge of the color picker, the color jumps to the far right or middle

@automachina
Copy link

I had the same issue but was able to patch it out.
When the tinycolor constructor ingests an hsv value it turns the saturation and value into
percentages using the convertToPercentage function.

// https://github.com/bgrins/TinyColor/blob/master/tinycolor.js : 1034
function convertToPercentage(n) {
    if (n <= 1) {
        n = (n * 100) + "%";
    }

    return n;
}

The function treats any value <= 1 as a unit value (value between 0 and 1) and thus multiplies it by 100 to produce a percentage. So when you approach the left edge of the color picker you'll break that threshold and end up with unexpected values (i.e. 1 becomes 100; moving the indicator / color saturation all the way right). I patched the saturation and bright calculation in the "helpers/saturation.js" file to produce a unit value instead of the 0 to 100 value. This way it's not fighting the tinycolor library's strange behavior.

diff --git a/node_modules/react-color/lib/helpers/saturation.js b/node_modules/react-color/lib/helpers/saturation.js
index e50db13..f8af15d 100644
--- a/node_modules/react-color/lib/helpers/saturation.js
+++ b/node_modules/react-color/lib/helpers/saturation.js
@@ -23,8 +23,8 @@ var calculateChange = exports.calculateChange = function calculateChange(e, hsl,
     top = containerHeight;
   }
 
-  var saturation = left * 100 / containerWidth;
-  var bright = -(top * 100 / containerHeight) + 100;
+  var saturation = left / containerWidth;
+  var bright = 1 - top / containerHeight;
 
   return {
     h: hsl.h,
 

@karambaJob
Copy link

@casesandberg
same problem in current version 2.17.3, Safari 12.1 (14607.1.40.1.4)
safari 12 1 (14607 1 40 1 4)

kgapich pushed a commit to kgapich/react-color that referenced this issue Jul 11, 2019
@scotthwsnyder
Copy link

@casesandberg - can you integrate kgapich's change? I would love to use this.

@casesandberg
Copy link
Owner

This has been fixed with #670 and will be released shortly as [email protected]

@Wink007
Copy link

Wink007 commented Apr 9, 2020

This has been fixed with #670 and will be released shortly as [email protected]

problem still exists #701

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
6 participants