Skip to content

Commit 98b2cb7

Browse files
authored
Merge pull request #2796 from objectcomputing/feature-2795/toggle-pulse-report
Feature 2795/toggle pulse report
2 parents dcaddfe + 74f2cc5 commit 98b2cb7

File tree

4 files changed

+338
-44
lines changed

4 files changed

+338
-44
lines changed

web-ui/src/helpers/colors.js

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// pSBC - Shade Blend Convert - Version 4.1 - 01/7/2021
2+
// https://github.com/PimpTrizkit/PJs/blob/master/pSBC.js
3+
4+
export const pSBC=(p,c0,c1,l)=>{
5+
let r,g,b,P,f,t,h,m=Math.round,a=typeof(c1)=="string";
6+
if(typeof(p)!="number"||p<-1||p>1||typeof(c0)!="string"||(c0[0]!='r'&&c0[0]!='#')||(c1&&!a))return null;
7+
h=c0.length>9,h=a?c1.length>9?true:c1=="c"?!h:false:h,f=pSBC.pSBCr(c0),P=p<0,t=c1&&c1!="c"?pSBC.pSBCr(c1):P?{r:0,g:0,b:0,a:-1}:{r:255,g:255,b:255,a:-1},p=P?p*-1:p,P=1-p;
8+
if(!f||!t)return null;
9+
if(l)r=m(P*f.r+p*t.r),g=m(P*f.g+p*t.g),b=m(P*f.b+p*t.b);
10+
else r=m((P*f.r**2+p*t.r**2)**0.5),g=m((P*f.g**2+p*t.g**2)**0.5),b=m((P*f.b**2+p*t.b**2)**0.5);
11+
a=f.a,t=t.a,f=a>=0||t>=0,a=f?a<0?t:t<0?a:a*P+t*p:0;
12+
if(h)return"rgb"+(f?"a(":"(")+r+","+g+","+b+(f?","+m(a*1000)/1000:"")+")";
13+
else return"#"+(4294967296+r*16777216+g*65536+b*256+(f?m(a*255):0)).toString(16).slice(1,f?undefined:-2)
14+
}
15+
16+
pSBC.pSBCr=(d)=>{
17+
const i=parseInt;
18+
let n=d.length,x={};
19+
if(n>9){
20+
const [r, g, b, a] = (d = d.split(','));
21+
n = d.length;
22+
if(n<3||n>4)return null;
23+
x.r=i(r[3]=="a"?r.slice(5):r.slice(4)),x.g=i(g),x.b=i(b),x.a=a?parseFloat(a):-1
24+
}else{
25+
if(n==8||n==6||n<4)return null;
26+
if(n<6)d="#"+d[1]+d[1]+d[2]+d[2]+d[3]+d[3]+(n>4?d[4]+d[4]:"");
27+
d=i(d.slice(1),16);
28+
if(n==9||n==5)x.r=d>>24&255,x.g=d>>16&255,x.b=d>>8&255,x.a=Math.round((d&255)/0.255)/1000;
29+
else x.r=d>>16,x.g=d>>8&255,x.b=d&255,x.a=-1
30+
}return x
31+
};

web-ui/src/helpers/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ export * from './datetime';
44
export * from './query-parameters';
55
export * from './sanitizehtml';
66
export * from './strings';
7+
export * from './colors';

0 commit comments

Comments
 (0)