generated from Luis/nextjs-python-web-template
92
pkgs/ui/src/mock/access-point/index.ts
Normal file
92
pkgs/ui/src/mock/access-point/index.ts
Normal file
@@ -0,0 +1,92 @@
|
|||||||
|
// AP - Attachements
|
||||||
|
|
||||||
|
export const APAttachmentsDummyData = [
|
||||||
|
{
|
||||||
|
entity_name: "C1",
|
||||||
|
entity_DID: "did:sov:test:1234",
|
||||||
|
network: "Carlo's Home Network",
|
||||||
|
ip_address: "127.0.0.1",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
entity_name: "C2",
|
||||||
|
entity_DID: "did:sov:test:4567",
|
||||||
|
network: "Steve's Home Network",
|
||||||
|
ip_address: "127.0.0.1",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
entity_name: "C1-TEST",
|
||||||
|
entity_DID: "did:sov:test:0001",
|
||||||
|
network: "Test Network A",
|
||||||
|
ip_address: "127.0.0.1",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
entity_name: "C2-TEST",
|
||||||
|
entity_DID: "did:sov:test:0002",
|
||||||
|
network: "Test Network B",
|
||||||
|
ip_address: "127.0.0.1",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
export const APAttachmentsTableConfig = [
|
||||||
|
{
|
||||||
|
key: "entity_name",
|
||||||
|
label: "Entity name",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "entity_DID",
|
||||||
|
label: "Entity DID",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "network",
|
||||||
|
label: "Network",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "ip_address",
|
||||||
|
label: "IP address",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
// AP - Service Repository
|
||||||
|
export const APServiceRepositoryDummyData = [
|
||||||
|
{
|
||||||
|
service_name: "Carlo's Printing",
|
||||||
|
service_type: "3D Printing",
|
||||||
|
end_point: "URL",
|
||||||
|
producer: "C1",
|
||||||
|
producer_DID: "did:sov:test:1234",
|
||||||
|
network: "Carlo's Home Network",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
service_name: "Jeff's Printing",
|
||||||
|
service_type: "3D Printing",
|
||||||
|
end_point: "URL",
|
||||||
|
producer: "C2",
|
||||||
|
producer_DID: "did:sov:test:5678",
|
||||||
|
network: "Jeff's Home Network",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
export const APServiceRepositoryTableConfig = [
|
||||||
|
{
|
||||||
|
key: "service_name",
|
||||||
|
label: "Service name",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "service_type",
|
||||||
|
label: "Service type",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "end_point",
|
||||||
|
label: "End point",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "producer",
|
||||||
|
label: "Producer",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "producer_DID",
|
||||||
|
label: "Producer DID",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "network",
|
||||||
|
label: "Network",
|
||||||
|
},
|
||||||
|
];
|
||||||
33
pkgs/ui/src/mock/dlg/index.ts
Normal file
33
pkgs/ui/src/mock/dlg/index.ts
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
export const DLGResolutionDummyData = [
|
||||||
|
{
|
||||||
|
requester_name: "C1",
|
||||||
|
requester_DID: "did:sov:test:1234",
|
||||||
|
DID_resolved: "did:sov:test:1234",
|
||||||
|
timestamp: "2023.11.01 17:05:45",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
requester_name: "C2",
|
||||||
|
requester_DID: "did:sov:test:5678",
|
||||||
|
DID_resolved: "did:sov:test:5678",
|
||||||
|
timestamp: "2023.12.01 15:05:50",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
export const DLGResolutionTableConfig = [
|
||||||
|
{
|
||||||
|
key: "requester_name",
|
||||||
|
label: "Requester name",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "requester_DID",
|
||||||
|
label: "Requester DID",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "DID_resolved",
|
||||||
|
label: "DID resolved",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "timestamp",
|
||||||
|
label: "Timestamp",
|
||||||
|
},
|
||||||
|
];
|
||||||
Reference in New Issue
Block a user