@@ -51,8 +51,22 @@ const TabbedArea = React.createClass({
51
51
52
52
componentWillReceiveProps ( nextProps ) {
53
53
if ( nextProps . activeKey != null && nextProps . activeKey !== this . props . activeKey ) {
54
+ // check if the 'previousActiveKey' child still exists
55
+ let previousActiveKey = this . props . activeKey ;
56
+ React . Children . forEach ( nextProps . children , ( child ) => {
57
+ if ( React . isValidElement ( child ) ) {
58
+ if ( child . props . eventKey === previousActiveKey ) {
59
+ this . setState ( {
60
+ previousActiveKey
61
+ } ) ;
62
+ return ;
63
+ }
64
+ }
65
+ } ) ;
66
+
67
+ // if the 'previousActiveKey' child does not exist anymore
54
68
this . setState ( {
55
- previousActiveKey : this . props . activeKey
69
+ previousActiveKey : null
56
70
} ) ;
57
71
}
58
72
} ,
@@ -66,15 +80,12 @@ const TabbedArea = React.createClass({
66
80
render ( ) {
67
81
let { id, ...props } = this . props ;
68
82
69
- let activeKey =
70
- this . props . activeKey != null ? this . props . activeKey : this . state . activeKey ;
71
-
72
83
function renderTabIfSet ( child ) {
73
84
return child . props . tab != null ? this . renderTab ( child ) : null ;
74
85
}
75
86
76
87
let nav = (
77
- < Nav { ...props } activeKey = { activeKey } onSelect = { this . handleSelect } ref = "tabs" >
88
+ < Nav { ...props } activeKey = { this . getActiveKey ( ) } onSelect = { this . handleSelect } ref = "tabs" >
78
89
{ ValidComponentChildren . map ( this . props . children , renderTabIfSet , this ) }
79
90
</ Nav >
80
91
) ;
@@ -94,21 +105,22 @@ const TabbedArea = React.createClass({
94
105
} ,
95
106
96
107
renderPane ( child , index ) {
97
- let activeKey = this . getActiveKey ( ) ;
108
+ let previousActiveKey = this . state . previousActiveKey ;
98
109
99
- let active = ( child . props . eventKey === activeKey &&
100
- ( this . state . previousActiveKey == null || ! this . props . animation ) ) ;
110
+ let shouldPaneBeSetActive = child . props . eventKey === this . getActiveKey ( ) ;
111
+ let thereIsNoActivePane = previousActiveKey == null ;
112
+
113
+ let paneIsAlreadyActive = previousActiveKey != null && child . props . eventKey === previousActiveKey ;
101
114
102
115
return cloneElement (
103
116
child ,
104
117
{
105
- active,
118
+ active : shouldPaneBeSetActive && ( thereIsNoActivePane || ! this . props . animation ) ,
106
119
id : panelId ( this . props , child ) ,
107
120
'aria-labelledby' : tabId ( this . props , child ) ,
108
121
key : child . key ? child . key : index ,
109
122
animation : this . props . animation ,
110
- onAnimateOutEnd : ( this . state . previousActiveKey != null &&
111
- child . props . eventKey === this . state . previousActiveKey ) ? this . handlePaneAnimateOutEnd : null
123
+ onAnimateOutEnd : paneIsAlreadyActive ? this . handlePaneAnimateOutEnd : null
112
124
}
113
125
) ;
114
126
} ,
@@ -134,15 +146,20 @@ const TabbedArea = React.createClass({
134
146
return ! this . _isChanging ;
135
147
} ,
136
148
137
- handleSelect ( key ) {
149
+ handleSelect ( selectedKey ) {
138
150
if ( this . props . onSelect ) {
139
151
this . _isChanging = true ;
140
- this . props . onSelect ( key ) ;
152
+ this . props . onSelect ( selectedKey ) ;
141
153
this . _isChanging = false ;
142
- } else if ( key !== this . getActiveKey ( ) ) {
154
+ return ;
155
+ }
156
+
157
+ // if there is no external handler, then use embedded one
158
+ let previousActiveKey = this . getActiveKey ( ) ;
159
+ if ( selectedKey !== previousActiveKey ) {
143
160
this . setState ( {
144
- activeKey : key ,
145
- previousActiveKey : this . getActiveKey ( )
161
+ activeKey : selectedKey ,
162
+ previousActiveKey
146
163
} ) ;
147
164
}
148
165
}
0 commit comments