fix(ui/datatables): make empty table label consistent [EE-6499] (#11612)

pull/11905/head
Chaim Lev-Ari 2024-06-02 12:29:20 +03:00 committed by GitHub
parent 02fbdfec36
commit b7cde35c3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
56 changed files with 45 additions and 93 deletions

View File

@ -60,7 +60,6 @@ const ngModule = angular
.component( .component(
'edgeGroupAssociationTable', 'edgeGroupAssociationTable',
r2a(withReactQuery(EdgeGroupAssociationTable), [ r2a(withReactQuery(EdgeGroupAssociationTable), [
'emptyContentLabel',
'onClickRow', 'onClickRow',
'query', 'query',
'title', 'title',

View File

@ -84,7 +84,6 @@ export const ngModule = angular
'initialIngressControllers', 'initialIngressControllers',
'allowNoneIngressClass', 'allowNoneIngressClass',
'isLoading', 'isLoading',
'noIngressControllerLabel',
'view', 'view',
]) ])
) )

View File

@ -17,8 +17,9 @@
</por-select> </por-select>
</div> </div>
</div> </div>
<div ng-if="$ctrl.selectedUserId">
<effective-access-viewer-datatable dataset="$ctrl.userRoles"> </effective-access-viewer-datatable> <effective-access-viewer-datatable ng-if="$ctrl.selectedUserId" dataset="$ctrl.userRoles"> </effective-access-viewer-datatable>
</div>
</form> </form>
</rd-widget-body> </rd-widget-body>
</rd-widget> </rd-widget>

View File

@ -236,7 +236,6 @@ export const ngModule = angular
.component( .component(
'groupAssociationTable', 'groupAssociationTable',
r2a(withReactQuery(GroupAssociationTable), [ r2a(withReactQuery(GroupAssociationTable), [
'emptyContentLabel',
'onClickRow', 'onClickRow',
'query', 'query',
'title', 'title',

View File

@ -30,7 +30,6 @@ export function ContainersDatatable({ dataset, onRemoveClick }: Props) {
title="Containers" title="Containers"
titleIcon={Box} titleIcon={Box}
getRowId={(container) => container.id} getRowId={(container) => container.id}
emptyContentLabel="No container available."
data-cy="containers-datatable" data-cy="containers-datatable"
renderTableActions={(selectedRows) => ( renderTableActions={(selectedRows) => (
<div className="flex gap-2"> <div className="flex gap-2">

View File

@ -87,7 +87,6 @@ export function StackContainersDatatable({ environment, stackName }: Props) {
)} )}
dataset={containersQuery.data || []} dataset={containersQuery.data || []}
isLoading={!containersQuery.data} isLoading={!containersQuery.data}
emptyContentLabel="No containers found"
/> />
</TableSettingsProvider> </TableSettingsProvider>
</RowProvider> </RowProvider>

View File

@ -13,7 +13,7 @@ interface Props<T extends DefaultType = DefaultType> {
export function TableContent<T extends DefaultType = DefaultType>({ export function TableContent<T extends DefaultType = DefaultType>({
isLoading = false, isLoading = false,
rows, rows,
emptyContent = 'No items available', emptyContent = 'No items available.',
renderRow, renderRow,
}: Props<T>) { }: Props<T>) {
if (isLoading) { if (isLoading) {

View File

@ -40,7 +40,6 @@ export function ConfigsDatatable({ dataset, onRefresh, onRemoveClick }: Props) {
settingsManager={tableState} settingsManager={tableState}
title="Configs" title="Configs"
titleIcon={Clipboard} titleIcon={Clipboard}
emptyContentLabel="No config available."
renderTableSettings={() => ( renderTableSettings={() => (
<TableSettingsMenu> <TableSettingsMenu>
<TableSettingsMenuAutoRefresh <TableSettingsMenuAutoRefresh

View File

@ -1,30 +1,30 @@
import { Box } from 'lucide-react'; import { Box } from 'lucide-react';
import { Environment } from '@/react/portainer/environments/types';
import type { DockerContainer } from '@/react/docker/containers/types'; import type { DockerContainer } from '@/react/docker/containers/types';
import { useShowGPUsColumn } from '@/react/docker/containers/utils'; import { useShowGPUsColumn } from '@/react/docker/containers/utils';
import { Environment } from '@/react/portainer/environments/types';
import { Table, Datatable } from '@@/datatables'; import { Datatable, Table } from '@@/datatables';
import {
buildAction,
QuickActionsSettings,
} from '@@/datatables/QuickActionsSettings';
import { import {
ColumnVisibilityMenu, ColumnVisibilityMenu,
getColumnVisibilityState, getColumnVisibilityState,
} from '@@/datatables/ColumnVisibilityMenu'; } from '@@/datatables/ColumnVisibilityMenu';
import { TableSettingsProvider } from '@@/datatables/useTableSettings'; import {
import { useTableState } from '@@/datatables/useTableState'; QuickActionsSettings,
buildAction,
} from '@@/datatables/QuickActionsSettings';
import { mergeOptions } from '@@/datatables/extend-options/mergeOptions'; import { mergeOptions } from '@@/datatables/extend-options/mergeOptions';
import { withColumnFilters } from '@@/datatables/extend-options/withColumnFilters'; import { withColumnFilters } from '@@/datatables/extend-options/withColumnFilters';
import { TableSettingsProvider } from '@@/datatables/useTableSettings';
import { useTableState } from '@@/datatables/useTableState';
import { useContainers } from '../../queries/containers'; import { useContainers } from '../../queries/containers';
import { createStore } from './datatable-store';
import { ContainersDatatableSettings } from './ContainersDatatableSettings';
import { useColumns } from './columns';
import { ContainersDatatableActions } from './ContainersDatatableActions'; import { ContainersDatatableActions } from './ContainersDatatableActions';
import { ContainersDatatableSettings } from './ContainersDatatableSettings';
import { RowProvider } from './RowContext'; import { RowProvider } from './RowContext';
import { useColumns } from './columns';
import { createStore } from './datatable-store';
const storageKey = 'containers'; const storageKey = 'containers';
const settingsStore = createStore(storageKey); const settingsStore = createStore(storageKey);
@ -93,7 +93,6 @@ export function ContainersDatatable({
</> </>
)} )}
dataset={containersQuery.data || []} dataset={containersQuery.data || []}
emptyContentLabel="No containers found"
extendTableOptions={mergeOptions( extendTableOptions={mergeOptions(
withColumnFilters( withColumnFilters(
tableState.columnFilters, tableState.columnFilters,

View File

@ -52,7 +52,6 @@ export function ProcessesDatatable({
settingsManager={tableState} settingsManager={tableState}
disableSelect disableSelect
isLoading={!dataset} isLoading={!dataset}
emptyContentLabel="No processes found."
data-cy="docker-container-stats-processes-datatable" data-cy="docker-container-stats-processes-datatable"
/> />
); );

View File

@ -48,7 +48,6 @@ export function EventsDatatable({ dataset }: { dataset: Array<DockerEvent> }) {
title="Events" title="Events"
titleIcon={Clock} titleIcon={Clock}
disableSelect disableSelect
emptyContentLabel="No event available."
data-cy="docker-events-datatable" data-cy="docker-events-datatable"
/> />
); );

View File

@ -98,7 +98,6 @@ export function ImagesDatatable({
isLoading={imagesQuery.isLoading} isLoading={imagesQuery.isLoading}
settingsManager={tableState} settingsManager={tableState}
columns={columns} columns={columns}
emptyContentLabel="No images found"
renderTableSettings={() => ( renderTableSettings={() => (
<TableSettingsMenu> <TableSettingsMenu>
<TableSettingsMenuAutoRefresh <TableSettingsMenuAutoRefresh

View File

@ -37,7 +37,6 @@ export function MacvlanNodesSelector({
columns={columns} columns={columns}
dataset={dataset || []} dataset={dataset || []}
isLoading={!dataset} isLoading={!dataset}
emptyContentLabel="No node available"
settingsManager={tableState} settingsManager={tableState}
data-cy="macvlan-nodes-selector-datatable" data-cy="macvlan-nodes-selector-datatable"
extendTableOptions={mergeOptions( extendTableOptions={mergeOptions(

View File

@ -74,7 +74,6 @@ export function NetworksDatatable({ dataset, onRemove, onRefresh }: Props) {
)} )}
</> </>
)} )}
emptyContentLabel="No networks available."
renderTableActions={(selectedRows) => ( renderTableActions={(selectedRows) => (
<div className="flex gap-3"> <div className="flex gap-3">
<Authorized <Authorized

View File

@ -68,7 +68,6 @@ export function SecretsDatatable({
isLoading={!dataset} isLoading={!dataset}
disableSelect={!hasWriteAccessQuery.authorized} disableSelect={!hasWriteAccessQuery.authorized}
settingsManager={tableState} settingsManager={tableState}
emptyContentLabel="No secret available."
data-cy="docker-secrets-datatable" data-cy="docker-secrets-datatable"
renderTableActions={(selectedItems) => renderTableActions={(selectedItems) =>
hasWriteAccessQuery.authorized && ( hasWriteAccessQuery.authorized && (

View File

@ -1,15 +1,15 @@
import { List } from 'lucide-react'; import { List } from 'lucide-react';
import { Datatable } from '@@/datatables'; import { Datatable } from '@@/datatables';
import {
BasicTableSettings,
type FilteredColumnsTableSettings,
filteredColumnsSettings,
} from '@@/datatables/types';
import { useTableStateWithStorage } from '@@/datatables/useTableState';
import { withMeta } from '@@/datatables/extend-options/withMeta';
import { mergeOptions } from '@@/datatables/extend-options/mergeOptions'; import { mergeOptions } from '@@/datatables/extend-options/mergeOptions';
import { withColumnFilters } from '@@/datatables/extend-options/withColumnFilters'; import { withColumnFilters } from '@@/datatables/extend-options/withColumnFilters';
import { withMeta } from '@@/datatables/extend-options/withMeta';
import {
BasicTableSettings,
filteredColumnsSettings,
type FilteredColumnsTableSettings,
} from '@@/datatables/types';
import { useTableStateWithStorage } from '@@/datatables/useTableState';
import { useColumns } from './columns'; import { useColumns } from './columns';
import { DecoratedTask } from './types'; import { DecoratedTask } from './types';
@ -45,7 +45,6 @@ export function TasksDatatable({
settingsManager={tableState} settingsManager={tableState}
columns={columns} columns={columns}
dataset={dataset} dataset={dataset}
emptyContentLabel="No task available."
extendTableOptions={mergeOptions( extendTableOptions={mergeOptions(
withMeta({ table: 'tasks', serviceName }), withMeta({ table: 'tasks', serviceName }),
withColumnFilters(tableState.columnFilters, tableState.setColumnFilters) withColumnFilters(tableState.columnFilters, tableState.setColumnFilters)

View File

@ -23,7 +23,6 @@ export function TasksDatatable({
columns={columns} columns={columns}
dataset={dataset} dataset={dataset}
search={search} search={search}
emptyContentLabel="No task matching filter."
aria-label="Tasks table" aria-label="Tasks table"
data-cy="docker-service-tasks-nested-datatable" data-cy="docker-service-tasks-nested-datatable"
/> />

View File

@ -51,7 +51,6 @@ export function NodesDatatable({
columns={columns} columns={columns}
dataset={dataset || []} dataset={dataset || []}
isLoading={!dataset} isLoading={!dataset}
emptyContentLabel="No node available"
settingsManager={tableState} settingsManager={tableState}
extendTableOptions={withMeta({ extendTableOptions={withMeta({
table: 'nodes', table: 'nodes',

View File

@ -58,7 +58,6 @@ export function VolumesDatatable({
dataset={dataset || []} dataset={dataset || []}
isLoading={!dataset} isLoading={!dataset}
settingsManager={tableState} settingsManager={tableState}
emptyContentLabel="No volume available."
renderTableActions={(selectedItems) => ( renderTableActions={(selectedItems) => (
<TableActions selectedItems={selectedItems} onRemove={onRemove} /> <TableActions selectedItems={selectedItems} onRemove={onRemove} />
)} )}

View File

@ -25,7 +25,6 @@ export function AssociatedEdgeEnvironmentsSelector({
<div className="w-1/2"> <div className="w-1/2">
<EdgeGroupAssociationTable <EdgeGroupAssociationTable
title="Available environments" title="Available environments"
emptyContentLabel="No environment available"
query={{ query={{
types: EdgeTypes, types: EdgeTypes,
excludeIds: value, excludeIds: value,
@ -41,7 +40,6 @@ export function AssociatedEdgeEnvironmentsSelector({
<div className="w-1/2"> <div className="w-1/2">
<EdgeGroupAssociationTable <EdgeGroupAssociationTable
title="Associated environments" title="Associated environments"
emptyContentLabel="No associated environment'"
query={{ query={{
types: EdgeTypes, types: EdgeTypes,
endpointIds: value, endpointIds: value,

View File

@ -41,13 +41,11 @@ const columns = [
export function EdgeGroupAssociationTable({ export function EdgeGroupAssociationTable({
title, title,
query, query,
emptyContentLabel,
onClickRow, onClickRow,
'data-cy': dataCy, 'data-cy': dataCy,
}: { }: {
title: string; title: string;
query: EnvironmentsQueryParams; query: EnvironmentsQueryParams;
emptyContentLabel: string;
onClickRow: (env: Environment) => void; onClickRow: (env: Environment) => void;
} & AutomationTestingProps) { } & AutomationTestingProps) {
const tableState = useTableStateWithoutStorage('Name'); const tableState = useTableStateWithoutStorage('Name');
@ -97,7 +95,6 @@ export function EdgeGroupAssociationTable({
onClick={() => onClickRow(row.original)} onClick={() => onClickRow(row.original)}
/> />
)} )}
emptyContentLabel={emptyContentLabel}
data-cy={dataCy} data-cy={dataCy}
disableSelect disableSelect
/> />

View File

@ -36,7 +36,6 @@ export function Datatable() {
dataset={environments} dataset={environments}
title="Edge Devices Waiting Room" title="Edge Devices Waiting Room"
titleIcon={Box} titleIcon={Box}
emptyContentLabel="No Edge Devices found"
renderTableActions={(selectedRows) => ( renderTableActions={(selectedRows) => (
<TableActions selectedRows={selectedRows} /> <TableActions selectedRows={selectedRows} />
)} )}

View File

@ -24,7 +24,6 @@ export function EdgeGroupsDatatable() {
columns={columns} columns={columns}
dataset={edgeGroupsQuery.data || []} dataset={edgeGroupsQuery.data || []}
settingsManager={tableState} settingsManager={tableState}
emptyContentLabel="No Edge group available."
isLoading={edgeGroupsQuery.isLoading} isLoading={edgeGroupsQuery.isLoading}
renderTableActions={(selectedItems) => ( renderTableActions={(selectedItems) => (
<TableActions selectedItems={selectedItems} /> <TableActions selectedItems={selectedItems} />

View File

@ -23,7 +23,6 @@ export function EdgeJobsDatatable() {
isLoading={jobsQuery.isLoading} isLoading={jobsQuery.isLoading}
dataset={jobsQuery.data || []} dataset={jobsQuery.data || []}
settingsManager={tableState} settingsManager={tableState}
emptyContentLabel="No Edge jobs available."
title="Edge Jobs" title="Edge Jobs"
titleIcon={Clock} titleIcon={Clock}
renderTableActions={(selectedItems) => ( renderTableActions={(selectedItems) => (

View File

@ -111,7 +111,6 @@ export function EnvironmentsDatatable() {
page={page} page={page}
onPageChange={setPage} onPageChange={setPage}
totalCount={environmentsQuery.totalCount} totalCount={environmentsQuery.totalCount}
emptyContentLabel="No environment available."
disableSelect disableSelect
description={ description={
<div className="w-1/4"> <div className="w-1/4">

View File

@ -36,7 +36,6 @@ export function EdgeStacksDatatable() {
dataset={edgeStacksQuery.data || []} dataset={edgeStacksQuery.data || []}
initialTableState={getColumnVisibilityState(tableState.hiddenColumns)} initialTableState={getColumnVisibilityState(tableState.hiddenColumns)}
settingsManager={tableState} settingsManager={tableState}
emptyContentLabel="No stack available."
isLoading={edgeStacksQuery.isLoading} isLoading={edgeStacksQuery.isLoading}
renderTableSettings={(tableInstance) => ( renderTableSettings={(tableInstance) => (
<TableSettingsMenus <TableSettingsMenus

View File

@ -55,7 +55,6 @@ export function ApplicationContainersDatatable() {
podsQuery.isLoading || podsQuery.isLoading ||
useServerMetricsQuery.isLoading useServerMetricsQuery.isLoading
} }
emptyContentLabel="No containers found"
title="Application containers" title="Application containers"
titleIcon={Server} titleIcon={Server}
getRowId={(row) => row.podName} // use pod name because it's unique (name is not unique) getRowId={(row) => row.podName} // use pod name because it's unique (name is not unique)

View File

@ -64,7 +64,6 @@ export function PlacementsDatatable({
/> />
</TableSettingsMenu> </TableSettingsMenu>
)} )}
emptyContentLabel="No node available."
renderSubRow={(row) => ( renderSubRow={(row) => (
<SubRow node={row.original} cellCount={row.getVisibleCells().length} /> <SubRow node={row.original} cellCount={row.getVisibleCells().length} />
)} )}

View File

@ -70,7 +70,6 @@ export function ApplicationsStacksDatatable({
<SubRows stack={row.original} span={row.getVisibleCells().length} /> <SubRows stack={row.original} span={row.getVisibleCells().length} />
)} )}
noWidget noWidget
emptyContentLabel="No stack available."
description={ description={
<div className="w-full"> <div className="w-full">
<div className="float-right mr-2 min-w-[140px]"> <div className="float-right mr-2 min-w-[140px]">

View File

@ -180,8 +180,8 @@ function InnerForm({
values={values.ingressClasses} values={values.ingressClasses}
initialValues={initialValues.ingressClasses} initialValues={initialValues.ingressClasses}
isLoading={isIngressClassesLoading} isLoading={isIngressClassesLoading}
noIngressControllerLabel="No supported ingress controllers found."
view="cluster" view="cluster"
noIngressControllerLabel="No supported ingress controllers found."
/> />
<div className="form-group"> <div className="form-group">
<div className="col-sm-12"> <div className="col-sm-12">

View File

@ -53,7 +53,6 @@ export function NodesDatatable() {
kubernetesEndpointsQuery.isLoading || kubernetesEndpointsQuery.isLoading ||
environmentQuery.isLoading environmentQuery.isLoading
} }
emptyContentLabel="No Nodes found"
title="Nodes" title="Nodes"
titleIcon={HardDrive} titleIcon={HardDrive}
getRowId={(row) => row.metadata?.uid ?? ''} getRowId={(row) => row.metadata?.uid ?? ''}

View File

@ -35,7 +35,6 @@ export function AccessTable({
titleIcon={UserX} titleIcon={UserX}
dataset={dataset} dataset={dataset}
columns={columns} columns={columns}
emptyContentLabel="No namespace has been authorized yet."
settingsManager={tableState} settingsManager={tableState}
renderTableActions={(selectedItems) => ( renderTableActions={(selectedItems) => (
<DeleteButton <DeleteButton

View File

@ -23,7 +23,7 @@ interface Props {
initialValues: IngressControllerClassMap[] | undefined; initialValues: IngressControllerClassMap[] | undefined;
isLoading: boolean; isLoading: boolean;
noIngressControllerLabel: string; noIngressControllerLabel: string;
view: string; view: 'namespace' | 'cluster';
} }
export function IngressClassDatatable({ export function IngressClassDatatable({
@ -44,7 +44,6 @@ export function IngressClassDatatable({
dataset={values || []} dataset={values || []}
columns={columns} columns={columns}
isLoading={isLoading} isLoading={isLoading}
emptyContentLabel={noIngressControllerLabel}
title="Ingress Controllers" title="Ingress Controllers"
titleIcon={Route} titleIcon={Route}
getRowId={(row) => `${row.Name}-${row.ClassName}-${row.Type}`} getRowId={(row) => `${row.Name}-${row.ClassName}-${row.Type}`}
@ -94,11 +93,18 @@ export function IngressClassDatatable({
function renderIngressClassDescription() { function renderIngressClassDescription() {
return ( return (
<div className="text-muted flex w-full flex-col !text-xs"> <div className="flex flex-col gap-3">
<div className="mt-1">{description}</div> {!isLoading && values && values.length === 0 && (
{initialValues && values && isUnsavedChanges(initialValues, values) && ( <TextTip>{noIngressControllerLabel}</TextTip>
<TextTip>Unsaved changes.</TextTip>
)} )}
<div className="text-muted flex w-full flex-col !text-xs">
<div className="mt-1">{description}</div>
{initialValues &&
values &&
isUnsavedChanges(initialValues, values) && (
<TextTip>Unsaved changes.</TextTip>
)}
</div>
</div> </div>
); );
} }

View File

@ -27,7 +27,6 @@ interface Props {
initialIngressControllers: IngressControllerClassMap[] | undefined; initialIngressControllers: IngressControllerClassMap[] | undefined;
allowNoneIngressClass: boolean; allowNoneIngressClass: boolean;
isLoading: boolean; isLoading: boolean;
noIngressControllerLabel: string;
view: string; view: string;
} }
@ -40,7 +39,6 @@ export function IngressClassDatatableAngular({
ingressControllers, ingressControllers,
allowNoneIngressClass, allowNoneIngressClass,
isLoading, isLoading,
noIngressControllerLabel,
view, view,
}: Props) { }: Props) {
const tableState = useTableState(settingsStore, storageKey); const tableState = useTableState(settingsStore, storageKey);
@ -99,7 +97,6 @@ export function IngressClassDatatableAngular({
dataset={ingControllerFormValues || []} dataset={ingControllerFormValues || []}
columns={columns} columns={columns}
isLoading={isLoading} isLoading={isLoading}
emptyContentLabel={noIngressControllerLabel}
title="Ingress Controllers" title="Ingress Controllers"
titleIcon={Route} titleIcon={Route}
getRowId={(row) => `${row.Name}-${row.ClassName}-${row.Type}`} getRowId={(row) => `${row.Name}-${row.ClassName}-${row.Type}`}

View File

@ -31,7 +31,6 @@ export function EventsDatatable({
columns={columns} columns={columns}
settingsManager={tableState} settingsManager={tableState}
isLoading={isLoading} isLoading={isLoading}
emptyContentLabel="No event available."
title="Events" title="Events"
titleIcon={History} titleIcon={History}
getRowId={(row) => row.metadata?.uid || ''} getRowId={(row) => row.metadata?.uid || ''}

View File

@ -104,7 +104,6 @@ export function ConfigMapsDatatable() {
columns={columns} columns={columns}
settingsManager={tableState} settingsManager={tableState}
isLoading={configMapsQuery.isLoading || namespacesQuery.isLoading} isLoading={configMapsQuery.isLoading || namespacesQuery.isLoading}
emptyContentLabel="No ConfigMaps found"
title="ConfigMaps" title="ConfigMaps"
titleIcon={FileCode} titleIcon={FileCode}
getRowId={(row) => row.metadata?.uid ?? ''} getRowId={(row) => row.metadata?.uid ?? ''}

View File

@ -104,7 +104,6 @@ export function SecretsDatatable() {
columns={columns} columns={columns}
settingsManager={tableState} settingsManager={tableState}
isLoading={secretsQuery.isLoading || namespacesQuery.isLoading} isLoading={secretsQuery.isLoading || namespacesQuery.isLoading}
emptyContentLabel="No secrets found"
title="Secrets" title="Secrets"
titleIcon={Lock} titleIcon={Lock}
getRowId={(row) => row.metadata?.uid ?? ''} getRowId={(row) => row.metadata?.uid ?? ''}

View File

@ -89,7 +89,6 @@ export function IngressDatatable() {
dataset={ingressesWithIsSystem} dataset={ingressesWithIsSystem}
columns={columns} columns={columns}
isLoading={ingressesQuery.isLoading || namespacesQuery.isLoading} isLoading={ingressesQuery.isLoading || namespacesQuery.isLoading}
emptyContentLabel="No supported ingresses found"
title="Ingresses" title="Ingresses"
titleIcon={Route} titleIcon={Route}
getRowId={(row) => row.Name + row.Type + row.Namespace} getRowId={(row) => row.Name + row.Type + row.Namespace}

View File

@ -83,10 +83,10 @@ export function NamespaceInnerForm({
onChange={(classes) => setFieldValue('ingressClasses', classes)} onChange={(classes) => setFieldValue('ingressClasses', classes)}
values={values.ingressClasses} values={values.ingressClasses}
description="Enable the ingress controllers that users can select when publishing applications in this namespace." description="Enable the ingress controllers that users can select when publishing applications in this namespace."
noIngressControllerLabel="No ingress controllers available in the cluster. Go to the cluster setup view to configure and allow the use of ingress controllers in the cluster."
view="namespace" view="namespace"
isLoading={ingressClassesQuery.isLoading} isLoading={ingressClassesQuery.isLoading}
initialValues={initialValues.ingressClasses} initialValues={initialValues.ingressClasses}
noIngressControllerLabel="No ingress controllers available in the cluster. Go to the cluster setup view to configure and allow the use of ingress controllers in the cluster."
/> />
</FormSection> </FormSection>
)} )}

View File

@ -84,7 +84,6 @@ export function ServicesDatatable() {
columns={columns} columns={columns}
settingsManager={tableState} settingsManager={tableState}
isLoading={servicesQuery.isLoading || namespacesQuery.isLoading} isLoading={servicesQuery.isLoading || namespacesQuery.isLoading}
emptyContentLabel="No services found"
title="Services" title="Services"
titleIcon={Shuffle} titleIcon={Shuffle}
getRowId={(row) => row.UID} getRowId={(row) => row.UID}

View File

@ -60,7 +60,6 @@ export function AccessDatatable({
roles: rolesState, roles: rolesState,
})} })}
isRowSelectable={({ original: item }) => !inheritFrom || !item.Inherited} isRowSelectable={({ original: item }) => !inheritFrom || !item.Inherited}
emptyContentLabel="No authorized users or teams."
renderTableActions={(selectedItems) => ( renderTableActions={(selectedItems) => (
<> <>
<RemoveAccessButton items={selectedItems} onClick={onRemove} /> <RemoveAccessButton items={selectedItems} onClick={onRemove} />

View File

@ -70,7 +70,6 @@ export function HelmRepositoryDatatable() {
renderTableActions={(selectedRows) => ( renderTableActions={(selectedRows) => (
<HelmRepositoryDatatableActions selectedItems={selectedRows} /> <HelmRepositoryDatatableActions selectedItems={selectedRows} />
)} )}
emptyContentLabel="No Helm repository found"
isLoading={helmReposQuery.isLoading} isLoading={helmReposQuery.isLoading}
isRowSelectable={(row) => !row.original.Global} isRowSelectable={(row) => !row.original.Global}
data-cy="helm-repositories-datatable" data-cy="helm-repositories-datatable"

View File

@ -36,7 +36,6 @@ export function TagsDatatable({
dataset={dataset || []} dataset={dataset || []}
columns={columns} columns={columns}
isLoading={!dataset} isLoading={!dataset}
emptyContentLabel="No tag available."
settingsManager={tableState} settingsManager={tableState}
renderTableActions={(selectedItems) => ( renderTableActions={(selectedItems) => (
<DeleteButton <DeleteButton

View File

@ -25,7 +25,6 @@ export function AssociatedEnvironmentsSelector({
<div className="w-1/2"> <div className="w-1/2">
<GroupAssociationTable <GroupAssociationTable
title="Available environments" title="Available environments"
emptyContentLabel="No environment available"
query={{ query={{
groupIds: [1], groupIds: [1],
excludeIds: value, excludeIds: value,
@ -41,7 +40,6 @@ export function AssociatedEnvironmentsSelector({
<div className="w-1/2"> <div className="w-1/2">
<GroupAssociationTable <GroupAssociationTable
title="Associated environments" title="Associated environments"
emptyContentLabel="No associated environment'"
query={{ query={{
endpointIds: value, endpointIds: value,
}} }}

View File

@ -23,13 +23,11 @@ const columns = [
export function GroupAssociationTable({ export function GroupAssociationTable({
title, title,
query, query,
emptyContentLabel,
onClickRow, onClickRow,
'data-cy': dataCy, 'data-cy': dataCy,
}: { }: {
title: string; title: string;
query: EnvironmentsQueryParams; query: EnvironmentsQueryParams;
emptyContentLabel: string;
onClickRow?: (env: Environment) => void; onClickRow?: (env: Environment) => void;
} & AutomationTestingProps) { } & AutomationTestingProps) {
const tableState = useTableStateWithoutStorage('Name'); const tableState = useTableStateWithoutStorage('Name');
@ -61,7 +59,6 @@ export function GroupAssociationTable({
onClick={onClickRow ? () => onClickRow(row.original) : undefined} onClick={onClickRow ? () => onClickRow(row.original) : undefined}
/> />
)} )}
emptyContentLabel={emptyContentLabel}
data-cy={dataCy} data-cy={dataCy}
disableSelect disableSelect
/> />

View File

@ -70,7 +70,6 @@ export function ListView() {
settingsManager={tableState} settingsManager={tableState}
title="Update & rollback" title="Update & rollback"
titleIcon={Clock} titleIcon={Clock}
emptyContentLabel="No schedules found"
isLoading={listQuery.isLoading} isLoading={listQuery.isLoading}
renderTableActions={(selectedRows) => ( renderTableActions={(selectedRows) => (
<TableActions selectedRows={selectedRows} /> <TableActions selectedRows={selectedRows} />

View File

@ -47,7 +47,6 @@ export function NotificationsView() {
titleIcon={Bell} titleIcon={Bell}
dataset={userNotifications} dataset={userNotifications}
settingsManager={tableState} settingsManager={tableState}
emptyContentLabel="No notifications found"
renderTableActions={(selectedRows) => ( renderTableActions={(selectedRows) => (
<TableActions selectedRows={selectedRows} /> <TableActions selectedRows={selectedRows} />
)} )}

View File

@ -38,7 +38,6 @@ export function GitlabProjectTable({
columns={columns} columns={columns}
dataset={dataset} dataset={dataset}
settingsManager={tableState} settingsManager={tableState}
emptyContentLabel="No projects available."
title="Gitlab projects" title="Gitlab projects"
titleIcon={ListIcon} titleIcon={ListIcon}
extendTableOptions={withControlledSelected( extendTableOptions={withControlledSelected(

View File

@ -35,7 +35,6 @@ export function TagsDatatable({
dataset={dataset || []} dataset={dataset || []}
isLoading={!dataset} isLoading={!dataset}
settingsManager={tableState} settingsManager={tableState}
emptyContentLabel="No tags available."
renderTableActions={(selectedItems) => renderTableActions={(selectedItems) =>
advancedFeaturesAvailable && ( advancedFeaturesAvailable && (
<DeleteButton <DeleteButton

View File

@ -16,7 +16,6 @@ export function RepositoriesDatatable({ dataset }: { dataset?: Repository[] }) {
dataset={dataset || []} dataset={dataset || []}
isLoading={!dataset} isLoading={!dataset}
settingsManager={tableState} settingsManager={tableState}
emptyContentLabel="No repository available."
disableSelect disableSelect
data-cy="registry-repositories-datatable" data-cy="registry-repositories-datatable"
/> />

View File

@ -22,7 +22,6 @@ export function LDAPGroupsTable({ dataset }: { dataset?: Value[] }) {
title="Groups" title="Groups"
titleIcon={Users} titleIcon={Users}
settingsManager={tableState} settingsManager={tableState}
emptyContentLabel="No groups found."
disableSelect disableSelect
data-cy="ldap-groups-datatable" data-cy="ldap-groups-datatable"
/> />

View File

@ -21,7 +21,6 @@ export function LDAPUsersTable({ dataset }: { dataset?: string[] }) {
title="Users" title="Users"
titleIcon={Users} titleIcon={Users}
settingsManager={tableState} settingsManager={tableState}
emptyContentLabel="No users found."
disableSelect disableSelect
data-cy="ldap-users-datatable" data-cy="ldap-users-datatable"
/> />

View File

@ -31,7 +31,6 @@ export function FDOProfilesDatatable({
title="Device Profiles" title="Device Profiles"
titleIcon={List} titleIcon={List}
disableSelect={!isFDOEnabled} disableSelect={!isFDOEnabled}
emptyContentLabel="No profiles found"
getRowId={(row) => row.id.toString()} getRowId={(row) => row.id.toString()}
isLoading={isLoading} isLoading={isLoading}
renderTableActions={(selectedItems) => ( renderTableActions={(selectedItems) => (

View File

@ -12,6 +12,14 @@ export function EffectiveAccessViewerDatatable({
}) { }) {
const tableState = useTableStateWithStorage('access-viewer', 'Environment'); const tableState = useTableStateWithStorage('access-viewer', 'Environment');
if (dataset?.length === 0) {
return (
<TextTip color="blue">
The selected user does not have access to any environments.
</TextTip>
);
}
return ( return (
<Datatable <Datatable
dataset={dataset || []} dataset={dataset || []}
@ -22,14 +30,9 @@ export function EffectiveAccessViewerDatatable({
description={ description={
<TextTip color="blue"> <TextTip color="blue">
Effective role for each environment will be displayed for the selected Effective role for each environment will be displayed for the selected
user user.
</TextTip> </TextTip>
} }
emptyContentLabel={
dataset
? 'The selected user does not have access to any environment(s)'
: 'Select a user to show associated access and role'
}
disableSelect disableSelect
data-cy="effective-access-viewer-datatable" data-cy="effective-access-viewer-datatable"
/> />

View File

@ -34,7 +34,6 @@ export function RbacRolesDatatable({
dataset={dataset || []} dataset={dataset || []}
columns={columns} columns={columns}
isLoading={!dataset} isLoading={!dataset}
emptyContentLabel="No role available."
settingsManager={tableState} settingsManager={tableState}
disableSelect disableSelect
data-cy="rbac-roles-datatable" data-cy="rbac-roles-datatable"

View File

@ -47,7 +47,6 @@ export function TeamsDatatable({ teams, isAdmin }: Props) {
/> />
) )
} }
emptyContentLabel="No teams found"
data-cy="teams-datatable" data-cy="teams-datatable"
/> />
); );