lbry-desktop/ui/component/fileProperties/index.js

17 lines
573 B
JavaScript
Raw Normal View History

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