blob: c1d5f6b7f27d40cff6cd1e44df73335251e7c16c (
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
75
76
77
78
79
|
import * as React from 'react';
import { Tab, TabList, TabPanel, Tabs as ReactTabs } from 'react-tabs';
import styled from 'styled-components';
import { colors } from 'ts/variables';
import { Breakout } from './Breakout';
const StyledTabList = styled(TabList)`
text-transform: uppercase;
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
`;
const StyledTab = styled(Tab)`
height: 2.5rem;
padding-left: 1rem;
padding-right: 1rem;
display: flex;
justify-content: space-around;
align-items: center;
float: left;
&:not(:first-of-type) {
margin-left: 0.25rem;
}
`;
const Root =
styled.div <
{ colors: any } >
`
${StyledTab} {
background-color: ${props => props.theme.colors.secondary};
&[aria-selected="true"] {
background-color: ${colors.gray};
}
&[aria-selected="false"]:focus,
&[aria-selected="false"]:hover {
background-color: ${props => props.theme.colors.secondary_alt};
cursor: pointer;
}
}
`;
interface TabsProps {
children: React.ReactNode;
}
const Tabs: React.StatelessComponent<TabsProps> = props => (
<Breakout>
<Root>
<ReactTabs>
<StyledTabList>
{React.Children.map(props.children, child => {
const { title } = React.cloneElement(child as React.ReactElement<any>).props;
return <StyledTab>{title}</StyledTab>;
})}
</StyledTabList>
{React.Children.map(props.children, child => <TabPanel>{child}</TabPanel>)}
</ReactTabs>
</Root>
</Breakout>
);
interface TabBlockProps {
title: string;
children: React.ReactNode;
}
const TabBlock: React.StatelessComponent<TabBlockProps> = props => <React.Fragment>{props.children}</React.Fragment>;
const ContextTabs = Tabs;
export { ContextTabs as Tabs, TabBlock };
|