Last updated on

Create an Avatar Component in Gatsby with TypeScript Part 3: Adding Types


We left off with our avatar component working using Gatsby Image and still able to receive an image url. Now, let’s look at what it would take to type this component. I like to use type instead of interface for the props. You can read more about the difference between type and interface if you’d like.

The props type will look something like this:

type AvatarProps = {
url?: string;
altText?: string;
title?: string;
user?: "monster1" | "monster2";
};
function Avatar(props: AvatarProps) {}

The cool part here is that the user prop can be typed to match the graphql alias names. This helps anyone consuming this component know the values they can pass.

Let’s take a look at typing our data variable. We know the shape of what we expect because of our graphql. We just need to provide the correct typing at the childImageSharp level. Luckily Gatsby Image has a type of FixedObject that can help us out here. We pass the type to the static query hook like useStaticQuery<Data>(graphql to signify that we expect the return to be Data.

{...}
import Img, { FixedObject } from "gatsby-image"
{...}
type Data = {
monster1: {
childImageSharp: {
fixed: FixedObject;
};
};
monster2: {
childImageSharp: {
fixed: FixedObject;
};
};
}
function Avatar(props: AvatarProps) {
const data = useStaticQuery<Data>(graphql``)
{...}
}

Let’s refactor the redundancy in the Data type.

type ChildImage = {
childImageSharp: {
fixed: FixedObject;
};
};
type Data = {
monster1: ChildImage;
monster2: ChildImage;
};

Cool, now we should have something like this:

import React from "react";
import { useStaticQuery, graphql } from "gatsby";
import Img, { FixedObject } from "gatsby-image";
type AvatarProps = {
url?: string;
altText?: string;
title?: string;
user?: "monster1" | "monster2";
};
type ChildImage = {
childImageSharp: {
fixed: FixedObject;
};
};
type Data = {
monster1: ChildImage;
monster2: ChildImage;
};
function Avatar(props: AvatarProps) {
const data = useStaticQuery<Data>(graphql`
query {
monster1: file(relativePath: { eq: "monster-01-headshot.png" }) {
childImageSharp {
fixed(width: 75, height: 75) {
...GatsbyImageSharpFixed_withWebp
}
}
}
monster2: file(relativePath: { eq: "monster-02-headshot.png" }) {
childImageSharp {
fixed(width: 75, height: 75) {
...GatsbyImageSharpFixed_withWebp
}
}
}
}
`);
const { url, altText, title, user } = props;
const styles = {
width: "75px",
height: "75px",
borderRadius: "50%",
};
if (url) {
return <img style={styles} src={url} alt={altText} title={title} />;
}
return (
<Img
style={styles}
fixed={user && data[user].childImageSharp.fixed}
alt={altText}
title={title}
/>
);
}
export default Avatar;

Thanks for following along!


Category: