generated from Luis/nextjs-python-web-template
some final fixes before the demo
This commit is contained in:
77
pkgs/ui/src/config/access_point/index.tsx
Normal file
77
pkgs/ui/src/config/access_point/index.tsx
Normal file
@@ -0,0 +1,77 @@
|
||||
// AP - Summary
|
||||
|
||||
export const APSummaryDetails = [
|
||||
{
|
||||
label: "DID",
|
||||
value: "did:sov:test:1274",
|
||||
},
|
||||
{
|
||||
label: "IP",
|
||||
value: "127.0.0.2",
|
||||
},
|
||||
{
|
||||
label: "Network",
|
||||
value: "Carlo's Home Network",
|
||||
},
|
||||
];
|
||||
|
||||
export const APAttachmentsTableConfig = [
|
||||
{
|
||||
key: "entity_name",
|
||||
label: "Entity name",
|
||||
},
|
||||
{
|
||||
key: "entity_did",
|
||||
label: "Entity DID",
|
||||
},
|
||||
{
|
||||
key: "other",
|
||||
label: "Network",
|
||||
render: (value: any) => {
|
||||
let renderedValue = ''
|
||||
if (typeof value === 'object')
|
||||
renderedValue = value?.network;
|
||||
return renderedValue;
|
||||
}
|
||||
},
|
||||
{
|
||||
key: "ip",
|
||||
label: "IP address",
|
||||
},
|
||||
];
|
||||
|
||||
export const APServiceRepositoryTableConfig = [
|
||||
{
|
||||
key: "service_name",
|
||||
label: "Service name",
|
||||
},
|
||||
{
|
||||
key: "service_type",
|
||||
label: "Service type",
|
||||
},
|
||||
{
|
||||
key: "endpoint_url",
|
||||
label: "End point",
|
||||
},
|
||||
{
|
||||
key: "entity_did",
|
||||
label: "Entity DID",
|
||||
},
|
||||
{
|
||||
key: "status",
|
||||
label: "Status",
|
||||
},
|
||||
{
|
||||
key: "other",
|
||||
label: "Type",
|
||||
render: (value: any) => {
|
||||
let renderedValue: any = ''
|
||||
if (typeof value === 'object') {
|
||||
const label = Object.keys(value)[0];
|
||||
const info = value[label]
|
||||
renderedValue = (<code>{label} {info}</code>);
|
||||
}
|
||||
return renderedValue;
|
||||
}
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user