Skip to content

chrissantamaria/gatsby-plugin-fresnel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gatsby-plugin-fresnel

npm version

Provides easy drop-in support for @artsy/fresnel in Gatsby.

Install

yarn add gatsby-plugin-fresnel

How to use

Add the plugin to your gatsby-config.js and configure (see fresnel's config API):

module.exports = {
  plugins: [
    {
      resolve: `gatsby-plugin-fresnel`,
      options: {
        breakpoints: {
          sm: 0,
          md: 768,
          lg: 1024,
          xl: 1192,
        },
        interactions: {
          hover: '(hover: hover)',
          notHover: '(hover: none)',
          landscape: 'not all and (orientation: landscape)',
          portrait: 'not all and (orientation: portrait)',
        },
      },
    },
  ],
};

This package exposes a pre-configured Media component for creating media queries:

import React from 'react';
import { Media } from 'gatsby-plugin-fresnel';

const Home = () => (
  <>
    <Media at="sm">
      <MobileApp />
    </Media>
    <Media at="md">
      <TabletApp />
    </Media>
    <Media greaterThanOrEqual="lg">
      <DesktopApp />
    </Media>
  </>
);

See the @artsy/fresnel README for full documentation.

⚠️ Render behavior

Note that this plugin utilizes the disableDynamicMediaQueries option from @artsy/fresnel to mitigate hydration mismatch errors introduced in React 18. As a result, all children of Media components will be rendered regardless of visibility.

For more information, refer to @artsy/fresnel's README section.

Usage with TypeScript

If your project is using TypeScript, you can type annotate gatsby-plugin-fresnel's Media export to match your config.

For example, given the config above, a d.ts file can be created in the project with the following contents:

declare module 'gatsby-plugin-fresnel' {
  import type { CreateMediaResults } from '@artsy/fresnel/dist/Media';

  // ensure that these match keys defined in gatsby-config.js
  type BreakpointKey = 'sm' | 'md' | 'lg' | 'xl';
  type InteractionKey = 'hover' | 'notHover' | 'landscape' | 'portrait';

  export const Media: CreateMediaResults<
    BreakpointKey,
    InteractionKey
  >['Media'];
}

About

Easy drop-in support for @artsy/fresnel in Gatsby

Resources

Stars

Watchers

Forks

Packages

No packages published