mirror of
https://github.com/fleetdm/fleet
synced 2026-05-19 23:18:51 +00:00
70 lines
1.6 KiB
TypeScript
70 lines
1.6 KiB
TypeScript
import React from "react";
|
|
import { uniqueId } from "lodash";
|
|
|
|
import { ISoftwareTitleVersion } from "interfaces/software";
|
|
|
|
import TextCell from "components/TableContainer/DataTable/TextCell";
|
|
import ReactTooltip from "react-tooltip";
|
|
|
|
const baseClass = "version-cell";
|
|
|
|
const generateText = (versions: ISoftwareTitleVersion[] | null) => {
|
|
if (!versions) {
|
|
return <TextCell value="Unavailable" greyed />;
|
|
}
|
|
const text =
|
|
versions.length !== 1 ? `${versions.length} versions` : versions[0].version;
|
|
return <TextCell value={text} greyed={versions.length !== 1} />;
|
|
};
|
|
|
|
const generateTooltip = (
|
|
versions: ISoftwareTitleVersion[],
|
|
tooltipId: string
|
|
) => {
|
|
if (!versions) {
|
|
return null;
|
|
}
|
|
|
|
const versionNames = versions.map((version) => version.version);
|
|
|
|
return (
|
|
<ReactTooltip
|
|
effect="solid"
|
|
backgroundColor="#3e4771"
|
|
id={tooltipId}
|
|
data-html
|
|
>
|
|
<p className={`${baseClass}__versions`}>{versionNames.join(", ")}</p>
|
|
</ReactTooltip>
|
|
);
|
|
};
|
|
|
|
interface IVersionCellProps {
|
|
versions: ISoftwareTitleVersion[] | null;
|
|
}
|
|
|
|
const VersionCell = ({ versions }: IVersionCellProps) => {
|
|
const tooltipId = uniqueId();
|
|
|
|
// only one version, no need for tooltip
|
|
const cellText = generateText(versions);
|
|
if (!versions) {
|
|
return <>{cellText}</>;
|
|
}
|
|
|
|
const versionTooltip = generateTooltip(versions, tooltipId);
|
|
return (
|
|
<>
|
|
<div
|
|
className={`${baseClass}__version-text-with-tooltip`}
|
|
data-tip
|
|
data-for={tooltipId}
|
|
>
|
|
{cellText}
|
|
</div>
|
|
{versionTooltip}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default VersionCell;
|