/** * 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 "./crd-list.scss"; import React from "react"; import { computed, makeObservable } from "mobx"; import { observer } from "mobx-react"; import { Link } from "react-router-dom"; import { stopPropagation } from "../../utils"; import { KubeObjectListLayout } from "../kube-object"; import { crdStore } from "./crd.store"; import type { CustomResourceDefinition } from "../../api/endpoints/crd.api"; import { Select, SelectOption } from "../select"; import { createPageParam } from "../../navigation"; import { Icon } from "../icon"; import type { TableSortCallbacks } from "../table"; export const crdGroupsUrlParam = createPageParam({ name: "groups", defaultValue: [], }); enum columnId { kind = "kind", group = "group", version = "version", scope = "scope", age = "age", } @observer export class CrdList extends React.Component { constructor(props: {}) { super(props); makeObservable(this); } get selectedGroups(): string[] { return crdGroupsUrlParam.get(); } @computed get items() { if (this.selectedGroups.length) { return crdStore.items.filter(item => this.selectedGroups.includes(item.getGroup())); } return crdStore.items; // show all by default } toggleSelection(group: string) { const groups = new Set(crdGroupsUrlParam.get()); if (groups.has(group)) { groups.delete(group); } else { groups.add(group); } crdGroupsUrlParam.set([...groups]); } render() { const { items, selectedGroups } = this; const sortingCallbacks: TableSortCallbacks = { [columnId.kind]: crd => crd.getResourceKind(), [columnId.group]: crd => crd.getGroup(), [columnId.version]: crd => crd.getVersion(), [columnId.scope]: crd => crd.getScope(), }; return ( { let placeholder = <>All groups; if (selectedGroups.length == 1) placeholder = <>Group: {selectedGroups[0]}; if (selectedGroups.length >= 2) placeholder = <>Groups: {selectedGroups.join(", ")}; return { // todo: move to global filters filters: (