Before Milestone Meeting Final Changes (#40)
Some checks failed
checks-impure / test (push) Successful in 28s
checks / test (push) Successful in 1m13s
assets1 / test (push) Failing after 52s

some final fixes before the demo

Co-authored-by: Luis-Hebendanz <consulting@qube.email>
Reviewed-on: #40
Co-authored-by: sara-pervana <saramakishti@gmail.com>
Co-committed-by: sara-pervana <saramakishti@gmail.com>
This commit was merged in pull request #40.
This commit is contained in:
sara-pervana
2023-12-12 23:00:37 +01:00
committed by Luis
parent 85d62aac89
commit 8ee14f1a7b
23 changed files with 759 additions and 581 deletions

View File

@@ -0,0 +1,80 @@
// 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: "name",
label: "Entity name",
},
{
key: "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;
},
},
];