1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix Navigation.navigate to work with fragments (#2890)

This commit is contained in:
Lauri Nevala 2021-05-27 21:33:19 +03:00 committed by GitHub
parent 8b352f6c6b
commit db54a658a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,17 +20,20 @@
*/
import type { LocationDescriptor } from "history";
import { createPath } from "history";
import { matchPath, RouteProps } from "react-router";
import { PageParam, PageParamInit } from "./page-param";
import { clusterViewRoute, IClusterViewRouteParams } from "../components/cluster-manager/cluster-view.route";
import { navigation } from "./history";
export function navigate(location: LocationDescriptor) {
const currentLocation = navigation.location.pathname;
const currentLocation = createPath(navigation.location);
navigation.push(location);
if (currentLocation === navigation.location.pathname) {
const newLocation = createPath(navigation.location);
if (currentLocation === newLocation) {
navigation.goBack(); // prevent sequences of same url in history
}
}