17 lines
524 B
JavaScript
17 lines
524 B
JavaScript
import { connect } from 'react-redux';
|
|
import { withRouter } from 'react-router';
|
|
import { makeSelectCommentForCommentId } from 'redux/selectors/comments';
|
|
|
|
import ChannelDiscussion from './view';
|
|
|
|
const select = (state, props) => {
|
|
const { search } = props.location;
|
|
const urlParams = new URLSearchParams(search);
|
|
const linkedCommentId = urlParams.get('lc');
|
|
|
|
return {
|
|
linkedComment: makeSelectCommentForCommentId(linkedCommentId)(state),
|
|
};
|
|
};
|
|
|
|
export default withRouter(connect(select)(ChannelDiscussion));
|