lbry-desktop/ui/component/fileRender/index.js

39 lines
1.5 KiB
JavaScript
Raw Normal View History

2018-06-11 08:41:25 +02:00
import { connect } from 'react-redux';
2019-08-02 08:28:14 +02:00
import {
makeSelectClaimForUri,
makeSelectFileInfoForUri,
2019-08-02 08:28:14 +02:00
makeSelectThumbnailForUri,
makeSelectContentTypeForUri,
makeSelectDownloadPathForUri,
2020-05-21 17:38:28 +02:00
makeSelectStreamingUrlForUri,
makeSelectClaimIsMine,
SETTINGS,
2019-08-02 08:28:14 +02:00
} from 'lbry-redux';
2018-06-11 08:41:25 +02:00
import { makeSelectClientSetting } from 'redux/selectors/settings';
2020-05-21 17:38:28 +02:00
import { makeSelectFileRenderModeForUri, makeSelectFileExtensionForUri } from 'redux/selectors/content';
import { doOpenModal } from 'redux/actions/app';
2018-06-11 08:41:25 +02:00
import FileRender from './view';
2020-01-31 16:46:50 +01:00
const select = (state, props) => {
const autoplay = props.embedded ? false : makeSelectClientSetting(SETTINGS.AUTOPLAY)(state);
return {
currentTheme: makeSelectClientSetting(SETTINGS.THEME)(state),
claim: makeSelectClaimForUri(props.uri)(state),
thumbnail: makeSelectThumbnailForUri(props.uri)(state),
contentType: makeSelectContentTypeForUri(props.uri)(state),
downloadPath: makeSelectDownloadPathForUri(props.uri)(state),
fileExtension: makeSelectFileExtensionForUri(props.uri)(state),
2020-05-21 17:38:28 +02:00
streamingUrl: makeSelectStreamingUrlForUri(props.uri)(state),
renderMode: makeSelectFileRenderModeForUri(props.uri)(state),
2020-01-31 16:46:50 +01:00
autoplay: autoplay,
fileInfo: makeSelectFileInfoForUri(props.uri)(state),
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
2020-01-31 16:46:50 +01:00
};
};
2018-06-11 08:41:25 +02:00
const perform = (dispatch) => ({
openModal: (modal, props) => dispatch(doOpenModal(modal, props)),
});
export default connect(select, perform)(FileRender);