-
Notifications
You must be signed in to change notification settings - Fork 922
Expand file tree
/
Copy pathChrome.js
More file actions
161 lines (156 loc) · 3.94 KB
/
Chrome.js
File metadata and controls
161 lines (156 loc) · 3.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
import React from "react";
import PropTypes from "prop-types";
import reactCSS from "reactcss";
import merge from "lodash/merge";
import { ColorWrap, Saturation, Hue, Alpha, Checkboard } from "../common";
import ChromeFields from "./ChromeFields";
import ChromePointer from "./ChromePointer";
import ChromePointerCircle from "./ChromePointerCircle";
export const Chrome = ({
width,
onChange,
disableAlpha,
rgb,
hsl,
hsv,
hex,
renderers,
styles: passedStyles = {},
className = "",
defaultView,
}) => {
const styles = reactCSS(
merge(
{
default: {
picker: {
width,
},
saturation: {
width: "100%",
paddingBottom: "55%",
position: "relative",
overflow: "hidden",
},
Saturation: {},
body: {
padding: "16px 16px 12px",
},
controls: {
display: "flex",
},
color: {
width: "32px",
},
swatch: {
marginTop: "6px",
width: "16px",
height: "16px",
position: "relative",
overflow: "hidden",
},
active: {
absolute: "0px 0px 0px 0px",
background: `rgba(${rgb.r}, ${rgb.g}, ${rgb.b}, ${rgb.a})`,
zIndex: "2",
},
toggles: {
flex: "1",
},
hue: {
height: "10px",
position: "relative",
marginBottom: "8px",
},
Hue: {},
alpha: {
height: "10px",
position: "relative",
},
Alpha: {},
},
disableAlpha: {
color: {
width: "22px",
},
alpha: {
display: "none",
},
hue: {
marginBottom: "0px",
},
swatch: {
width: "10px",
height: "10px",
marginTop: "0px",
},
},
},
passedStyles
),
{ disableAlpha }
);
return (
<div style={styles.picker} className={`chrome-picker ${className}`}>
<div style={styles.saturation} className="saturation">
<Saturation
style={styles.Saturation}
hsl={hsl}
hsv={hsv}
pointer={ChromePointerCircle}
onChange={onChange}
/>
</div>
<div style={styles.body} className="body">
<div style={styles.controls} className="controls flexbox-fix">
<div style={styles.color} className="color">
<div style={styles.swatch} className="swatch">
<div style={styles.active} className="active" />
<Checkboard renderers={renderers} />
</div>
</div>
<div style={styles.toggles} className="toggles">
<div style={styles.hue} className="hue hue-horizontal">
<Hue
style={styles.Hue}
hsl={hsl}
pointer={ChromePointer}
onChange={onChange}
/>
</div>
<div style={styles.alpha} className="alpha">
<Alpha
style={styles.Alpha}
rgb={rgb}
hsl={hsl}
pointer={ChromePointer}
renderers={renderers}
onChange={onChange}
/>
</div>
</div>
</div>
<ChromeFields
rgb={rgb}
hsl={hsl}
hex={hex}
view={defaultView}
onChange={onChange}
disableAlpha={disableAlpha}
/>
</div>
</div>
);
};
Chrome.propTypes = {
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
disableAlpha: PropTypes.bool,
styles: PropTypes.object,
defaultView: PropTypes.oneOf(["hex", "rgb", "hsl"]),
};
Chrome.defaultProps = {
width: 225,
disableAlpha: false,
styles: {},
};
export default ColorWrap(Chrome);