2021-03-03 19:50:16 +01:00
|
|
|
import { connect } from 'react-redux';
|
2021-06-11 22:49:18 +02:00
|
|
|
import { doChannelMute, doChannelUnmute } from 'redux/actions/blocked';
|
2021-03-03 19:50:16 +01:00
|
|
|
import { makeSelectChannelIsMuted } from 'redux/selectors/blocked';
|
|
|
|
import ChannelMuteButton from './view';
|
|
|
|
|
|
|
|
const select = (state, props) => ({
|
|
|
|
isMuted: makeSelectChannelIsMuted(props.uri)(state),
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(select, {
|
2021-06-11 22:49:18 +02:00
|
|
|
doChannelMute,
|
|
|
|
doChannelUnmute,
|
2021-03-03 19:50:16 +01:00
|
|
|
})(ChannelMuteButton);
|