-
Notifications
You must be signed in to change notification settings - Fork 0
/
LojaContext.js
57 lines (48 loc) · 1.17 KB
/
LojaContext.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
import React from 'react';
import Api from './constants/Api';
const LojaContext = React.createContext();
class LojaProvider extends React.Component {
state = {
ofertas: null,
cupons: null,
dadosLoja: null
}
constructor() {
super()
this.atualizaDadosLoja = this.atualizaDadosLoja.bind(this)
}
componentDidMount() {
this.atualizaDadosLoja()
.catch((msg) => console.log(msg))
}
async atualizaDadosLoja() {
const res = await fetch(Api.url+'/lojas')
.then(response => response.json())
.catch(erro => console.error('Erro no atualizaDadosLoja',erro))
if(res && res.success) {
const dadosLoja = res.data;
this.setState({dadosLoja})
return dadosLoja
}
if(res && !res.success) {
throw res.message
}
if(!res) {
return {}
}
}
render() {
return (
<LojaContext.Provider
value={{
atualizaDadosLoja: this.atualizaDadosLoja,
dadosLoja: this.state.dadosLoja
}}
>
{this.props.children}
</LojaContext.Provider>
)
}
}
const LojaConsumer = LojaContext.Consumer
export { LojaProvider, LojaConsumer }