-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.js
More file actions
46 lines (35 loc) · 914 Bytes
/
index.js
File metadata and controls
46 lines (35 loc) · 914 Bytes
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
import React, { Component } from 'react';
// Conectando el componente a reducer
import { connect } from 'react-redux';
import * as usuariosActions from '../../actions/usuariosActions';
import Spinner from '../general/Spinner';
import Fatal from '../general/Fatal';
import Tabla from './Tabla';
class Users extends Component {
componentDidMount() {
if (!this.props.usuarios.length) {
this.props.traerTodos();
}
}
ponerContenido = () => {
if (this.props.cargando) {
return <Spinner />;
}
if (this.props.error) {
return <Fatal mensaje={this.props.error} />;
}
return <Tabla />;
}
render() {
return (
<div>
<h1>Usuarios</h1>
{this.ponerContenido()}
</div>
);
}
}
const mapStateToProps = (reducer) => {
return reducer.usuariosReducer;
}
export default connect(mapStateToProps, usuariosActions/*Actions*/)(Users);