38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
|
import * as SETTINGS from 'constants/settings';
|
||
|
import { connect } from 'react-redux';
|
||
|
import { doPlayUri, doSetPlayingUri } from 'redux/actions/content';
|
||
|
import {
|
||
|
makeSelectFileInfoForUri,
|
||
|
makeSelectThumbnailForUri,
|
||
|
makeSelectStreamingUrlForUri,
|
||
|
makeSelectMediaTypeForUri,
|
||
|
makeSelectUriIsStreamable,
|
||
|
} from 'lbry-redux';
|
||
|
import { makeSelectClientSetting } from 'redux/selectors/settings';
|
||
|
import { makeSelectIsPlaying, makeSelectShouldObscurePreview, selectPlayingUri } from 'redux/selectors/content';
|
||
|
import FileViewer from './view';
|
||
|
|
||
|
const select = (state, props) => ({
|
||
|
thumbnail: makeSelectThumbnailForUri(props.uri)(state),
|
||
|
mediaType: makeSelectMediaTypeForUri(props.uri)(state),
|
||
|
fileInfo: makeSelectFileInfoForUri(props.uri)(state),
|
||
|
obscurePreview: makeSelectShouldObscurePreview(props.uri)(state),
|
||
|
isPlaying: makeSelectIsPlaying(props.uri)(state),
|
||
|
playingUri: selectPlayingUri(state),
|
||
|
streamingUrl: makeSelectStreamingUrlForUri(props.uri)(state),
|
||
|
isStreamable: makeSelectUriIsStreamable(props.uri)(state),
|
||
|
autoplay: makeSelectClientSetting(SETTINGS.AUTOPLAY)(state),
|
||
|
});
|
||
|
|
||
|
const perform = dispatch => ({
|
||
|
play: uri => {
|
||
|
dispatch(doSetPlayingUri(uri));
|
||
|
dispatch(doPlayUri(uri));
|
||
|
},
|
||
|
});
|
||
|
|
||
|
export default connect(
|
||
|
select,
|
||
|
perform
|
||
|
)(FileViewer);
|