Farmbot-Web-App/frontend/history.tsx

12 lines
381 B
TypeScript
Raw Normal View History

2018-09-14 06:58:59 -06:00
import { navigate } from "takeme";
import { maybeStripLegacyUrl } from "./link";
2018-09-14 06:58:59 -06:00
export const push = (url: string) => navigate(maybeStripLegacyUrl(url));
2018-09-19 17:00:07 -06:00
export function getPathArray() {
return location.pathname.split("/");
}
2018-09-14 06:58:59 -06:00
2018-09-17 14:28:59 -06:00
/** This is a stub from the `react-router` days. Don't use it anymore. */
export const history = { push, getCurrentLocation: () => window.location };