1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 13:55:21 +02:00

refactor(kube): events datatable react migration [EE-6450] (#11583)
Some checks are pending
ci / build_images (map[arch:amd64 platform:linux version:]) (push) Waiting to run
ci / build_images (map[arch:amd64 platform:windows version:1809]) (push) Waiting to run
ci / build_images (map[arch:amd64 platform:windows version:ltsc2022]) (push) Waiting to run
ci / build_images (map[arch:arm platform:linux version:]) (push) Waiting to run
ci / build_images (map[arch:arm64 platform:linux version:]) (push) Waiting to run
ci / build_images (map[arch:ppc64le platform:linux version:]) (push) Waiting to run
ci / build_images (map[arch:s390x platform:linux version:]) (push) Waiting to run
ci / build_manifests (push) Blocked by required conditions
/ triage (push) Waiting to run
Lint / Run linters (push) Waiting to run
Test / test-client (push) Waiting to run
Test / test-server (map[arch:amd64 platform:linux]) (push) Waiting to run
Test / test-server (map[arch:amd64 platform:windows version:1809]) (push) Waiting to run
Test / test-server (map[arch:amd64 platform:windows version:ltsc2022]) (push) Waiting to run
Test / test-server (map[arch:arm64 platform:linux]) (push) Waiting to run

Co-authored-by: testa113 <testa113>
This commit is contained in:
Ali 2024-04-18 19:14:09 +12:00 committed by GitHub
parent c15789eb73
commit bb61e73464
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
24 changed files with 233 additions and 306 deletions

View file

@ -0,0 +1,11 @@
import { formatDate } from '@/portainer/filters/filters';
import { columnHelper } from './helper';
export const date = columnHelper.accessor(
(event) => formatDate(event.lastTimestamp || event.eventTime),
{
header: 'Date',
id: 'Date',
}
);

View file

@ -0,0 +1,21 @@
import { Badge, BadgeType } from '@@/Badge';
import { columnHelper } from './helper';
export const eventType = columnHelper.accessor('type', {
header: 'Type',
cell: ({ getValue }) => (
<Badge type={getBadgeColor(getValue())}>{getValue()}</Badge>
),
});
function getBadgeColor(status?: string): BadgeType {
switch (status?.toLowerCase()) {
case 'normal':
return 'info';
case 'warning':
return 'warn';
default:
return 'danger';
}
}

View file

@ -0,0 +1,4 @@
import { createColumnHelper } from '@tanstack/react-table';
import { Event } from 'kubernetes-types/core/v1';
export const columnHelper = createColumnHelper<Event>();

View file

@ -0,0 +1,6 @@
import { date } from './date';
import { kind } from './kind';
import { eventType } from './eventType';
import { message } from './message';
export const columns = [date, kind, eventType, message];

View file

@ -0,0 +1,8 @@
import { columnHelper } from './helper';
export const kind = columnHelper.accessor(
(event) => event.involvedObject.kind,
{
header: 'Kind',
}
);

View file

@ -0,0 +1,5 @@
import { columnHelper } from './helper';
export const message = columnHelper.accessor('message', {
header: 'Message',
});