2017-12-21 22:08:54 +01:00
|
|
|
import { connect } from 'react-redux';
|
2019-02-18 18:33:02 +01:00
|
|
|
import { PAGE_SIZE } from 'constants/claim';
|
2018-04-24 20:17:11 +02:00
|
|
|
import {
|
|
|
|
doResolveUri,
|
|
|
|
makeSelectClaimForUri,
|
|
|
|
makeSelectIsUriResolving,
|
2019-02-18 18:33:02 +01:00
|
|
|
makeSelectTotalPagesForChannel,
|
2019-08-19 06:49:54 +02:00
|
|
|
normalizeURI,
|
2018-04-24 20:17:11 +02:00
|
|
|
} from 'lbry-redux';
|
2019-03-12 20:53:55 +01:00
|
|
|
import { selectBlackListedOutpoints } from 'lbryinc';
|
2017-12-21 22:08:54 +01:00
|
|
|
import ShowPage from './view';
|
2017-05-05 08:13:06 +02:00
|
|
|
|
2019-03-28 17:53:13 +01:00
|
|
|
const select = (state, props) => {
|
2019-08-27 18:05:23 +02:00
|
|
|
const { pathname, hash } = props.location;
|
|
|
|
const urlPath = pathname + hash;
|
2019-08-19 06:49:54 +02:00
|
|
|
// Remove the leading "/" added by the browser
|
2019-08-27 18:05:23 +02:00
|
|
|
const path = urlPath.slice(1).replace(/:/g, '#');
|
2019-08-27 00:42:16 +02:00
|
|
|
|
|
|
|
let uri;
|
|
|
|
try {
|
|
|
|
uri = normalizeURI(path);
|
|
|
|
} catch (e) {
|
|
|
|
const match = path.match(/[#/:]/);
|
2019-09-26 18:07:11 +02:00
|
|
|
|
|
|
|
if (path === '$/') {
|
|
|
|
props.history.replace(`/`);
|
|
|
|
} else if (!path.startsWith('$/') && match && match.index) {
|
2019-08-27 00:42:16 +02:00
|
|
|
uri = `lbry://${path.slice(0, match.index)}`;
|
|
|
|
props.history.replace(`/${path.slice(0, match.index)}`);
|
|
|
|
}
|
|
|
|
}
|
2019-04-04 23:05:23 +02:00
|
|
|
|
2019-03-28 17:53:13 +01:00
|
|
|
return {
|
|
|
|
claim: makeSelectClaimForUri(uri)(state),
|
|
|
|
isResolvingUri: makeSelectIsUriResolving(uri)(state),
|
|
|
|
blackListedOutpoints: selectBlackListedOutpoints(state),
|
|
|
|
totalPages: makeSelectTotalPagesForChannel(uri, PAGE_SIZE)(state),
|
2019-08-19 06:49:54 +02:00
|
|
|
uri,
|
2019-03-28 17:53:13 +01:00
|
|
|
};
|
|
|
|
};
|
2017-05-05 08:13:06 +02:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
const perform = dispatch => ({
|
2017-06-06 23:19:12 +02:00
|
|
|
resolveUri: uri => dispatch(doResolveUri(uri)),
|
2017-06-06 06:21:55 +02:00
|
|
|
});
|
2017-05-05 08:13:06 +02:00
|
|
|
|
2018-11-01 22:55:25 +01:00
|
|
|
export default connect(
|
|
|
|
select,
|
|
|
|
perform
|
|
|
|
)(ShowPage);
|