2019-06-11 20:10:58 +02:00
|
|
|
import { connect } from 'react-redux';
|
2019-11-02 16:55:17 +01:00
|
|
|
import { makeSelectFilePartlyDownloaded, makeSelectClaimIsMine } from 'lbry-redux';
|
2019-06-11 20:10:58 +02:00
|
|
|
import { makeSelectIsSubscribed, makeSelectIsNew } from 'redux/selectors/subscriptions';
|
|
|
|
import FileProperties from './view';
|
|
|
|
|
|
|
|
const select = (state, props) => ({
|
2019-08-14 20:09:45 +02:00
|
|
|
downloaded: makeSelectFilePartlyDownloaded(props.uri)(state),
|
2019-06-11 20:10:58 +02:00
|
|
|
isSubscribed: makeSelectIsSubscribed(props.uri)(state),
|
|
|
|
isNew: makeSelectIsNew(props.uri)(state),
|
|
|
|
claimIsMine: makeSelectClaimIsMine(props.uri)(state),
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(
|
|
|
|
select,
|
|
|
|
null
|
|
|
|
)(FileProperties);
|