0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-04-01 02:42:23 -05:00

refactor: restore original URL for detail page

This commit is contained in:
Juan Picado @jotadeveloper 2019-02-06 08:00:36 +01:00
parent e3fa6d37a6
commit c2c79f91a3
No known key found for this signature in database
GPG key ID: 18AC54485952D158
5 changed files with 5 additions and 13 deletions

View file

@ -34,7 +34,7 @@ class DepDetail extends Component<any, any> {
const { onLoading, history } = this.props;
onLoading();
history.push(`/-/web/version/${name}`);
history.push(`/-/web/detail/${name}`);
};
}

View file

@ -80,7 +80,7 @@ const Package = ({ name: label, version, time, author: { name, avatar }, descrip
);
return (
<WrapperLink className={'package'} to={`/-/web/version/${label}`}>
<WrapperLink className={'package'} to={`/-/web/detail/${label}`}>
<Header>
{renderMainInfo()}
<Overview>

View file

@ -100,7 +100,7 @@ export class Search extends Component<IProps, IState> {
case 'enter':
this.setState({ search: '' });
// $FlowFixMe
history.push(`/-/web/version/${suggestionValue}`);
history.push(`/-/web/detail/${suggestionValue}`);
break;
}
};

View file

@ -25,8 +25,8 @@ class RouterApp extends Component<any, any> {
{this.renderHeader()}
<Switch>
<Route exact={true} path={'/'} render={this.renderHomePage} />
<Route exact={true} path={'/-/web/version/@:scope/:package'} render={this.renderVersionPage} />
<Route exact={true} path={'/-/web/version/:package'} render={this.renderVersionPage} />
<Route exact={true} path={'/-/web/detail/@:scope/:package'} render={this.renderVersionPage} />
<Route exact={true} path={'/-/web/detail/:package'} render={this.renderVersionPage} />
<Route component={NotFound} />
</Switch>
</Fragment>

View file

@ -2,11 +2,3 @@ export function getRegistryURL() {
// Don't add slash if it's not a sub directory
return `${location.origin}${location.pathname === '/' ? '' : location.pathname}`;
}
/**
* Get specified package detail page url
* @param {string} packageName
*/
export function getDetailPageURL(packageName) {
return `${getRegistryURL()}/-/web/version/${packageName}`;
}