diff --git a/web/src/components/ContactCard/ContactCard/ContactCard.tsx b/web/src/components/ContactCard/ContactCard/ContactCard.tsx
index 7adef14..29e17fe 100644
--- a/web/src/components/ContactCard/ContactCard/ContactCard.tsx
+++ b/web/src/components/ContactCard/ContactCard/ContactCard.tsx
@@ -1,12 +1,15 @@
import { useState, useRef, useLayoutEffect } from 'react'
-import SocialLinksCell from 'src/components/Social/SocialLinksCell'
+import { ContactCardPortrait } from 'types/graphql'
+
+import SocialLinks from 'src/components/Social/SocialLinks/SocialLinks'
interface ContactCardProps {
portraitUrl: string
+ socials: ContactCardPortrait['socials']
}
-const ContactCard = ({ portraitUrl }: ContactCardProps) => {
+const ContactCard = ({ portraitUrl, socials }: ContactCardProps) => {
const [width, setWidth] = useState()
const [height, setHeight] = useState()
@@ -68,7 +71,7 @@ const ContactCard = ({ portraitUrl }: ContactCardProps) => {
-
+
diff --git a/web/src/components/ContactCard/ContactCardCell/ContactCardCell.tsx b/web/src/components/ContactCard/ContactCardCell/ContactCardCell.tsx
index ea7c588..3aa167e 100644
--- a/web/src/components/ContactCard/ContactCardCell/ContactCardCell.tsx
+++ b/web/src/components/ContactCard/ContactCardCell/ContactCardCell.tsx
@@ -1,4 +1,7 @@
-import type { FindPortrait, FindPortraitVariables } from 'types/graphql'
+import type {
+ ContactCardPortrait,
+ ContactCardPortraitVariables,
+} from 'types/graphql'
import type {
TypedDocumentNode,
@@ -11,25 +14,34 @@ import CellFailure from 'src/components/Cell/CellFailure/CellFailure'
import CellLoading from 'src/components/Cell/CellLoading/CellLoading'
import ContactCard from 'src/components/ContactCard/ContactCard/ContactCard'
-export const QUERY: TypedDocumentNode =
- gql`
- query ContactCardPortrait {
- portrait: portrait {
- fileId
- }
+export const QUERY: TypedDocumentNode<
+ ContactCardPortrait,
+ ContactCardPortraitVariables
+> = gql`
+ query ContactCardPortrait {
+ portrait {
+ fileId
}
- `
+ socials {
+ id
+ name
+ type
+ username
+ }
+ }
+`
export const Loading = () =>
export const Empty = () =>
-export const Failure = ({ error }: CellFailureProps) => (
+export const Failure = ({ error }: CellFailureProps) => (
)
export const Success = ({
portrait,
-}: CellSuccessProps) => (
-
+ socials,
+}: CellSuccessProps) => (
+
)
diff --git a/web/src/components/Social/SocialLinks/SocialLinks.tsx b/web/src/components/Social/SocialLinks/SocialLinks.tsx
index 7d15734..58d9488 100644
--- a/web/src/components/Social/SocialLinks/SocialLinks.tsx
+++ b/web/src/components/Social/SocialLinks/SocialLinks.tsx
@@ -1,8 +1,8 @@
-import { FindSocials } from 'types/graphql'
+import { ContactCardPortrait } from 'types/graphql'
import { baseUrls, getLogoComponent, sortOrder } from 'src/lib/handle'
-const SocialLinks = ({ socials }: FindSocials) => (
+const SocialLinks = ({ socials }: ContactCardPortrait) => (
{[...socials]
.sort((a, b) => sortOrder.indexOf(a.type) - sortOrder.indexOf(b.type))
diff --git a/web/src/components/Social/SocialLinksCell/SocialLinksCell.tsx b/web/src/components/Social/SocialLinksCell/SocialLinksCell.tsx
deleted file mode 100644
index c85259a..0000000
--- a/web/src/components/Social/SocialLinksCell/SocialLinksCell.tsx
+++ /dev/null
@@ -1,35 +0,0 @@
-import type { FindSocials, FindSocialsVariables } from 'types/graphql'
-
-import type {
- CellSuccessProps,
- CellFailureProps,
- TypedDocumentNode,
-} from '@redwoodjs/web'
-
-import CellEmpty from 'src/components/Cell/CellEmpty/CellEmpty'
-import CellFailure from 'src/components/Cell/CellFailure/CellFailure'
-import CellLoading from 'src/components/Cell/CellLoading/CellLoading'
-import SocialLinks from 'src/components/Social/SocialLinks/SocialLinks'
-
-export const QUERY: TypedDocumentNode = gql`
- query SocialsQuery {
- socials {
- id
- name
- type
- username
- }
- }
-`
-
-export const Loading = () =>
-
-export const Empty = () =>
-
-export const Failure = ({ error }: CellFailureProps) => (
-
-)
-
-export const Success = ({ socials }: CellSuccessProps) => (
-
-)