diff --git a/components/forms/create-or-update-default-sponsor-metadata-form.tsx b/components/forms/create-or-update-default-sponsor-metadata-form.tsx
index f820f90..a0b2985 100644
--- a/components/forms/create-or-update-default-sponsor-metadata-form.tsx
+++ b/components/forms/create-or-update-default-sponsor-metadata-form.tsx
@@ -30,12 +30,10 @@ interface CreateOrUpdateDefaultSponsorMetadataFormValues {
const defaultPreviewValues: HyperboardEntry = {
id: "a",
- value: 1n,
- image: "https://via.placeholder.com/100",
- companyName: "Company name",
+ value: 1,
+ avatar: "https://via.placeholder.com/100",
+ displayName: "Company name",
type: "Test",
- firstName: "First",
- lastName: "Last",
isBlueprint: true,
};
diff --git a/components/hyperboard/Tile.tsx b/components/hyperboard/Tile.tsx
index 7722f0c..e49e371 100644
--- a/components/hyperboard/Tile.tsx
+++ b/components/hyperboard/Tile.tsx
@@ -10,14 +10,14 @@ import { useEnsName } from "wagmi";
const borderRadius = "0px";
const logosAndText = "black";
-const formatTooltipLabel = ({ companyName, id }: HyperboardEntry) => {
- if (companyName === id) {
- return `${companyName}`;
+const formatTooltipLabel = ({ displayName, id }: HyperboardEntry) => {
+ if (displayName === id) {
+ return `${displayName}`;
}
const formattedId = isAddress(id) ? formatAddress(id) : id;
- return `${companyName}, ${formattedId}`;
+ return `${displayName}, ${formattedId}`;
};
export const Tile = ({
@@ -38,8 +38,7 @@ export const Tile = ({
const opacity = entry.isBlueprint ? 0.5 : 1;
const toolTipLabel = formatTooltipLabel(entry);
- const showBackupImage =
- !entry.image && !entry.companyName && !entry.firstName && !entry.lastName;
+ const showBackupImage = !entry.avatar;
const layout = getTileLayout(wrapperProps.width, wrapperProps.height);
@@ -54,159 +53,159 @@ export const Tile = ({
alignItems="center"
justifyContent="center"
>
- {showBackupImage ? (
-
- ) : (
+ {entry?.avatar ? (
- )}
-
-
- );
- }
-
- if (entry.type === "person") {
- const layout = getTileLayout(wrapperProps.width, wrapperProps.height);
- return (
-
- {showBackupImage ? (
-
- ) : (
-
- <>
-
-
- {entry.firstName}
-
-
- {entry.lastName}
-
-
-
-
-
- >
-
- )}
- {entry.isBlueprint && (
-
- )}
-
- );
- }
-
- if (entry.type === "speaker") {
- const layout = getTileLayout(wrapperProps.width, wrapperProps.height);
- return (
-
-
-
-
- {entry.firstName} {entry.lastName}
-
- {entry.companyName && (
-
- {entry.companyName}
-
- )}
-
- {showBackupImage ? (
+ ) : (
- ) : (
-
-
-
)}
);
}
+ //
+ // if (entry.type === "person") {
+ // const layout = getTileLayout(wrapperProps.width, wrapperProps.height);
+ // return (
+ //
+ // {showBackupImage ? (
+ //
+ // ) : (
+ //
+ // <>
+ //
+ //
+ // {entry.firstName}
+ //
+ //
+ // {entry.lastName}
+ //
+ //
+ //
+ //
+ //
+ // >
+ //
+ // )}
+ // {entry.isBlueprint && (
+ //
+ // )}
+ //
+ // );
+ // }
+ //
+ // if (entry.type === "speaker") {
+ // const layout = getTileLayout(wrapperProps.width, wrapperProps.height);
+ // return (
+ //
+ //
+ //
+ //
+ // {entry.firstName} {entry.lastName}
+ //
+ // {entry.companyName && (
+ //
+ // {entry.companyName}
+ //
+ // )}
+ //
+ // {showBackupImage ? (
+ //
+ // ) : (
+ //
+ //
+ //
+ // )}
+ //
+ //
+ // );
+ // }
return (
diff --git a/hooks/useFetchHyperboardContents.ts b/hooks/useFetchHyperboardContents.ts
index 6c74ba9..af8162e 100644
--- a/hooks/useFetchHyperboardContents.ts
+++ b/hooks/useFetchHyperboardContents.ts
@@ -413,10 +413,8 @@ export const registryContentItemToHyperboardEntry = ({
// }
return {
type: "company",
- companyName: display_name,
- lastName: display_name,
- firstName: display_name,
- image: avatar || "",
+ displayName: display_name,
+ avatar: avatar,
value: percentage_owned!,
id: address!,
isBlueprint: false,
diff --git a/types/Hyperboard.ts b/types/Hyperboard.ts
index 4541308..16e4af0 100644
--- a/types/Hyperboard.ts
+++ b/types/Hyperboard.ts
@@ -1,10 +1,8 @@
export interface HyperboardEntry {
type: string;
id: string;
- companyName: string | null;
- firstName: string | null;
- lastName: string | null;
- image: string;
+ avatar?: string | null;
+ displayName?: string | null;
value: number;
isBlueprint: boolean;
}