2020-08-13 21:06:43 +02:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { doHideModal } from 'redux/actions/app';
|
|
|
|
import ModalPublishPreview from './view';
|
2021-10-17 10:36:14 +02:00
|
|
|
import { makeSelectPublishFormValue, selectPublishFormValues, selectIsStillEditing } from 'redux/selectors/publish';
|
|
|
|
import { selectMyChannelClaims, makeSelectClaimIsStreamPlaceholder } from 'redux/selectors/claims';
|
|
|
|
import * as SETTINGS from 'constants/settings';
|
2020-08-11 11:54:09 +02:00
|
|
|
import { selectFfmpegStatus, makeSelectClientSetting } from 'redux/selectors/settings';
|
2020-08-13 21:06:43 +02:00
|
|
|
import { doPublishDesktop } from 'redux/actions/publish';
|
2020-08-11 11:54:09 +02:00
|
|
|
import { doSetClientSetting } from 'redux/actions/settings';
|
2020-08-13 21:06:43 +02:00
|
|
|
|
2021-04-14 06:06:11 +02:00
|
|
|
const select = (state, props) => {
|
|
|
|
const editingUri = makeSelectPublishFormValue('editingURI')(state);
|
|
|
|
|
|
|
|
return {
|
|
|
|
...selectPublishFormValues(state),
|
|
|
|
myChannels: selectMyChannelClaims(state),
|
|
|
|
isVid: makeSelectPublishFormValue('fileVid')(state),
|
|
|
|
publishSuccess: makeSelectPublishFormValue('publishSuccess')(state),
|
|
|
|
publishing: makeSelectPublishFormValue('publishing')(state),
|
|
|
|
remoteFile: makeSelectPublishFormValue('remoteFileUrl')(state),
|
|
|
|
isStillEditing: selectIsStillEditing(state),
|
|
|
|
ffmpegStatus: selectFfmpegStatus(state),
|
|
|
|
enablePublishPreview: makeSelectClientSetting(SETTINGS.ENABLE_PUBLISH_PREVIEW)(state),
|
|
|
|
isLivestreamClaim: makeSelectClaimIsStreamPlaceholder(editingUri)(state),
|
|
|
|
};
|
|
|
|
};
|
2020-08-13 21:06:43 +02:00
|
|
|
|
2021-03-21 09:38:54 +01:00
|
|
|
const perform = (dispatch) => ({
|
2020-08-13 21:06:43 +02:00
|
|
|
publish: (filePath, preview) => dispatch(doPublishDesktop(filePath, preview)),
|
|
|
|
closeModal: () => dispatch(doHideModal()),
|
2021-03-21 09:38:54 +01:00
|
|
|
setEnablePublishPreview: (value) => dispatch(doSetClientSetting(SETTINGS.ENABLE_PUBLISH_PREVIEW, value)),
|
2020-08-13 21:06:43 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(select, perform)(ModalPublishPreview);
|