Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to React 18.3.1, Storybook 8.2.9, and vitest 2.0.5 #2230

Merged
merged 2 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 3 additions & 1 deletion frontend/.storybook/HeadlampTheme.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
// https://storybook.js.org/docs/react/configure/theming#create-a-theme-quickstart
// To workaround a bug at time of writing, where theme is not refreshed,
// you may need to `npm run storybook --no-manager-cache`
import { create } from '@storybook/theming';
import { create } from '@storybook/theming/create';
import logoUrl from '../../docs/headlamp_light.svg';

export default create({
base: 'light',
brandTitle: 'Headlamp Kubernetes Web UI dashboard',
brandUrl: 'https://headlamp.dev/docs/latest/development/',
brandImage: logoUrl,
fontBase: '"Overpass", sans-serif',
fontCode: '"Overpass Mono", monospace',
});
226 changes: 226 additions & 0 deletions frontend/.storybook/baseMocks.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,226 @@
import { http, HttpResponse } from 'msw';
import { NODE_DUMMY_DATA } from '../src/components/node/storyHelper';

/**
* This contains several mocked endpoints
* Those are used in most of the stories
*
*/
export const baseMocks = [
http.get('https://api.iconify.design/mdi.json', () => HttpResponse.json({})),
http.post('http://localhost:4466/apis/authorization.k8s.io/v1/selfsubjectaccessreviews', () =>
HttpResponse.json({ status: { allowed: true, reason: '', code: 200 } })
),
http.get('http://localhost:4466/api/v1/namespaces', () =>
HttpResponse.json({
kind: 'NamespacesList',
items: [
{
kind: 'Namespace',
apiVersion: 'v1',
metadata: {
name: 'default',
creationTimestamp: '2024-08-16T11:12:37.179Z',
},
spec: {
finalizers: ['kubernetes'],
},
status: {
phase: 'Active',
},
},
],
metadata: {},
})
),
http.get('http://localhost:4466/clusters/cluster0/version', () => HttpResponse.json({})),
joaquimrocha marked this conversation as resolved.
Show resolved Hide resolved
http.get('http://localhost:4466/clusters/cluster1/version', () => HttpResponse.json({})),
http.get('http://localhost:4466/clusters/cluster2/version', () => HttpResponse.json({})),
http.get('http://localhost:4466/clusters/cluster0/api/v1/events', () =>
HttpResponse.json({
kind: 'EventList',
items: [],
metadata: {},
})
),
http.get('http://localhost:4466/clusters/cluster1/api/v1/events', () =>
HttpResponse.json({
kind: 'EventList',
items: [],
metadata: {},
})
),
http.get('http://localhost:4466/clusters/cluster2/api/v1/events', () =>
HttpResponse.json({
kind: 'EventList',
items: [],
metadata: {},
})
),
http.get('http://localhost:4466/version', () => HttpResponse.json({})),
http.get('http://localhost:4466/api/v1/events', () =>
HttpResponse.json({
kind: 'EventList',
items: [],
metadata: {},
})
),
http.get('http://localhost:4466/api/v1/namespaces/kube-system/events', () =>
HttpResponse.json({
kind: 'EventList',
items: [],
metadata: {},
})
),
http.get('http://localhost:4466/api/v1/nodes', () =>
HttpResponse.json({
kind: 'NodesList',
apiVersion: 'v1',
metadata: {
resourceVersion: '545284',
},
items: NODE_DUMMY_DATA,
})
),
http.get('http://localhost:4466/api/v1/namespaces/default/pods', () =>
HttpResponse.json({
kind: 'PodList',
apiVersion: 'v1',
metadata: {},
items: [],
})
),
http.get('http://localhost:4466/apis/metrics.k8s.io/v1beta1/nodes', () =>
HttpResponse.json({
apiVersion: 'metrics.k8s.io/v1beta1',
kind: 'NodeMetricsList',
metadata: {},
items: [
{
apiVersion: 'v1',
count: 1,
eventTime: null,
firstTimestamp: '2023-07-13T13:42:00Z',
involvedObject: {
apiVersion: 'v1',
fieldPath: 'spec.containers{hello}',
kind: 'Pod',
name: 'hello-123-123',
namespace: 'default',
resourceVersion: '44429432',
uid: 'a1234',
},
kind: 'Event',
lastTimestamp: '2023-07-13T13:42:00Z',
message: 'Started container hello',
metadata: {
creationTimestamp: '2023-07-13T13:42:00Z',
name: 'hello-123-123.321',
namespace: 'default',
resourceVersion: '44429443',
uid: 'a12345',
},
reason: 'Started',
reportingComponent: '',
reportingInstance: '',
source: {
component: 'kubelet',
host: 'aks-agentpool-30159275-vmss00003g',
},
type: 'Normal',
},
{
apiVersion: 'v1',
count: 4449,
eventTime: null,
firstTimestamp: '2023-07-12T20:07:10Z',
involvedObject: {
apiVersion: 'autoscaling/v2',
kind: 'HorizontalPodAutoscaler',
name: 'nginx-deployment',
namespace: 'default',
resourceVersion: '1',
uid: 'b1234',
},
kind: 'Event',
lastTimestamp: '2023-07-13T14:42:17Z',
message: 'failed to get cpu utilization: missing request for cpu',
metadata: {
creationTimestamp: '2023-07-12T20:07:10Z',
name: 'nginx-deployment.1234',
namespace: 'default',
resourceVersion: '1',
uid: 'b12345',
},
reason: 'FailedGetResourceMetric',
reportingComponent: '',
reportingInstance: '',
source: {
component: 'horizontal-pod-autoscaler',
},
type: 'Warning',
},
{
apiVersion: 'v1',
kind: 'Event',
metadata: {
name: 'nginx-deployment-12345',
namespace: 'default',
creationTimestamp: '2024-02-12T20:07:10Z',
uid: 'b123456',
resourceVersion: '1',
},
involvedObject: {
kind: 'Pod',
name: 'nginx-deployment-1234567890-abcde',
namespace: 'default',
uid: 'b1234',
},
reason: 'FailedGetResourceMetric',
message: 'failed to get cpu utilization: missing request for cpu',
source: {
component: 'horizontal-pod-autoscaler',
},
firstTimestamp: '2024-02-13T14:42:17Z',
lastTimestamp: '2024-02-13T14:42:17Z',
type: 'Warning',
series: {
count: 10,
lastObservedTime: '2024-02-13T14:42:17Z',
},
},
{
apiVersion: 'v1',
kind: 'Event',
metadata: {
name: 'nginx-deployment-12346',
namespace: 'default',
creationTimestamp: '2024-02-12T20:07:10Z',
uid: 'abc123456',
resourceVersion: '1',
},
involvedObject: {
kind: 'Pod',
name: 'nginx-deployment-abcd-1234567890',
namespace: 'default',
uid: 'b1234',
},
reason: 'FailedGetResourceMetric',
message: 'failed to get cpu utilization: missing request for cpu',
source: {
component: 'horizontal-pod-autoscaler',
},
firstTimestamp: null,
lastTimestamp: null,
type: 'Warning',
series: {
count: 10,
lastObservedTime: '2024-02-13T15:42:17Z',
},
reportingComponent: '',
reportingInstance: '',
},
],
})
),
];
19 changes: 0 additions & 19 deletions frontend/.storybook/main.js

This file was deleted.

22 changes: 22 additions & 0 deletions frontend/.storybook/main.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { StorybookConfig } from '@storybook/react-vite';

export default {
framework: '@storybook/react-vite',
stories: ['../src/**/*.stories.@(js|jsx|ts|tsx)'],

addons: [
'@storybook/addon-links',
'@storybook/addon-essentials',
'@storybook/addon-interactions',
],

core: {
disableTelemetry: true,
},

docs: {},

typescript: {
reactDocgen: 'react-docgen-typescript',
},
} satisfies StorybookConfig;
2 changes: 1 addition & 1 deletion frontend/.storybook/manager.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { addons } from '@storybook/addons';
import { addons } from '@storybook/manager-api';
import theme from './HeadlampTheme';

addons.setConfig({
Expand Down
Loading
Loading