import React from "react"; import PATHS from "router/paths"; import { Link } from "react-router"; import classnames from "classnames"; import Icon from "components/Icon"; import { buildQueryStringFromParams, QueryParams } from "utilities/url"; interface IHostLinkProps { queryParams?: QueryParams; className?: string; /** Including the platformId will view all hosts for the platform provided */ platformLabelId?: number; /** Shows right chevron without text */ condensed?: boolean; } const baseClass = "view-all-hosts-link"; const ViewAllHostsLink = ({ queryParams, className, platformLabelId, condensed = false, }: IHostLinkProps): JSX.Element => { const viewAllHostsLinkClass = classnames(baseClass, className); const endpoint = platformLabelId ? PATHS.MANAGE_HOSTS_LABEL(platformLabelId) : PATHS.MANAGE_HOSTS; const path = queryParams ? `${endpoint}?${buildQueryStringFromParams(queryParams)}` : endpoint; return ( {!condensed && View all hosts} ); }; export default ViewAllHostsLink;