2020-02-12 19:59:48 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { doOpenModal } from 'redux/actions/app';
|
2021-01-15 15:11:35 +01:00
|
|
|
import { makeSelectTagInClaimOrChannelForUri, makeSelectClaimForUri } from 'lbry-redux';
|
2020-11-10 06:21:04 +01:00
|
|
|
import ClaimSupportButton from './view';
|
2020-02-12 19:59:48 +01:00
|
|
|
|
2020-10-27 20:54:36 +01:00
|
|
|
const DISABLE_SUPPORT_TAG = 'disable-support';
|
|
|
|
const select = (state, props) => ({
|
|
|
|
disableSupport: makeSelectTagInClaimOrChannelForUri(props.uri, DISABLE_SUPPORT_TAG)(state),
|
2021-01-15 15:11:35 +01:00
|
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
2020-10-27 20:54:36 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(select, {
|
|
|
|
doOpenModal,
|
|
|
|
})(ClaimSupportButton);
|