-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
134 lines (114 loc) · 2.6 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
// import necesary libs.
import React, { Component } from 'react'
import ReactDOM from 'react-dom'
import styled from 'styled-components'
let SearchBox = styled.input `
border-radius: 20px;
background-color: #000;
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: red;
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;
`
let NewsText = styled.div`
padding-left: 14px;
position: relative;
`
let DateTime = styled.time`
position: absolute;
bottom: 0px;
color: #399DF2;
font-family: sans-serif;
`
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: ''
})
}
}
render() {
return (
<React.Fragment>
<Navigation>
<img width="150px;" src={require('./assets/logo.svg')}/>
<SearchBox
onChange={this.onInputChange.bind(this)}
onKeyUp={this.onKeyUp.bind(this)}
value={this.state.searchValue} placeholder="search term"/>
</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>
</NewsItem>
)
})
}
</NewsContainer>
</React.Fragment>
)
}
}
function App() {
return <div>
<News/>
</div>
}
ReactDOM.render(<App/>, document.getElementById('root'))