23 lines
677 B
JavaScript
23 lines
677 B
JavaScript
import * as PAGES from 'constants/pages';
|
|
import { connect } from 'react-redux';
|
|
import { makeSelectClaimForUri, makeSelectClaimIsPending, doClearPublish, doPrepareEdit } from 'lbry-redux';
|
|
import { push } from 'connected-react-router';
|
|
import ClaimPreviewSubtitle from './view';
|
|
|
|
const select = (state, props) => ({
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
|
pending: makeSelectClaimIsPending(props.uri)(state),
|
|
});
|
|
|
|
const perform = dispatch => ({
|
|
beginPublish: name => {
|
|
dispatch(doClearPublish());
|
|
dispatch(doPrepareEdit({ name }));
|
|
dispatch(push(`/$/${PAGES.PUBLISH}`));
|
|
},
|
|
});
|
|
|
|
export default connect(
|
|
select,
|
|
perform
|
|
)(ClaimPreviewSubtitle);
|