blob: d4146cfb03047f17d00882c19c23b6ebf135716f (
plain) (
blame)
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
|
import * as React from 'react';
import styled from 'styled-components';
export interface SelectItemConfig {
label: string;
value?: string;
onClick?: () => void;
}
interface SelectProps {
value?: string;
id: string;
items: SelectItemConfig[];
emptyText?: string;
onChange?: (ev: React.ChangeEvent<HTMLSelectElement>) => void;
shouldIncludeEmpty: boolean;
}
export const Select: React.FunctionComponent<SelectProps> = ({
value,
id,
items,
shouldIncludeEmpty,
emptyText,
onChange,
}) => {
return (
<Container>
<StyledSelect id={id} onChange={onChange}>
{shouldIncludeEmpty && <option value="">{emptyText}</option>}
{items.map((item, index) => (
<option
key={`${id}-item-${index}`}
value={item.value}
selected={item.value === value}
onClick={item.onClick}
>
{item.label}
</option>
))}
</StyledSelect>
<Caret width="12" height="7" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11 1L6 6 1 1" stroke="#666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</Caret>
</Container>
);
};
Select.defaultProps = {
emptyText: 'Select...',
shouldIncludeEmpty: true,
};
const Container = styled.div`
background-color: #fff;
border-radius: 4px;
display: flex;
width: 100%;
position: relative;
`;
const StyledSelect = styled.select`
appearance: none;
border: 0;
font-size: 1rem;
width: 100%;
padding: 20px 20px 20px 20px;
`;
const Caret = styled.svg`
position: absolute;
right: 20px;
top: calc(50% - 4px);
`;
|