e35fbdd86a
appstrings provide optimize checkbox on publish fix missing status no crash on web cleanup better settings ui add help and time estimate to publish transcoding messaging fix: Special SDK + fix config name fix: older SDK build fix app string, style tweak whoops, and looks better to me this way. bump SDK
32 lines
962 B
JavaScript
32 lines
962 B
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
selectBalance,
|
|
selectIsStillEditing,
|
|
makeSelectPublishFormValue,
|
|
doUpdatePublishForm,
|
|
doToast,
|
|
doClearPublish,
|
|
} from 'lbry-redux';
|
|
import { selectFfmpegStatus } from 'redux/selectors/settings';
|
|
import PublishPage from './view';
|
|
|
|
const select = state => ({
|
|
name: makeSelectPublishFormValue('name')(state),
|
|
filePath: makeSelectPublishFormValue('filePath')(state),
|
|
optimize: makeSelectPublishFormValue('optimize')(state),
|
|
isStillEditing: selectIsStillEditing(state),
|
|
balance: selectBalance(state),
|
|
publishing: makeSelectPublishFormValue('publishing')(state),
|
|
ffmpegStatus: selectFfmpegStatus(state),
|
|
});
|
|
|
|
const perform = dispatch => ({
|
|
clearPublish: () => dispatch(doClearPublish()),
|
|
updatePublishForm: value => dispatch(doUpdatePublishForm(value)),
|
|
showToast: message => dispatch(doToast({ message, isError: true })),
|
|
});
|
|
|
|
export default connect(
|
|
select,
|
|
perform
|
|
)(PublishPage);
|