1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-17 18:13:14 +02:00
blog/src/components/atoms/Image.tsx

49 lines
1.2 KiB
TypeScript
Raw Normal View History

2020-05-22 14:38:19 +02:00
import React, { ReactElement } from 'react'
2019-10-02 13:35:50 +02:00
import { graphql } from 'gatsby'
2021-03-06 02:58:10 +01:00
import { GatsbyImage } from 'gatsby-plugin-image'
2019-10-28 23:00:55 +01:00
import { ImageProps } from '../../@types/Image'
2021-03-06 01:35:05 +01:00
import * as styles from './Image.module.css'
2019-10-02 13:35:50 +02:00
2020-05-22 14:38:19 +02:00
export const Image = ({
title,
2021-03-06 02:58:10 +01:00
image,
2020-05-22 14:38:19 +02:00
alt,
2021-03-04 01:20:39 +01:00
original,
className
2020-05-22 14:38:19 +02:00
}: ImageProps): ReactElement => (
2021-03-04 01:20:39 +01:00
<figure
className={`${styles.image} ${className ? className : ''}`}
data-original={original && original.src}
>
2021-03-06 02:58:10 +01:00
<GatsbyImage backgroundColor="transparent" image={image} alt={alt} />
2019-11-08 18:06:56 +01:00
{title && <figcaption className={styles.imageTitle}>{title}</figcaption>}
</figure>
2019-10-28 23:00:55 +01:00
)
2019-10-02 13:35:50 +02:00
export const imageSizeDefault = graphql`
fragment ImageFluid on ImageSharp {
2019-10-28 23:00:55 +01:00
original {
src
}
2021-03-06 02:58:10 +01:00
gatsbyImageData(layout: CONSTRAINED, width: 950, quality: 85)
2019-10-02 13:35:50 +02:00
}
`
export const imageSizeThumb = graphql`
fragment ImageFluidThumb on ImageSharp {
2019-10-28 23:00:55 +01:00
original {
src
}
2021-03-06 02:58:10 +01:00
gatsbyImageData(layout: CONSTRAINED, width: 420, height: 140, quality: 85)
2020-07-19 13:31:27 +02:00
}
`
export const photoSizeThumb = graphql`
fragment PhotoFluidThumb on ImageSharp {
original {
src
}
2021-03-06 02:58:10 +01:00
gatsbyImageData(layout: CONSTRAINED, width: 300, height: 300, quality: 85)
2019-10-02 13:35:50 +02:00
}
`