@kinvolk/headlamp-plugin
Version:
The needed infrastructure for building Headlamp plugins.
37 lines (36 loc) • 1.78 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/*
* Copyright 2025 The Kubernetes Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import Fade from '@mui/material/Fade';
import Tooltip from '@mui/material/Tooltip';
export default function TooltipLight(props) {
const { children, interactive = true, ...rest } = props;
const disableInteractive = !interactive;
if (typeof children === 'string') {
return (_jsx(Tooltip, { disableInteractive: disableInteractive, TransitionComponent: Fade, TransitionProps: { timeout: 0 }, sx: theme => ({
backgroundColor: theme.palette.background.default,
color: theme.palette.resourceToolTip.color,
boxShadow: theme.shadows[1],
fontSize: '1rem',
whiteSpace: 'pre-line',
}), ...rest, children: _jsx("span", { children: children }) }));
}
return (_jsx(Tooltip, { ...rest, TransitionComponent: Fade, TransitionProps: { timeout: 0 },
// children prop in the mui Tooltip is defined as ReactElement which is not totally correct
// string should be a valid child and is used a lot in this project
// but it's not included in the ReactElement type
children: props.children }));
}