Skip to content

Commit

Permalink
feat(hycu): add listing page
Browse files Browse the repository at this point in the history
ref: MANAGER-14497

Signed-off-by: Thibault Barske <[email protected]>
  • Loading branch information
tibs245 committed Oct 10, 2024
1 parent 165549e commit f1aad6d
Show file tree
Hide file tree
Showing 12 changed files with 369 additions and 110 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export type ServiceDetails = {
actions: LifecycleAction[];
};
current: {
createDate: string;
creationDate: string;
pendingActions: LifecycleAction[];
state: LifecycleState;
terminationDate: string;
Expand Down
1 change: 1 addition & 0 deletions packages/manager/apps/hycu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"@ovh-ux/manager-vite-config": "*",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@vitejs/plugin-react": "^4.3.2",
"element-internals-polyfill": "^1.3.12",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"manager_error_page_default": "Une erreur est survenue lors du chargement de la page."
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
{
"title": "Listing page",
"listing_resultats": "résultats"
"title": "HYCU",
"listing_resultats": "résultats",
"hycu_status_activated": "Active",
"hycu_status_toActivate": "À activer",
"hycu_status_pending": "En cours d'activation",
"hycu_status_error": "Erreur d'activation",
"hycu-cloud-vm-pack-unknown": "Pack inconnu",
"hycu_name": "Nom",
"hycu_controller_id": "Controller ID",
"hycu_status": "Statut",
"hycu_commercial_name": "Type de pack",
"hycu_subscribed_date": "Date de souscription",
"hycu_order": "Commander",
"hycu_service_listing_terminate": "Résilié"
}
Original file line number Diff line number Diff line change
@@ -1,18 +1,28 @@
export const licenseHycu: unknown[] = [
import { IHycuDetails, LicenseStatus } from '@/type/hycu.details.interface';

export const licensesHycu: IHycuDetails[] = [
{
displayName: '425802fa-fb70-4b2a-9d5b-ec4de86bb40c',
extraParams: null,
parentName: null,
iam: {
id: '4a26ef55-d46b-4b71-88c8-76ad71b154b4',
urn:
'urn:v1:eu:resource:licenseHycu:425802fa-fb70-4b2a-9d5b-ec4de86bb40c',
},
comment: '',
serviceName: '425802fa-fb70-4b2a-9d5b-ec4de86bb40c',
stateParams: ['425802fa-fb70-4b2a-9d5b-ec4de86bb40c'],
url: '#/425802fa-fb70-4b2a-9d5b-ec4de86bb40c',
controllerId: '',
licenseStatus: LicenseStatus.TO_ACTIVATE,
expirationDate: '0001-01-01T00:00:00Z',
},
{
displayName: 'c1b7cb4f-6b63-45da-9a8a-f731f1a67b2c',
extraParams: null,
parentName: null,
iam: {
id: '06a89efa-cf14-431b-ab84-af5b3913e2ef',
urn:
'urn:v1:eu:resource:licenseHycu:c1b7cb4f-6b63-45da-9a8a-f731f1a67b2c',
},
comment: '',
serviceName: 'c1b7cb4f-6b63-45da-9a8a-f731f1a67b2c',
stateParams: ['c1b7cb4f-6b63-45da-9a8a-f731f1a67b2c'],
url: '#/c1b7cb4f-6b63-45da-9a8a-f731f1a67b2c',
controllerId: '',
licenseStatus: LicenseStatus.ACTIVATED,
expirationDate: '0001-01-01T00:00:00Z',
},
];
12 changes: 6 additions & 6 deletions packages/manager/apps/hycu/src/mocks/licenseHycu/licenseHycu.ts
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
import { Handler } from '../../../../../../../playwright-helpers';
import { licenseHycu } from './licenseHycu.data';
import { licensesHycu } from './licenseHycu.data';

export type GetLicenseHycuMocksParams = {
isBackupKo?: boolean;
isGetLicenseHycuKo?: boolean;
nbLicenseHycu?: number;
};

export const getLicenseHycuMocks = ({
isBackupKo,
isGetLicenseHycuKo,
nbLicenseHycu = Number.POSITIVE_INFINITY,
}: GetLicenseHycuMocksParams): Handler[] => {
return [
{
url: 'license/hycu',
response: isBackupKo
response: isGetLicenseHycuKo
? {
message: 'Backup error',
}
: licenseHycu.slice(0, nbLicenseHycu),
status: isBackupKo ? 500 : 200,
: licensesHycu.slice(0, nbLicenseHycu),
status: isGetLicenseHycuKo ? 500 : 200,
api: 'v6',
},
];
Expand Down
Loading

0 comments on commit f1aad6d

Please sign in to comment.