mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* - fix: proper sorting for resource age column - use Date.now() instead of new Date().getTime() (#2141 follow-up) Signed-off-by: Roman <ixrock@gmail.com> * fix: proper bar-chart tooltip callback Signed-off-by: Roman <ixrock@gmail.com> * fix: sorting in cronjobs, more Date.now() replacements Signed-off-by: Roman <ixrock@gmail.com>
89 lines
3.1 KiB
TypeScript
89 lines
3.1 KiB
TypeScript
import "./service-accounts.scss";
|
|
|
|
import React from "react";
|
|
import { observer } from "mobx-react";
|
|
import { ServiceAccount } from "../../api/endpoints/service-accounts.api";
|
|
import { RouteComponentProps } from "react-router";
|
|
import { KubeObjectMenuProps } from "../kube-object/kube-object-menu";
|
|
import { MenuItem } from "../menu";
|
|
import { openServiceAccountKubeConfig } from "../kubeconfig-dialog";
|
|
import { Icon } from "../icon";
|
|
import { KubeObjectListLayout } from "../kube-object";
|
|
import { IServiceAccountsRouteParams } from "../+user-management";
|
|
import { serviceAccountsStore } from "./service-accounts.store";
|
|
import { CreateServiceAccountDialog } from "./create-service-account-dialog";
|
|
import { kubeObjectMenuRegistry } from "../../../extensions/registries/kube-object-menu-registry";
|
|
import { KubeObjectStatusIcon } from "../kube-object-status-icon";
|
|
|
|
enum columnId {
|
|
name = "name",
|
|
namespace = "namespace",
|
|
age = "age",
|
|
}
|
|
|
|
interface Props extends RouteComponentProps<IServiceAccountsRouteParams> {
|
|
}
|
|
|
|
@observer
|
|
export class ServiceAccounts extends React.Component<Props> {
|
|
render() {
|
|
return (
|
|
<>
|
|
<KubeObjectListLayout
|
|
isConfigurable
|
|
tableId="access_service_accounts"
|
|
className="ServiceAccounts" store={serviceAccountsStore}
|
|
sortingCallbacks={{
|
|
[columnId.name]: (account: ServiceAccount) => account.getName(),
|
|
[columnId.namespace]: (account: ServiceAccount) => account.getNs(),
|
|
[columnId.age]: (account: ServiceAccount) => account.getTimeDiffFromNow(),
|
|
}}
|
|
searchFilters={[
|
|
(account: ServiceAccount) => account.getSearchFields(),
|
|
]}
|
|
renderHeaderTitle="Service Accounts"
|
|
renderTableHeader={[
|
|
{ title: "Name", className: "name", sortBy: columnId.name, id: columnId.name },
|
|
{ className: "warning", showWithColumn: columnId.name },
|
|
{ title: "Namespace", className: "namespace", sortBy: columnId.namespace, id: columnId.namespace },
|
|
{ title: "Age", className: "age", sortBy: columnId.age, id: columnId.age },
|
|
]}
|
|
renderTableContents={(account: ServiceAccount) => [
|
|
account.getName(),
|
|
<KubeObjectStatusIcon key="icon" object={account} />,
|
|
account.getNs(),
|
|
account.getAge(),
|
|
]}
|
|
renderItemMenu={(item: ServiceAccount) => {
|
|
return <ServiceAccountMenu object={item}/>;
|
|
}}
|
|
addRemoveButtons={{
|
|
onAdd: () => CreateServiceAccountDialog.open(),
|
|
addTooltip: "Create new Service Account",
|
|
}}
|
|
/>
|
|
<CreateServiceAccountDialog/>
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
function ServiceAccountMenu(props: KubeObjectMenuProps<ServiceAccount>) {
|
|
const { object, toolbar } = props;
|
|
|
|
return (
|
|
<MenuItem onClick={() => openServiceAccountKubeConfig(object)}>
|
|
<Icon material="insert_drive_file" title="Kubeconfig File" interactive={toolbar}/>
|
|
<span className="title">Kubeconfig</span>
|
|
</MenuItem>
|
|
);
|
|
}
|
|
|
|
kubeObjectMenuRegistry.add({
|
|
kind: "ServiceAccount",
|
|
apiVersions: ["v1"],
|
|
components: {
|
|
MenuItem: ServiceAccountMenu
|
|
}
|
|
});
|