blob: 1efbe1f61d5c45923c611ed98857d34a2d7fc9f0 (
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 styled from 'styled-components';
import { Tabs as ReactTabs, Tab, TabList, TabPanel } from 'react-tabs'
import {withContext, Props} from './withContext';
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: .25rem;
}
&:focus, &:hover {
color: red;
outline: 0;
}
`;
const Root = styled.div<{primaryColor: string;}>`
${StyledTab} {
background-color: ${props => props.primaryColor};
}
${StyledTab}[aria-selected="true"] {
background-color: #F1F2F7;
}
`;
interface TabsProps extends Props {
children: React.ReactNode;
}
function Tabs(props: TabsProps) {
return (
<Root primaryColor={props.colors.secondary}>
<ReactTabs>
<StyledTabList>
{ React.Children.map(props.children, child => {
const {props} = React.cloneElement(child as React.ReactElement<any>);
return <StyledTab>{props.title}</StyledTab>
}) }
</StyledTabList>
{ React.Children.map(props.children, child => (
<TabPanel>{child}</TabPanel>
)) }
</ReactTabs>
</Root>
)
}
interface TabBlockProps {
title: string;
children: React.ReactNode;
}
function TabBlock(props: TabBlockProps) {
return (
<React.Fragment>
{props.children}
</React.Fragment>
)
}
const ContextTabs = withContext(Tabs);
export {ContextTabs as Tabs, TabBlock};
|