-
Notifications
You must be signed in to change notification settings - Fork 406
/
05-properties.html
65 lines (52 loc) · 1.73 KB
/
05-properties.html
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
<!doctype html>
<title>05 Properties - React From Zero</title>
<script src="https://unpkg.com/[email protected]/umd/react.development.js"></script>
<script src="https://unpkg.com/[email protected]/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<div id="app"></div>
<script type="text/babel">
// Components, like elements, can use properties, too
function MyComponent(props) {
return (
<div className={props.className}>
<h1>Hello</h1>
<h2>{props.customData}</h2>
</div>
);
}
// Add the defaultProps (function-)property to set the defaults
// if nothing was provided by the user
MyComponent.defaultProps = {
customData: "default-data",
className: "default-class"
};
var reactElement = <MyComponent className="abc" customData="world" />;
// Which also works with an object and the spread (...) operator
var props = {
className: "abc",
customData: "world"
};
reactElement = <MyComponent {...props} />;
// This allows components with dynamic content
var planets = ["earth", "mars", "venus"];
// If an array is used as a "child node" each child needs a unique
// key-property. This map call will return an array of components,
// like this example:
// [
// <MyComponent className="myClass" customData={"earth"} key={0}/>,
// <MyComponent className="myClass" customData={"mars"} key={1}/>,
// <MyComponent className="myClass" customData={"venus"} key={2}/>
// ]
var elements = planets.map(function(planet, index) {
return (
<MyComponent
className="myClass"
customData={planet}
key={index}
/>
);
});
reactElement = <div>{elements}</div>;
var renderTarget = document.getElementById("app");
ReactDOM.render(reactElement, renderTarget);
</script>