Skip to content

Commit

Permalink
adding FigmaImage component
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasoppermann committed Oct 1, 2024
1 parent e5e7cfa commit bc832c9
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
3 changes: 3 additions & 0 deletions content/FigmaImageSources.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"https://www.figma.com/design/GCvY3Qv8czRgZgvl1dG6lp/Primer-Web?node-id=26998-2424&t=eruKCwLaYv3FX2Vu-4": "https://user-images.githubusercontent.com/97200987/176713532-b80d0221-fc01-4bbc-bb5d-0a152bf127d2.png"
}
3 changes: 2 additions & 1 deletion content/components/avatar.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import {Box, Text} from '@primer/react'
import ComponentLayout from '~/src/layouts/component-layout'
export default ComponentLayout
import {AccessibilityLink} from '~/src/components/accessibility-link'
import {FigmaImage} from '~/src/components/FigmaImage'

<img
width="960"
Expand All @@ -37,7 +38,7 @@ Avatars start at 16px and increment by base-4 until 32px. At 32px, the scale swi
src="https://user-images.githubusercontent.com/586552/207139770-429f7327-c3e5-4e38-aa58-185a03d82304.png"
/>

<img
<FigmaImage
width="960"
alt="Demo"
src="https://www.figma.com/design/GCvY3Qv8czRgZgvl1dG6lp/Primer-Web?node-id=26998-2424&t=eruKCwLaYv3FX2Vu-4"
Expand Down
17 changes: 17 additions & 0 deletions src/components/figma-image.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import React from 'react';
import Images from '../../content/FigmaImageSources.json';


type FigmaImageProps = React.ImgHTMLAttributes<HTMLImageElement> & {
src: string
}

export const FigmaImage: React.FC<FigmaImageProps> = ({src, ...props}) => {
// check for missing prop
if(src === undefined) throw new Error("src is required on FigmaImage component");
// get real image url
const realImageSrc = Images[src]
if (realImageSrc === undefined) throw new Error(`Image with src ${src} not found in FigmaImageSources.json`);
// return image component
return (<img src={realImageSrc} {...props}/>)
}

0 comments on commit bc832c9

Please sign in to comment.