-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathApp.context.js
139 lines (130 loc) · 3.15 KB
/
App.context.js
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
import React, {
Component,
createContext
} from "react";
import FaAutomobile from "react-icons/lib/fa/automobile";
import FaBed from "react-icons/lib/fa/bed";
import FaPlane from "react-icons/lib/fa/plane";
import FaSpaceShuttle from "react-icons/lib/fa/space-shuttle";
import * as text from "./lib/text";
let TabsContext = createContext();
class Tabs extends Component {
state = {
activeIndex: 0,
selectTabIndex: activeIndex => {
this.setState({ activeIndex });
}
};
render() {
return (
<TabsContext.Provider value={this.state}>
<div className="Tabs">
{this.props.children}
</div>
</TabsContext.Provider>
);
}
}
let TabList = (props) => {
return (
<TabsContext.Consumer>
{context => {
let children = React.Children.map(
props.children,
(child, index) => {
return React.cloneElement(child, {
isActive: index === context.activeIndex,
onActivate: () =>
context.selectTabIndex(index)
});
}
);
return <div className="tabs">{children}</div>;
}}
</TabsContext.Consumer>
);
};
let Tab = (props) => {
const isDisabled = props.isDisabled;
const isActive = props.isActive;
return (
<div
className={
isDisabled
? "tab disabled"
: isActive ? "tab active" : "tab"
}
onClick={
isDisabled ? undefined : props.onActivate
}
>
{props.children}
</div>
);
};
let TabPanels = (props) => {
return (
<TabsContext.Consumer>
{context => (
<div className="panels">
{props.children[context.activeIndex]}
</div>
)}
</TabsContext.Consumer>
);
};
let TabPanel = (props) => props.children;
class App extends Component {
render() {
return (
<div className="App">
<Tabs>
<TabList>
<Tab>
<FaAutomobile />
</Tab>
<Tab>
<FaBed />
</Tab>
<Tab>
<FaPlane />
</Tab>
<Tab>
<FaSpaceShuttle />
</Tab>
</TabList>
<TabPanels>
<TabPanel>{text.cars}</TabPanel>
<TabPanel>
<Tabs>
<TabList>
<Tab>
<FaAutomobile />
</Tab>
<Tab isDisabled>
<FaBed />
</Tab>
<Tab>
<FaPlane />
</Tab>
<Tab>
<FaSpaceShuttle />
</Tab>
</TabList>
<TabPanels>
<TabPanel>{text.cars}</TabPanel>
<TabPanel>{text.hotels}</TabPanel>
<TabPanel>{text.flights}</TabPanel>
<TabPanel>{text.space}</TabPanel>
</TabPanels>
</Tabs>
</TabPanel>
<TabPanel>{text.flights}</TabPanel>
<TabPanel>{text.space}</TabPanel>
</TabPanels>
</Tabs>
</div>
);
}
}
export default App;