2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2020-05-21 18:53:21 +02:00
|
|
|
import { doPlayUri } from 'redux/actions/content';
|
2020-05-21 17:38:28 +02:00
|
|
|
import { doHideModal, doAnaltyicsPurchaseEvent } from 'redux/actions/app';
|
2018-10-29 18:23:53 +01:00
|
|
|
import { makeSelectMetadataForUri } from 'lbry-redux';
|
2017-12-21 22:08:54 +01:00
|
|
|
import ModalAffirmPurchase from './view';
|
2017-09-07 23:18:33 +02:00
|
|
|
|
2017-09-08 05:15:05 +02:00
|
|
|
const select = (state, props) => ({
|
|
|
|
metadata: makeSelectMetadataForUri(props.uri)(state),
|
2017-09-07 23:18:33 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
const perform = dispatch => ({
|
2020-05-21 17:38:28 +02:00
|
|
|
analyticsPurchaseEvent: fileInfo => dispatch(doAnaltyicsPurchaseEvent(fileInfo)),
|
2017-09-18 04:08:43 +02:00
|
|
|
cancelPurchase: () => {
|
2020-05-21 18:53:21 +02:00
|
|
|
// TODO: Find a way to add this back without messing up embeds
|
|
|
|
// dispatch(doSetPlayingUri(null));
|
2018-10-29 18:23:53 +01:00
|
|
|
dispatch(doHideModal());
|
2017-09-18 04:08:43 +02:00
|
|
|
},
|
2018-10-29 18:23:53 +01:00
|
|
|
closeModal: () => dispatch(doHideModal()),
|
2020-05-21 17:38:28 +02:00
|
|
|
loadVideo: (uri, onSuccess) => dispatch(doPlayUri(uri, true, undefined, onSuccess)),
|
2017-09-07 23:18:33 +02:00
|
|
|
});
|
|
|
|
|
2020-05-21 17:38:28 +02:00
|
|
|
export default connect(select, perform)(ModalAffirmPurchase);
|