mirror of
https://github.com/apache/superset.git
synced 2026-04-11 04:15:33 +00:00
* Fixing PropTypes warning message React recently started warning on the upcoming deprecation of React.PropTypes, the new approach is to use the `prop-types` npm package instead. * Fixing the tests
69 lines
1.7 KiB
JavaScript
69 lines
1.7 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import moment from 'moment';
|
|
import TableLoader from './TableLoader';
|
|
|
|
const propTypes = {
|
|
user: PropTypes.object.isRequired,
|
|
};
|
|
|
|
class CreatedContent extends React.PureComponent {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
dashboardsLoading: true,
|
|
slicesLoading: true,
|
|
dashboards: [],
|
|
slices: [],
|
|
};
|
|
}
|
|
renderSliceTable() {
|
|
const mutator = data => data.map(slice => ({
|
|
slice: <a href={slice.url}>{slice.title}</a>,
|
|
favorited: moment.utc(slice.dttm).fromNow(),
|
|
_favorited: slice.dttm,
|
|
}));
|
|
return (
|
|
<TableLoader
|
|
dataEndpoint={`/superset/created_slices/${this.props.user.userId}/`}
|
|
className="table table-condensed"
|
|
columns={['slice', 'favorited']}
|
|
mutator={mutator}
|
|
noDataText="No slices"
|
|
sortable
|
|
/>
|
|
);
|
|
}
|
|
renderDashboardTable() {
|
|
const mutator = data => data.map(dash => ({
|
|
dashboard: <a href={dash.url}>{dash.title}</a>,
|
|
favorited: moment.utc(dash.dttm).fromNow(),
|
|
_favorited: dash.dttm,
|
|
}));
|
|
return (
|
|
<TableLoader
|
|
className="table table-condensed"
|
|
mutator={mutator}
|
|
dataEndpoint={`/superset/created_dashboards/${this.props.user.userId}/`}
|
|
noDataText="No dashboards"
|
|
columns={['dashboard', 'favorited']}
|
|
sortable
|
|
/>
|
|
);
|
|
}
|
|
render() {
|
|
return (
|
|
<div>
|
|
<h3>Dashboards</h3>
|
|
{this.renderDashboardTable()}
|
|
<hr />
|
|
<h3>Slices</h3>
|
|
{this.renderSliceTable()}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
CreatedContent.propTypes = propTypes;
|
|
|
|
export default CreatedContent;
|