...
|
...
|
@@ -24,6 +24,7 @@ function mapStateToProps(state) { |
|
|
tabButtons: state.content.contentType.get('list').toJS(),
|
|
|
commentList: state.content.commentList.get('list').toJS(),
|
|
|
isPullToRefresh: state.content.commentList.get('isPullToRefresh'),
|
|
|
shouldShowEmpty: state.content.commentList.get('shouldShowEmpty'),
|
|
|
contentTipFlag: state.content.contentTipFlag,
|
|
|
tipMessage: state.content.tipMessage,
|
|
|
communityHost: state.app.communityHost,
|
...
|
...
|
@@ -170,7 +171,8 @@ class ContentMessageContainer extends Component { |
|
|
tipMessage,
|
|
|
tabButtons,
|
|
|
commentList,
|
|
|
isPullToRefresh
|
|
|
isPullToRefresh,
|
|
|
shouldShowEmpty
|
|
|
} = this.props
|
|
|
|
|
|
return (
|
...
|
...
|
@@ -184,6 +186,7 @@ class ContentMessageContainer extends Component { |
|
|
commentList={commentList}
|
|
|
isPullToRefresh={isPullToRefresh}
|
|
|
tipMessage={tipMessage}
|
|
|
shouldShowEmpty={shouldShowEmpty}
|
|
|
onRefresh={this._onRefresh}
|
|
|
onEndReached={this._onEndReached}
|
|
|
onHiddenTipMessage={this._onHiddenTipMessage}
|
...
|
...
|
|