2017-12-21 18:08:54 -03:00
|
|
|
import { connect } from 'react-redux';
|
2020-07-10 17:04:36 -04:00
|
|
|
import { makeSelectFileInfoForUri, makeSelectTitleForUri, makeSelectStreamingUrlForUri, SETTINGS } from 'lbry-redux';
|
2020-01-06 15:57:49 -05:00
|
|
|
import {
|
2020-04-13 19:48:11 -04:00
|
|
|
makeSelectIsPlayerFloating,
|
2020-04-29 16:50:06 -04:00
|
|
|
selectFloatingUri,
|
2020-01-06 15:57:49 -05:00
|
|
|
selectPlayingUri,
|
2020-04-01 14:43:50 -04:00
|
|
|
makeSelectFileRenderModeForUri,
|
2020-01-06 15:57:49 -05:00
|
|
|
} from 'redux/selectors/content';
|
2019-08-13 01:35:13 -04:00
|
|
|
import { makeSelectClientSetting } from 'redux/selectors/settings';
|
2020-07-22 16:56:58 -04:00
|
|
|
import { doCloseFloatingPlayer } from 'redux/actions/content';
|
2019-08-13 01:35:13 -04:00
|
|
|
import { withRouter } from 'react-router';
|
2020-04-01 14:43:50 -04:00
|
|
|
import FileRenderFloating from './view';
|
2017-05-14 23:50:59 -04:00
|
|
|
|
2019-08-13 01:35:13 -04:00
|
|
|
const select = (state, props) => {
|
2020-04-29 16:50:06 -04:00
|
|
|
const floatingUri = selectFloatingUri(state);
|
|
|
|
const playingUri = selectPlayingUri(state);
|
|
|
|
const uri = floatingUri || playingUri;
|
2019-08-13 01:35:13 -04:00
|
|
|
return {
|
|
|
|
uri,
|
|
|
|
title: makeSelectTitleForUri(uri)(state),
|
|
|
|
fileInfo: makeSelectFileInfoForUri(uri)(state),
|
2020-04-13 19:48:11 -04:00
|
|
|
isFloating: makeSelectIsPlayerFloating(props.location)(state),
|
2020-05-21 11:38:28 -04:00
|
|
|
streamingUrl: makeSelectStreamingUrlForUri(uri)(state),
|
2019-08-13 01:35:13 -04:00
|
|
|
floatingPlayerEnabled: makeSelectClientSetting(SETTINGS.FLOATING_PLAYER)(state),
|
2020-04-01 14:43:50 -04:00
|
|
|
renderMode: makeSelectFileRenderModeForUri(uri)(state),
|
2019-08-13 01:35:13 -04:00
|
|
|
};
|
|
|
|
};
|
2017-04-23 16:56:50 +07:00
|
|
|
|
2017-06-05 21:21:55 -07:00
|
|
|
const perform = dispatch => ({
|
2020-04-29 16:50:06 -04:00
|
|
|
closeFloatingPlayer: () => dispatch(doCloseFloatingPlayer(null)),
|
2017-06-05 21:21:55 -07:00
|
|
|
});
|
2017-04-23 16:56:50 +07:00
|
|
|
|
2020-04-01 14:43:50 -04:00
|
|
|
export default withRouter(connect(select, perform)(FileRenderFloating));
|