forked from FikraSpace/fikraspace-react-news-final
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
212 lines (178 loc) · 4.1 KB
/
app.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
// import necesary libs.
import React, { Component } from 'react'
import ReactDOM from 'react-dom'
import styled from 'styled-components'
import style from './style.css'
let SearchBox = styled.input`
border-radius: 20px;
background-color: #F5F6FA;
color: #fff;
font-size: 1.2rem;
border: 0px ;
height: 40px;
outline: none;
padding: 0 10px;
`
let Navigation = styled.header`
display: flex;
padding: 0px 10%;
align-items: center;
justify-content: space-between;
box-shadow: 0px 2px 25px rgba(0,0,0,0.16);
height: 100px;
`
let NewsContainer = styled.main`
background-color: #F5F6FA;
padding: 20px 10%;
`
let NewsItem = styled.div`
background-color: #fff;
border: 2px solid #E5E9F2;
min-height: 150px;
margin: 20px 0px;
border-radius: 4px;
display: flex;
padding: 10px;
justify-content: space-between;
`
let NewsImg = styled.img`
object-fit: cover;
max-width: 165px;
max-height: 165px;
`
let NewsText = styled.div`
padding-left: 14px;
position: relative;
flex-grow: 2;
`
let DateTime = styled.time`
position: absolute;
bottom: 0px;
color: #399DF2;
font-family: sans-serif;
`
let VoterContainer = styled.div`
width: 16px;
height: 60px;
display:flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 50px;
margin-right: 40px
`
let VoterBtn = styled.img`
width: 16px;
height: 12px;
padding: 10px;
`
class News extends Component {
constructor() {
super()
this.state = {
news: [],
searchValue: ''
}
this.getNews()
}
getNews(searchTerm = 'Iraq') {
fetch(`https://newsapi.org/v2/everything?q=${searchTerm}&apiKey=978d6c3818ff431b8c210ae86550fb1f`)
.then((response) => {
return response.json()
})
.then((data) => {
this.setState({
news: data.articles
})
})
}
onInputChange(event) {
this.setState({
searchValue: event.target.value
})
}
onKeyUp(event) {
if (event.key == 'Enter') {
this.getNews(this.state.searchValue)
this.setState({
searchValue: ''
})
}
}
Counter() {
this.setState({
count: this.state.count + 1
});
}
render() {
return (
<React.Fragment>
<Navigation>
<NewsImg width="150px;" src={require('./assets/logo.svg')} />
<SearchBox
onChange={this.onInputChange.bind(this)}
onKeyUp={this.onKeyUp.bind(this)}
value={this.state.searchValue} placeholder="search a topic" />
</Navigation>
<NewsContainer>
{
this.state.news.map((item, i) => {
return (
<NewsItem key={i}>
<img width="124px;" height="124px" src={item.urlToImage} />
<NewsText>
<h1>{item.title}</h1>
<p>{item.description}</p>
<DateTime>{item.publishedAt}</DateTime>
</NewsText>
<VoterContainer>
<VoterBtn src={require('./assets/voteUp.png')} />
<span>0</span>
<VoterBtn src={require('./assets/voteDown.png')} />
</VoterContainer>
</NewsItem>
)
})
}
</NewsContainer>
</React.Fragment>
)
}
}
function App() {
return <div>
<News />
</div>
}
ReactDOM.render(<App />, document.getElementById('root'))
var Counter = React.createClass({
incrementCount: function () {
this.setState({
count: this.state.count + 1
});
},
decrementCount: function () {
this.setState({
count: this.state.count - 1
});
},
getInitialState: function () {
return {
count: 0
};
},
render: function () {
return (
<div className="counter">
<h1>{this.state.count}</h1>
<button className="btn" onClick={this.incrementCount}>
Increment
</button>
<button className="btn" onClick={this.decrementCount}>
Decrement
</button>
</div>
);
}
});
React.render(<Counter />, document.body);