2020-01-14 21:44:07 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import InvitedPage from './view';
|
2021-10-08 05:47:39 +02:00
|
|
|
import { makeSelectPermanentUrlForUri } from 'redux/selectors/claims';
|
2020-01-14 21:44:07 +01:00
|
|
|
import { withRouter } from 'react-router';
|
|
|
|
|
|
|
|
const select = (state, props) => {
|
|
|
|
const { match } = props;
|
|
|
|
const { params } = match;
|
|
|
|
const { referrer } = params;
|
|
|
|
const sanitizedReferrer = referrer ? referrer.replace(':', '#') : '';
|
|
|
|
const uri = `lbry://${sanitizedReferrer}`;
|
|
|
|
return {
|
|
|
|
fullUri: makeSelectPermanentUrlForUri(uri)(state),
|
|
|
|
referrer: referrer,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
const perform = () => ({});
|
|
|
|
|
2021-10-08 05:47:39 +02:00
|
|
|
export default withRouter(connect(select, perform)(InvitedPage));
|