-
Notifications
You must be signed in to change notification settings - Fork 0
/
index10-4.html
116 lines (98 loc) · 3.45 KB
/
index10-4.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
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="react.development.js" ></script>
<script src="react-dom.development.js" ></script>
<script src="babel.min.js" ></script>
</head>
<body>
<div id="root"></div>
<script type="text/babel">
//Class component
//--Resusability
//--Complexity
class ListElement extends React.Component{
changeNameToUpperCase(input){
return input.toUpperCase();
}
render(){
return <React.Fragment>
<li >
{this.changeNameToUpperCase(this.props.namex)}
</li>
<span>
😂
</span>
</React.Fragment>
}
}
class UL extends React.Component{
constructor(){
super();
console.log('UL constructor');
}
render(){
const names = ["ali","reza","maryam","morad","kamran"];
const listItems = names.map((item,index)=>{
return <ListElement namex={item} key={index} />
});
return <ul>
{listItems}
</ul>
}
}
class Root extends React.Component{
render(){
const rootStyle = {
backgroundColor:'red',
height:'100px',
width:'200px'
}
return <div style={rootStyle} id="my-first-div" >
<UL />
</div>
}
}
//Function Component
function ULF(props){
const names = ["ali","reza","maryam","morad","kamran"];
const changeNameToUpperCase = (input)=>{
return input.toUpperCase();
}
const listItems = names.map((item,index)=><React.Fragment key={index}>
<li >
{changeNameToUpperCase(item)}
</li>
<span>
😂
</span>
</React.Fragment>);
return <ul>
{listItems}
</ul>
}
function RootF(props){
const rootStyle = {
backgroundColor:'red',
height:'100px',
width:'200px'
}
return <div style={rootStyle} id="my-first-div" >
<ULF />
</div>
}
//ReactDOM.render(element, container)
ReactDOM.render(
<Root />,
document.getElementById('root')
);
//تمرین هفته بعد
//لیست کامنتهایی که هفته گذشته داشتید رو با استفاده از تعریف کامئوننت در صفحه نمایش بدید
//حداقل دو کامپوننت تعریف کنید یکی برای نمایش یک کامنت و یکی برای نمایش همه کامنتها
//یکبار با استفاده از کلاس کامپوننت بنویسید و یکبار با استفاده از فانکشن
//دو فایل html برای من می فرستید و در گیت شیر میکنید
</script>
</body>
</html>