1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Add component BadgeNavigatable

Signed-off-by: devodev <abalexandrebarone@gmail.com>
This commit is contained in:
devodev 2021-07-17 15:40:32 -04:00
parent 8bdcdbe767
commit f3c8bbee25
3 changed files with 69 additions and 0 deletions

View File

@ -0,0 +1,61 @@
/**
* Copyright (c) 2021 OpenLens Authors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
import React from "react";
import { observer } from "mobx-react";
import { Badge } from ".";
import { navigate } from "../../navigation/helpers";
import { cssNames } from "../../utils";
import type { KubeResource } from "../../../common/rbac";
import { podsURL } from "../../../common/routes/workloads";
import { nodesURL } from "../../../common/routes/nodes";
import type { buildURL } from "../../../common/utils/buildUrl";
const navigateURL: Partial<Record<KubeResource, ReturnType<typeof buildURL>>> = {
"pods": podsURL,
"nodes": nodesURL,
};
interface Props {
className?: string
resource: KubeResource
searchFilter: string
}
@observer
export class BadgeNavigatable extends React.Component<Props> {
render() {
const { className, resource, searchFilter } = this.props;
return (
<Badge
className={cssNames("BadgeNavigatable", className)}
label={searchFilter}
tooltip={`Navigate to ${resource}`}
onClick={(event) => {
navigate(navigateURL[resource]({ query: { search: searchFilter }}));
event.stopPropagation();
}}
/>
);
}
}

View File

@ -34,6 +34,13 @@
cursor: pointer;
}
.badge.clickable:hover {
background-color: var(--mainBackground);
box-shadow: 0 0 0 1pt var(--primary);
outline: none;
transition: .1s;
}
.badge:not(.isExpanded) {
white-space: nowrap;
overflow: hidden;

View File

@ -20,3 +20,4 @@
*/
export * from "./badge";
export * from "./Badge-navigatable";