/*
*
* List
*
*/
import React from 'react';
import { connect } from 'react-redux';
import { createStructuredSelector } from 'reselect';
import { injectIntl } from 'react-intl';
import _ from 'lodash';
import Container from 'components/Container';
import Table from 'components/Table';
import Pagination from 'components/Pagination';
import styles from './styles.scss';
import {
setCurrentModelName,
loadRecords,
loadCount,
changePage,
} from './actions';
import {
makeSelectRecords,
makeSelectLoadingRecords,
makeSelectCurrentModelName,
makeSelectCount,
makeSelectCurrentPage,
makeSelectLimitPerPage,
makeSelectLoadingCount,
} from './selectors';
import {
makeSelectModels,
} from 'containers/App/selectors';
export class List extends React.Component { // eslint-disable-line react/prefer-stateless-function
componentWillMount() {
this.props.setCurrentModelName(this.props.routeParams.slug.toLowerCase());
this.props.loadRecords();
this.props.loadCount();
}
render() {
const PluginHeader = this.props.exposedComponents.PluginHeader;
let content;
if (this.props.loadingRecords) {
content = (
);
} else {
// Detect current model structure from models list
const currentModel = this.props.models[this.props.currentModelName];
// Hide non displayed attributes
const displayedAttributes = _.pickBy(currentModel.attributes, (attr) => (!attr.admin || attr.admin.displayed !== false));
// Define table headers
const tableHeaders = _.map(displayedAttributes, (value, key) => ({
name: key,
label: key,
type: value.type,
}));
content = (
);
}
return (
${this.props.routeParams.slug}`
}} description={{
id: 'plugin-content-manager-description',
defaultMessage: `Manage your ${this.props.routeParams.slug}`
}} noActions={false}>
{content}
);
}
}
List.propTypes = {
setCurrentModelName: React.PropTypes.func,
records: React.PropTypes.oneOfType([
React.PropTypes.array,
React.PropTypes.bool,
]),
loadRecords: React.PropTypes.func,
loadingRecords: React.PropTypes.bool,
models: React.PropTypes.oneOfType([
React.PropTypes.object,
React.PropTypes.bool,
]),
currentPage: React.PropTypes.number,
limitPerPage: React.PropTypes.number,
currentModelName: React.PropTypes.string,
goPage: React.PropTypes.func,
};
function mapDispatchToProps(dispatch) {
return {
setCurrentModelName: (modelName) => dispatch(setCurrentModelName(modelName)),
loadRecords: () => dispatch(loadRecords()),
loadCount: () => dispatch(loadCount()),
changePage: (page) => {
dispatch(changePage(page));
dispatch(loadRecords());
dispatch(loadCount());
},
dispatch,
};
}
const mapStateToProps = createStructuredSelector({
records: makeSelectRecords(),
loadingRecords: makeSelectLoadingRecords(),
count: makeSelectCount(),
loadingCount: makeSelectLoadingCount(),
models: makeSelectModels(),
currentPage: makeSelectCurrentPage(),
limitPerPage: makeSelectLimitPerPage(),
currentModelName: makeSelectCurrentModelName(),
});
export default connect(mapStateToProps, mapDispatchToProps)(injectIntl(List));