fleet/frontend/components/forms/fields/SelectTargetsDropdown/TargetOption/TargetIcon.jsx
Gabe Hernandez efb35b537a
add prettier and have it format all fleet application code (#625)
* add prettier and have it format all js code except website:
:

* trying running prettier check in CI

* fix runs on in CI

* change CI job name

* fix prettier erros and fix CI
2021-04-12 14:32:25 +01:00

32 lines
794 B
JavaScript

import React from "react";
import classnames from "classnames";
import KolideIcon from "components/icons/KolideIcon";
import targetInterface from "interfaces/target";
const baseClass = "target-option";
const TargetIcon = ({ target }) => {
const iconName = () => {
const { name, platform, target_type: targetType } = target;
if (targetType === "labels") {
return name === "All Hosts" ? "all-hosts" : "label";
}
return platform === "darwin" ? "apple" : platform;
};
const { status } = target;
const targetClasses = classnames(
`${baseClass}__icon`,
`${baseClass}__icon--${status}`
);
return <KolideIcon name={iconName()} className={targetClasses} />;
};
TargetIcon.propTypes = { target: targetInterface.isRequired };
export default TargetIcon;