|
1 | 1 | import MuiLink from '@mui/material/Link';
|
| 2 | +import { useQueryClient } from '@tanstack/react-query'; |
2 | 3 | import React from 'react';
|
3 | 4 | import { Link as RouterLink } from 'react-router-dom';
|
| 5 | +import { kubeObjectQueryKey, useEndpoints } from '../../lib/k8s/api/v2/hooks'; |
4 | 6 | import { KubeObject } from '../../lib/k8s/KubeObject';
|
5 | 7 | import { createRouteURL, RouteURLProps } from '../../lib/router';
|
6 | 8 | import { LightTooltip } from './Tooltip';
|
@@ -28,14 +30,41 @@ export interface LinkObjectProps extends LinkBaseProps {
|
28 | 30 | [prop: string]: any;
|
29 | 31 | }
|
30 | 32 |
|
| 33 | +function KubeObjectLink(props: { kubeObject: KubeObject; [prop: string]: any }) { |
| 34 | + const { kubeObject, ...otherProps } = props; |
| 35 | + |
| 36 | + const client = useQueryClient(); |
| 37 | + const { namespace, name } = kubeObject.metadata; |
| 38 | + const endpoint = useEndpoints(kubeObject._class().apiEndpoint.apiInfo, kubeObject.cluster); |
| 39 | + |
| 40 | + return ( |
| 41 | + <MuiLink |
| 42 | + onClick={() => { |
| 43 | + const key = kubeObjectQueryKey({ |
| 44 | + cluster: kubeObject.cluster, |
| 45 | + endpoint, |
| 46 | + namespace, |
| 47 | + name, |
| 48 | + }); |
| 49 | + // prepopulate the query cache with existing object |
| 50 | + client.setQueryData(key, kubeObject); |
| 51 | + // and invalidate it (mark as stale) |
| 52 | + // so that the latest version will be downloaded in the background |
| 53 | + client.invalidateQueries({ queryKey: key }); |
| 54 | + }} |
| 55 | + component={RouterLink} |
| 56 | + to={kubeObject.getDetailsLink()} |
| 57 | + {...otherProps} |
| 58 | + > |
| 59 | + {props.children || kubeObject!.getName()} |
| 60 | + </MuiLink> |
| 61 | + ); |
| 62 | +} |
| 63 | + |
31 | 64 | function PureLink(props: React.PropsWithChildren<LinkProps | LinkObjectProps>) {
|
32 | 65 | if ((props as LinkObjectProps).kubeObject) {
|
33 | 66 | const { kubeObject, ...otherProps } = props as LinkObjectProps;
|
34 |
| - return ( |
35 |
| - <MuiLink component={RouterLink} to={kubeObject!.getDetailsLink()} {...otherProps}> |
36 |
| - {props.children || kubeObject!.getName()} |
37 |
| - </MuiLink> |
38 |
| - ); |
| 67 | + return <KubeObjectLink kubeObject={kubeObject!} {...otherProps} />; |
39 | 68 | }
|
40 | 69 |
|
41 | 70 | const { routeName, params = {}, search, state, ...otherProps } = props as LinkProps;
|
|
0 commit comments