@kinvolk/headlamp-plugin
Version:
The needed infrastructure for building Headlamp plugins.
73 lines (72 loc) • 3.02 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/*
* Copyright 2025 The Kubernetes Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React from 'react';
import { useTranslation } from 'react-i18next';
import CRD from '../../lib/k8s/crd';
import { useNamespaces } from '../../redux/filterSlice';
import { Link, useThrottle } from '../common';
import ResourceListView from '../common/Resource/ResourceListView';
export default function CustomResourceDefinitionList() {
const { t } = useTranslation(['glossary', 'frequent']);
const [items, error] = CRD.useList({ namespace: useNamespaces() });
const throttledItems = useThrottle(items, 1000);
const categories = React.useMemo(() => {
if (!items || items?.length === 0) {
return [];
}
const categories = new Set();
items.forEach((crd) => {
const crdCategories = crd.getCategories() || [];
crdCategories.forEach(category => categories.add(category));
});
return Array.from(categories).sort();
}, [items]);
return (_jsx(ResourceListView, { title: t('glossary|Custom Resources'), headerProps: {
noNamespaceFilter: false,
}, data: throttledItems, errorMessage: CRD.getErrorMessage(error), columns: [
{
label: t('glossary|Resource'),
getValue: (crd) => crd.spec.names.kind,
render: crd => (_jsx(Link, { routeName: "customresources", params: {
crd: crd.metadata.name,
}, activeCluster: crd.cluster, children: crd.spec.names.kind })),
},
{
label: t('glossary|Definition'),
getValue: crd => crd.metadata.name,
render: crd => (_jsx(Link, { routeName: "crd", params: {
name: crd.metadata.name,
}, activeCluster: crd.cluster, children: crd.metadata.name })),
},
{
label: t('translation|Group'),
getValue: crd => crd.spec.group,
},
{
label: t('Scope'),
getValue: crd => crd.spec.scope,
},
{
label: t('translation|Categories'),
getValue: crd => crd.getCategories()?.join(', '),
filterVariant: 'multi-select',
filterSelectOptions: categories,
},
'cluster',
'age',
] }));
}