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

Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
This commit is contained in:
Lauri Nevala 2021-05-27 17:27:19 +03:00
parent 57c87a2e71
commit cfa583959b

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
}
}