fbcb740dc9
## Issue 6236 Add context menu to file page ## Notes The download button actually handles a lot of things -- generating 'streamingUrl', differences between Web and Desktop, download progress for Desktop, etc. A simpler fix would be to put something else (maybe "Share") into the overflow menu instead. Anyway, went ahead to do it per 6236, but retained the item for Desktop since we need a progress label.
50 lines
2 KiB
JavaScript
50 lines
2 KiB
JavaScript
import { connect } from 'react-redux';
|
|
import {
|
|
makeSelectClaimIsMine,
|
|
makeSelectFileInfoForUri,
|
|
makeSelectClaimForUri,
|
|
doPrepareEdit,
|
|
selectMyChannelClaims,
|
|
makeSelectClaimIsStreamPlaceholder,
|
|
makeSelectTagInClaimOrChannelForUri,
|
|
makeSelectStreamingUrlForUri,
|
|
} from 'lbry-redux';
|
|
import { DISABLE_COMMENTS_TAG } from 'constants/tags';
|
|
import { makeSelectCostInfoForUri } from 'lbryinc';
|
|
import { doSetPlayingUri, doPlayUri } from 'redux/actions/content';
|
|
import { doToast } from 'redux/actions/notifications';
|
|
import { doOpenModal, doSetActiveChannel, doSetIncognito, doAnalyticsView } from 'redux/actions/app';
|
|
import fs from 'fs';
|
|
import FileActions from './view';
|
|
import { makeSelectFileRenderModeForUri } from 'redux/selectors/content';
|
|
|
|
const select = (state, props) => ({
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
|
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
|
|
fileInfo: makeSelectFileInfoForUri(props.uri)(state),
|
|
renderMode: makeSelectFileRenderModeForUri(props.uri)(state),
|
|
costInfo: makeSelectCostInfoForUri(props.uri)(state),
|
|
myChannels: selectMyChannelClaims(state),
|
|
isLivestreamClaim: makeSelectClaimIsStreamPlaceholder(props.uri)(state),
|
|
reactionsDisabled: makeSelectTagInClaimOrChannelForUri(props.uri, DISABLE_COMMENTS_TAG)(state),
|
|
streamingUrl: makeSelectStreamingUrlForUri(props.uri)(state),
|
|
});
|
|
|
|
const perform = (dispatch) => ({
|
|
openModal: (modal, props) => dispatch(doOpenModal(modal, props)),
|
|
prepareEdit: (publishData, uri, fileInfo) => {
|
|
if (publishData.signing_channel) {
|
|
dispatch(doSetIncognito(false));
|
|
dispatch(doSetActiveChannel(publishData.signing_channel.claim_id));
|
|
} else {
|
|
dispatch(doSetIncognito(true));
|
|
}
|
|
|
|
dispatch(doPrepareEdit(publishData, uri, fileInfo, fs));
|
|
},
|
|
clearPlayingUri: () => dispatch(doSetPlayingUri({ uri: null })),
|
|
doToast: (options) => dispatch(doToast(options)),
|
|
download: (uri) => dispatch(doPlayUri(uri, false, true, () => dispatch(doAnalyticsView(uri)))),
|
|
});
|
|
|
|
export default connect(select, perform)(FileActions);
|