2018-06-11 00:41:25 -06:00
|
|
|
import { connect } from 'react-redux';
|
2021-10-07 23:47:39 -04:00
|
|
|
import { makeSelectDownloadPathForUri, makeSelectStreamingUrlForUri } from 'redux/selectors/file_info';
|
2022-01-19 20:46:01 -05:00
|
|
|
import { makeSelectClaimForUri, selectThumbnailForUri, makeSelectContentTypeForUri } from 'redux/selectors/claims';
|
2021-10-07 23:47:39 -04:00
|
|
|
import * as SETTINGS from 'constants/settings';
|
2018-06-11 00:41:25 -06:00
|
|
|
import { makeSelectClientSetting } from 'redux/selectors/settings';
|
2020-05-21 11:38:28 -04:00
|
|
|
import { makeSelectFileRenderModeForUri, makeSelectFileExtensionForUri } from 'redux/selectors/content';
|
2018-06-11 00:41:25 -06:00
|
|
|
import FileRender from './view';
|
|
|
|
|
2020-01-31 10:46:50 -05:00
|
|
|
const select = (state, props) => {
|
2021-09-02 17:05:32 -03:00
|
|
|
const autoplay = props.embedded ? false : makeSelectClientSetting(SETTINGS.AUTOPLAY_MEDIA)(state);
|
2020-01-31 10:46:50 -05:00
|
|
|
return {
|
|
|
|
currentTheme: makeSelectClientSetting(SETTINGS.THEME)(state),
|
|
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
2022-01-19 20:46:01 -05:00
|
|
|
thumbnail: selectThumbnailForUri(state, props.uri),
|
2020-01-31 10:46:50 -05:00
|
|
|
contentType: makeSelectContentTypeForUri(props.uri)(state),
|
|
|
|
downloadPath: makeSelectDownloadPathForUri(props.uri)(state),
|
2020-04-01 14:43:50 -04:00
|
|
|
fileExtension: makeSelectFileExtensionForUri(props.uri)(state),
|
2020-05-21 11:38:28 -04:00
|
|
|
streamingUrl: makeSelectStreamingUrlForUri(props.uri)(state),
|
2020-04-01 14:43:50 -04:00
|
|
|
renderMode: makeSelectFileRenderModeForUri(props.uri)(state),
|
2020-01-31 10:46:50 -05:00
|
|
|
autoplay: autoplay,
|
|
|
|
};
|
|
|
|
};
|
2018-06-11 00:41:25 -06:00
|
|
|
|
2021-02-17 22:44:37 +08:00
|
|
|
export default connect(select)(FileRender);
|