-
Notifications
You must be signed in to change notification settings - Fork 33
/
styling.tsx
224 lines (208 loc) · 5.86 KB
/
styling.tsx
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import React from "react";
import {
CSSObjectWithLabel,
StylesConfig,
ControlProps,
OptionProps,
components,
} from "react-select";
import {
DropdownIcon,
ClearIconCircularFilled,
ClearIconCross,
ClearIconCircularUnfilled,
} from "./icons";
class SearchboxStyle {
theme: any;
label: any;
select: StylesConfig;
constructor(theme: any, overrides: any) {
this.theme = theme;
this.label = {
color: theme.textColor,
fontSize: "0.82em",
fontWeight: 400,
font: theme.font,
marginBottom: "0.85rem",
};
this.select = {
// overall option list
menuList: (styles: any) => {
return {
...styles,
backgroundColor: theme.backgroundColor,
...(overrides.menuList || {}),
};
},
singleValue: (styles: any) => ({
...styles,
color: theme.textColor,
...(overrides.singleValue || {}),
}),
// custom styles needed for default mobile paste behavior
// https://github.com/JedWatson/react-select/issues/4106
// filler text and icons
input: (styles: any) => ({
...styles,
color: theme.textColor,
// expand input area to fill all the available area
gridTemplateColumns: "0 minmax(min-content, 1fr)",
...(overrides.input || {}),
}),
// placeholder text
placeholder: (styles: any) => {
return {
...styles,
pointerEvents: "none",
userSelect: "none",
MozUserSelect: "none",
WebkitUserSelect: "none",
msUserSelect: "none",
color: theme.fadedText60,
...(overrides.placeholder || {}),
};
},
// searchbox and others, e.g. options window
control: (styles: CSSObjectWithLabel, { isFocused }: ControlProps) => {
return {
...styles,
backgroundColor: theme.secondaryBackgroundColor,
color: theme.secondaryBackgroundColor,
border: !isFocused
? "1px transparent"
: "1px solid " + theme.primaryColor,
boxShadow: "none",
"&:hover": {
border: !isFocused
? "1px transparent"
: "1px solid " + theme.primaryColor,
},
...(overrides.control || {}),
};
},
// single cell in option list
option: (
styles: CSSObjectWithLabel,
{ isDisabled, isFocused, isSelected }: OptionProps,
) => {
return {
...styles,
backgroundColor: isDisabled
? undefined
: isSelected
? theme.secondaryBackgroundColor
: isFocused
? theme.secondaryBackgroundColor
: theme.backgroundColor,
// option text
color: theme.textColor,
cursor: isDisabled ? "not-allowed" : "Search ...",
...(overrides.option || {}),
};
},
};
}
/**
* Dropdown icon, adjusted if menu is open
* @param menu
* @returns
*/
iconDropdown(menu: boolean, overrides: any) {
return (
<div
style={{
display: "flex",
alignItems: "center",
justifyContent: "center",
marginRight: "8px",
marginLeft: "2px",
}}
>
<DropdownIcon
// streamlit has fixed icon sizes at 15x15
width={15}
height={15}
stroke={this.theme.textColor}
transform={menu && overrides && overrides.rotate ? "rotate(180)" : ""}
{...overrides}
/>
</div>
);
}
/**
* Clear icon, props are passed by react-select
* @param props
* @returns
*/
clearIndicator(props: any, overrides: any) {
let {
innerProps: { ref, ...iconProps },
} = props;
// fill / stroke color might be passed by react-select
iconProps = {
...iconProps,
ref: ref,
// streamlit has fixed icon sizes at 15x15
width: 22,
height: 22,
...overrides,
};
// if stroke or fill in iconProps don't set hover color
const isColorOverride = "stroke" in iconProps || "fill" in iconProps;
if (iconProps.icon === "cross") {
return (
<ClearIconCross
// replace opacity single overlapping strokes will look weird
stroke={this.theme.textColor}
strokeHover={isColorOverride ? undefined : this.theme.primaryColor}
{...iconProps}
/>
);
}
if (iconProps.icon === "circle-unfilled") {
return (
<ClearIconCircularUnfilled
// replace opacity single overlapping strokes will look weird
stroke={this.theme.textColor}
strokeHover={isColorOverride ? undefined : this.theme.primaryColor}
{...iconProps}
// icon can't be filled
fill="none"
/>
);
}
return (
<ClearIconCircularFilled
fill={this.theme.fadedText60}
fillHover={isColorOverride ? undefined : this.theme.textColor}
{...iconProps}
/>
);
}
optionHighlighted = (props: any, highlightColor: string | undefined) => {
if (!highlightColor || highlightColor === "") {
return <components.Option {...props} />;
}
const { children, selectProps } = props;
const inputValue = selectProps.inputValue as string;
// split into parts that match or don't match the inputValue
const parts =
typeof children === "string"
? children.split(new RegExp(`(${inputValue})`, "gi"))
: [];
return (
<components.Option {...props}>
{parts.map((part, index) =>
part.toLowerCase() === inputValue.toLowerCase() ? (
<span key={index} style={{ backgroundColor: highlightColor }}>
{part}
</span>
) : (
part // no match
),
)}
</components.Option>
);
};
}
export default SearchboxStyle;