mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Removing @observer decorator from <App/> Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Add observer wrapper to <MainLayoutHeader/> Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fix eslint claim Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Moving extension route renderers to components Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Clean up Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Removing external observables out from App render() Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fetching hosted cluster inside Command Palette Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Setting route lists explicitly To avoid using observable data within tabRoutes arrays Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Review fixes Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
18 lines
591 B
TypeScript
18 lines
591 B
TypeScript
import { RouteProps } from "react-router";
|
|
import { endpointRoute } from "../+network-endpoints";
|
|
import { ingressRoute } from "../+network-ingresses";
|
|
import { networkPoliciesRoute } from "../+network-policies";
|
|
import { servicesRoute, servicesURL } from "../+network-services";
|
|
import { IURLParams } from "../../../common/utils/buildUrl";
|
|
|
|
export const networkRoute: RouteProps = {
|
|
path: [
|
|
servicesRoute,
|
|
endpointRoute,
|
|
ingressRoute,
|
|
networkPoliciesRoute
|
|
].map(route => route.path.toString())
|
|
};
|
|
|
|
export const networkURL = (params?: IURLParams) => servicesURL(params);
|