This commit is contained in:
Belen Curcio
2017-07-31 10:03:58 -03:00
parent 33a75aa4d0
commit 371348ced5
5 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import React from 'react';
import {Router, Route, IndexRedirect, Redirect} from 'react-router';
import {Router, Route, IndexRedirect} from 'react-router';
import {history} from 'coral-framework/helpers/router';
import Configure from 'routes/Configure';
@@ -132,7 +132,7 @@ export default class Moderation extends Component {
}
render () {
const {root, moderation, settings, viewUserDetail, hideUserDetail, activeTab, ...props} = this.props;
const {root, moderation, settings, viewUserDetail, hideUserDetail, activeTab, getModPath, ...props} = this.props;
const assetId = this.props.params.id;
const {asset} = root;
@@ -171,6 +171,7 @@ export default class Moderation extends Component {
asset={asset}
allCount={root.allCount}
newCount={root.newCount}
getModPath={getModPath}
approvedCount={root.approvedCount}
premodCount={root.premodCount}
rejectedCount={root.rejectedCount}
@@ -4,7 +4,6 @@ import styles from './styles.css';
import {SelectField, Option} from 'react-mdl-selectfield';
import {Icon} from 'coral-ui';
import {Link} from 'react-router';
import {getModPath} from '../../../utils';
import t from 'coral-framework/services/i18n';
@@ -18,7 +17,8 @@ const ModerationMenu = ({
reportedCount,
selectSort,
sort,
premodEnabled
premodEnabled,
getModPath
}) => {
return (
<div className="mdl-tabs">
@@ -3,7 +3,6 @@ import PropTypes from 'prop-types';
import styles from './StorySearch.css';
import {Button, Spinner, Icon} from 'coral-ui';
import Story from './Story';
import {isPremod} from '../../../utils';
const StorySearch = (props) => {
@@ -8,6 +8,7 @@ import t from 'coral-framework/services/i18n';
import update from 'immutability-helper';
import truncate from 'lodash/truncate';
import NotFoundAsset from '../components/NotFoundAsset';
import {getModPath} from '../../../utils';
import {withSetCommentStatus} from 'coral-framework/graphql/mutations';
import {handleCommentChange} from '../../../graphql/utils';
@@ -215,6 +216,7 @@ class ModerationContainer extends Component {
return <Moderation
{...this.props}
getModPath={getModPath}
loadMore={this.loadMore}
acceptComment={this.acceptComment}
rejectComment={this.rejectComment}