forked from supnate/react-dom-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.jsx
126 lines (112 loc) · 2.05 KB
/
index.jsx
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
function createComponent(name) {
class _MyNode extends React.Component{
constructor(props) {
super(props);
console.log(name + ' is created.');
}
componentDidMount() {
console.log(name + ' did mount.');
}
componentWillUnmount() {
console.log(name + ' will unmount.');
}
componentDidUpdate() {
console.log(name + ' is updated.');
}
render() {
return (
<div className={'node ' + name} data-name={name}>
{this.props.children}
</div>
);
}
}
return _MyNode;
}
var Root = createComponent('R');
var A = createComponent('A');
var B = createComponent('B');
var C = createComponent('C');
var D = createComponent('D');
var Wrapper = React.createClass({
propTypes: {
shape: React.PropTypes.string.isRequired
},
shape1: function() {
return (
<Root>
<A>
<B />
<C />
</A>
<D />
</Root>
);
},
shape2: function() {
return (
<Root>
<A>
<B />
</A>
<D>
<C />
</D>
</Root>
);
},
shape3: function() {
return (
<Root>
<A>
<B>
<C />
</B>
</A>
<D />
</Root>
);
},
shape4: function() {
return (
<Root>
<A>
<B />
<D>
<C />
</D>
</A>
</Root>
);
},
shape5: function() {
return (
<Root>
<A>
<B key="B" />
<C key="C" />
</A>
</Root>
);
},
shape6: function() {
return (
<Root>
<A>
<C key="C" />
<B key="B" />
</A>
</Root>
);
},
render: function() {
if (this[this.props.shape]) {
return this[this.props.shape]();
} else {
return <Root />;
}
}
});
window.render = function render(shape) {
React.render(<Wrapper shape={shape}/>, document.getElementById('react-root'), function() {console.log('=====================');});
}