ea9c7a4a27
* Refactor CommentBadge * Refactor livestreamComment component * Refactor and split livestreamComment CSS * Refactor livestreamComments component * Refactor and split livestreamComments CSS * Remove never used spinner * Refactor livestream Page * Refactor page component * Refactor livestreamLayout component * Break apart livestreamComments into separate sibling components - This helps separating LivestreamComments to deal with only the comments, and the LivestreamLayout to be used for its own Page as a Popout option, and also for a layered approach for mobile * Create Popout Chat Page, Add Popout Chat Menu Option * Add Hide Chat option * sockety improvements * Websocket changes Co-authored-by: Thomas Zarebczan <thomas.zarebczan@gmail.com>
27 lines
847 B
JavaScript
27 lines
847 B
JavaScript
import { buildURI } from 'util/lbryURI';
|
|
import { connect } from 'react-redux';
|
|
import { doCommentSocketConnectAsCommenter, doCommentSocketDisconnectAsCommenter } from 'redux/actions/websocket';
|
|
import { doResolveUri } from 'redux/actions/claims';
|
|
import { selectClaimForUri } from 'redux/selectors/claims';
|
|
import PopoutChatPage from './view';
|
|
|
|
const select = (state, props) => {
|
|
const { match } = props;
|
|
const { params } = match;
|
|
const { channelName, streamName } = params;
|
|
|
|
const uri = buildURI({ channelName: channelName.replace(':', '#'), streamName: streamName.replace(':', '#') }) || '';
|
|
|
|
return {
|
|
claim: selectClaimForUri(state, uri),
|
|
uri,
|
|
};
|
|
};
|
|
|
|
const perform = {
|
|
doCommentSocketConnectAsCommenter,
|
|
doCommentSocketDisconnectAsCommenter,
|
|
doResolveUri,
|
|
};
|
|
|
|
export default connect(select, perform)(PopoutChatPage);
|