mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
## Issue Closes #34131 ## Description - Android tooltip was there just commented out - Added in tooltip on ChromeOS - Improve UX so user can click on save button easier if they opened tooltip and won't have to hover off tooltip for it to close ## Screen recording of fixes https://github.com/user-attachments/assets/29e81596-45b4-437c-a58f-0db7a0d013db # Checklist for submitter ## Testing - [x] QA'd all new/changed functionality manually
112 lines
2.8 KiB
TypeScript
112 lines
2.8 KiB
TypeScript
import React from "react";
|
|
|
|
import {
|
|
DisplayPlatform,
|
|
QueryableDisplayPlatform,
|
|
QueryablePlatform,
|
|
} from "interfaces/platform";
|
|
import { PLATFORM_DISPLAY_NAMES } from "utilities/constants";
|
|
|
|
import TooltipWrapper from "components/TooltipWrapper";
|
|
import Icon from "components/Icon";
|
|
|
|
interface IPlatformCompatibilityProps {
|
|
compatiblePlatforms: any[] | null;
|
|
error: Error | null;
|
|
}
|
|
|
|
const baseClass = "platform-compatibility";
|
|
|
|
const DISPLAY_ORDER = [
|
|
"macOS",
|
|
"Windows",
|
|
"Linux",
|
|
"ChromeOS",
|
|
] as QueryableDisplayPlatform[];
|
|
|
|
const ERROR_NO_COMPATIBLE_TABLES = Error("no tables in query");
|
|
|
|
const formatPlatformsForDisplay = (
|
|
compatiblePlatforms: QueryablePlatform[]
|
|
): DisplayPlatform[] => {
|
|
return compatiblePlatforms.map((str) => PLATFORM_DISPLAY_NAMES[str] || str);
|
|
};
|
|
|
|
const displayIncompatibilityText = (err: Error) => {
|
|
switch (err) {
|
|
case ERROR_NO_COMPATIBLE_TABLES:
|
|
return (
|
|
<span>
|
|
No platforms (check your query for invalid tables or tables that are
|
|
supported on different platforms)
|
|
</span>
|
|
);
|
|
default:
|
|
return (
|
|
<span>No platforms (check your query for a possible syntax error)</span>
|
|
);
|
|
}
|
|
};
|
|
|
|
const tipContent = (
|
|
<>
|
|
Estimated compatibility based on the tables <br />
|
|
used in the query. Querying iPhones, iPads, <br />
|
|
and Android hosts is not supported.
|
|
</>
|
|
);
|
|
|
|
const PlatformCompatibility = ({
|
|
compatiblePlatforms,
|
|
error,
|
|
}: IPlatformCompatibilityProps): JSX.Element | null => {
|
|
if (!compatiblePlatforms) {
|
|
return null;
|
|
}
|
|
|
|
const displayPlatforms = formatPlatformsForDisplay(compatiblePlatforms);
|
|
|
|
const renderCompatiblePlatforms = () => {
|
|
if (error || !compatiblePlatforms?.length) {
|
|
return displayIncompatibilityText(error || ERROR_NO_COMPATIBLE_TABLES);
|
|
}
|
|
|
|
return DISPLAY_ORDER.map((platform) => {
|
|
const isCompatible = displayPlatforms.includes(platform);
|
|
|
|
const liveQueryOnlyPlatform = (
|
|
<TooltipWrapper
|
|
tipContent={`Only live queries are supported on ${platform}.`}
|
|
>
|
|
{platform}
|
|
</TooltipWrapper>
|
|
);
|
|
|
|
return (
|
|
<span key={`platform-compatibility__${platform}`} className="platform">
|
|
<Icon
|
|
name={isCompatible ? "check" : "close"}
|
|
className={
|
|
isCompatible ? "compatible-platform" : "incompatible-platform"
|
|
}
|
|
color={isCompatible ? "status-success" : "status-error"}
|
|
size="small"
|
|
/>
|
|
{platform === "ChromeOS" ? liveQueryOnlyPlatform : platform}
|
|
</span>
|
|
);
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div className={baseClass}>
|
|
<b>
|
|
<TooltipWrapper tipContent={tipContent} clickable={false}>
|
|
Compatible with:
|
|
</TooltipWrapper>
|
|
</b>
|
|
{renderCompatiblePlatforms()}
|
|
</div>
|
|
);
|
|
};
|
|
export default PlatformCompatibility;
|