Don't export internals of embed stream in plugin-api (for now)

This commit is contained in:
Chi Vinh Le
2017-07-18 21:04:30 +07:00
parent 19929c97d8
commit 6652368221
7 changed files with 31 additions and 30 deletions
@@ -3,7 +3,7 @@ import {bindActionCreators} from 'redux';
import {compose, gql} from 'react-apollo';
import TabPane from '../components/TabPane';
import {withFragments} from 'plugin-api/beta/client/hocs';
import {setActiveTab} from 'plugin-api/beta/client/actions/stream';
import {setActiveTab} from 'coral-embed-stream/src/actions/stream';
const mapDispatchToProps = (dispatch) =>
bindActionCreators({
@@ -5,7 +5,8 @@ import FeaturedButton from './components/FeaturedButton';
import translations from './translations.json';
import update from 'immutability-helper';
import {findCommentInEmbedQuery, insertCommentSorted} from 'plugin-api/beta/client/utils/stream';
import {findCommentInEmbedQuery} from 'coral-embed-stream/src/graphql/utils';
import {insertCommentsSorted} from 'plugin-api/beta/client/utils';
export default {
translations,
@@ -51,7 +52,7 @@ export default {
asset: {
featuredComments: {
nodes: {
$apply: (nodes) => insertCommentSorted(nodes, comment, 'REVERSE_CHRONOLOGICAL')
$apply: (nodes) => insertCommentsSorted(nodes, comment, 'REVERSE_CHRONOLOGICAL')
}
},
featuredCommentsCount: {