2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2021-10-08 05:47:39 +02:00
|
|
|
import { makeSelectClaimForUri, makeSelectContentTypeForUri, makeSelectMetadataForUri } from 'redux/selectors/claims';
|
|
|
|
import { makeSelectFileInfoForUri } from 'redux/selectors/file_info';
|
2020-06-15 22:33:03 +02:00
|
|
|
import { selectUser } from 'redux/selectors/user';
|
2018-04-18 06:03:01 +02:00
|
|
|
import { doOpenFileInFolder } from 'redux/actions/file';
|
2017-12-21 22:08:54 +01:00
|
|
|
import FileDetails from './view';
|
2017-09-17 22:33:52 +02:00
|
|
|
|
|
|
|
const select = (state, props) => ({
|
|
|
|
claim: makeSelectClaimForUri(props.uri)(state),
|
|
|
|
contentType: makeSelectContentTypeForUri(props.uri)(state),
|
2017-09-20 14:47:08 +02:00
|
|
|
fileInfo: makeSelectFileInfoForUri(props.uri)(state),
|
2017-09-17 22:33:52 +02:00
|
|
|
metadata: makeSelectMetadataForUri(props.uri)(state),
|
2018-11-07 23:44:38 +01:00
|
|
|
user: selectUser(state),
|
2017-09-17 22:33:52 +02:00
|
|
|
});
|
|
|
|
|
2021-10-08 05:47:39 +02:00
|
|
|
const perform = (dispatch) => ({
|
|
|
|
openFolder: (path) => dispatch(doOpenFileInFolder(path)),
|
2017-09-20 14:47:08 +02:00
|
|
|
});
|
|
|
|
|
2020-06-15 22:33:03 +02:00
|
|
|
export default connect(select, perform)(FileDetails);
|