2018-06-11 08:41:25 +02:00
|
|
|
import { connect } from 'react-redux';
|
2019-08-02 08:28:14 +02:00
|
|
|
import {
|
|
|
|
makeSelectClaimForUri,
|
|
|
|
makeSelectThumbnailForUri,
|
|
|
|
makeSelectContentTypeForUri,
|
|
|
|
makeSelectDownloadPathForUri,
|
|
|
|
} from 'lbry-redux';
|
2020-01-27 19:52:25 +01:00
|
|
|
import * as SETTINGS from 'constants/settings';
|
2018-06-11 08:41:25 +02:00
|
|
|
import { makeSelectClientSetting } from 'redux/selectors/settings';
|
2020-04-01 20:43:50 +02:00
|
|
|
import {
|
|
|
|
makeSelectFileRenderModeForUri,
|
|
|
|
makeSelectFileExtensionForUri,
|
|
|
|
makeSelectStreamingUrlForUriWebProxy,
|
|
|
|
} from 'redux/selectors/content';
|
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),
|
2020-04-01 20:43:50 +02:00
|
|
|
fileExtension: makeSelectFileExtensionForUri(props.uri)(state),
|
|
|
|
streamingUrl: makeSelectStreamingUrlForUriWebProxy(props.uri)(state),
|
|
|
|
renderMode: makeSelectFileRenderModeForUri(props.uri)(state),
|
2020-01-31 16:46:50 +01:00
|
|
|
autoplay: autoplay,
|
|
|
|
};
|
|
|
|
};
|
2018-06-11 08:41:25 +02:00
|
|
|
|
2020-04-14 01:48:11 +02:00
|
|
|
export default connect(select)(FileRender);
|