ee9f63a161
bugfix wip flow fix cleaning clean
19 lines
619 B
JavaScript
19 lines
619 B
JavaScript
import { connect } from 'react-redux';
|
|
import InvitedPage from './view';
|
|
import { makeSelectPermanentUrlForUri } from 'redux/selectors/claims';
|
|
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 = () => ({});
|
|
|
|
export default withRouter(connect(select, perform)(InvitedPage));
|