Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build out Gatsby media information in docs #12906

Merged
merged 8 commits into from
Apr 2, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions docs/docs/dropping-images-into-static-folders.md

This file was deleted.

4 changes: 2 additions & 2 deletions docs/docs/images-and-files.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Images and Files
title: Images, Video, and Files
overview: true
---

Gatsby provides multiple solutions for adding images and files into your projects. This section will walk you through several common patterns for handling images and files in Gatsby projects.
Gatsby provides multiple solutions for adding images, video, and files into your projects. This section will walk you through several common patterns for handling media in Gatsby projects.

[[guidelist]]
26 changes: 21 additions & 5 deletions docs/docs/importing-media-content.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
---
title: Importing media content
issue: https://github.com/gatsbyjs/gatsby/issues/8103
title: Importing Media Content
---

This is a stub. Help our community expand it.
"Media content" is a broad term that generally includes images, videos, documents and files that are displayed on your website. For Gatsby sites, you have multiple options for importing media content depending on the type:

Please use the [Gatsby Style Guide](/contributing/gatsby-style-guide/) to ensure your
pull request gets accepted.
## Images, SVG, and PDFs

- [Image graphics can be imported](/docs/adding-images-fonts-files/) with Webpack and queried with GraphQL.
- Images can also be [included from the `static folder`](/docs/adding-images-fonts-files/#using-the-static-folder).
- SVG content can be embedded into JSX. Here's a [handy JSX converter](https://transform.now.sh/html-to-jsx/).
- SVG can be included in `img` tags or CSS backgrounds. [SVG Tips from CSS Tricks](https://css-tricks.com/using-svg/).
- For PDF files, we recommend embedding an [image of the PDF](https://helpx.adobe.com/acrobat/using/exporting-pdfs-file-formats.html) with [alternative text](https://a11y-101.com/development/infographics), and providing a link to download a [tagged PDF](https://helpx.adobe.com/acrobat/using/creating-accessible-pdfs.html).

## Video assets

Like images, video assets present many options and requirements for cross-browser support. Learn about video embeds on the Gatsby docs page on [working with video](/docs/working-with-video/).

## Canvas and WebGL

The HTML5 `<canvas>` element provides a space for 2-dimensional drawing in a web environment. In Gatsby and React, it may help to include a library like [react-konva](https://github.com/konvajs/react-konva) or one of the comparison libraries to cut down on boilerplate and make drawing easier.

[WebGL](https://developer.mozilla.org/en-US/docs/Web/API/WebGL_API/Tutorial/Getting_started_with_WebGL), on the other hand, creates a 3-dimensional space in a web environment using the `<canvas>` element. Libraries like [Three.js](https://threejs.org/) are often used to enable WebGL experiences in React apps.

> Using canvas and/or WebGL may require modifying your Webpack config. Do you have experience with making this work in your Gatsby site? Contribute to the docs by adding more details to this page.
9 changes: 0 additions & 9 deletions docs/docs/importing-single-files.md

This file was deleted.

142 changes: 142 additions & 0 deletions docs/docs/working-with-video.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
---
title: Working With Video
---

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I miss a heading here like TOC or Overview. But I don't find the right wording now

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure what you mean. The heading for the page is right above it (Working with Video). We've talked about creating more consistent patterns for TOC, such as in #6896. But I don't think that should hold up this PR!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did mean a header for the TOC.

But I did not find any doc with a header for TOC. Only some introducing sentence on some pages following by TOC or links to aubpages.

- [Sourcing video from a host](#sourcing-video-from-a-host)
- [Embedding hosted videos in Markdown](#embedding-hosted-videos-in-markdown)
- [Writing custom components for hosted video](#writing-custom-components-for-hosted-video)
- [Querying video data from Markdown with GraphQL](#querying-video-data-from-markdown-with-graphql)
- [Hosting your own HTML5 video files](#hosting-your-own-html5-video-files)
- [Using custom video players](#using-custom-video-players)

## Sourcing video from a host

The easiest method for including video on a Gatsby site is to source an uploaded file from a site like YouTube, Vimeo, or Twitch. Using the source URL from one of those hosts, you can use Remark plugins or create a custom `<iframe>` solution to embed videos into your Gatsby site.

## Embedding hosted videos in Markdown

There are numerous Gatsby plugins for working with hosted video in your Markdown posts and pages. We recommend checking out the [gatsby-remark-embed-video](/packages/gatsby-remark-embed-video/?=video) plugin for sourcing from a variety of hosts.

### Writing custom components for hosted video

If you would like more control over how YouTube (or similar) videos are embedded into your Gatsby posts and pages, you can write a reusable custom `iframe` component and include it in a JSX template or in your content [with MDX](/docs/mdx/).

In this reusable sample component, you could include props for video data like URL or title, any necessary markup for styling purposes, and the common `iframe` embed code:

```js:title=components/video.js
const Video = ({ videoSrcURL, videoTitle, ...props }) => (
<div className="video">
<iframe
src={videoSrcURL}
title={videoTitle}
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
frameBorder="0"
webkitallowfullscreen="true"
mozallowfullscreen="true"
allowFullScreen
/>
</div>
)
```

You would then include this component in a template or page with a video source URL and title passed in as props. The data for video URLs and titles can be sourced in multiple ways, such as importing JSON or [querying data from Markdown with GraphQL](#querying-data-from-markdown-with-graphql). You can also hard-code video data for something fun, like a custom 404 page with an Easter egg YouTube video:

```jsx:title=src/pages/404.js
import React from "react"

import Layout from "../components/layout"
import SEO from "../components/seo"
import Video from "../components/video"

const NotFoundPage = () => (
<Layout>
<SEO title="404: Not found" />
<section>
<h1>NOT FOUND</h1>
<p>You just hit a page that doesn't exist... the sadness.</p>
<p>May I suggest a video instead?</p>
<Video
videoSrcURL="https://www.youtube.com/embed/dQw4w9WgXcQ"
videoTitle="Official Music Video on YouTube"
/>
</section>
</Layout>
)

export default NotFoundPage
```

## Querying video data from Markdown with GraphQL

If a Markdown page or post has a featured video, you might want to include a video URL and title in [its frontmatter](/docs/adding-markdown-pages#note-on-creating-markdown-files). That makes it easy to pass those values into our custom component:

```markdown:title=my-first-post.md
---
path: "/blog/my-first-post"
date: "2019-03-27"
title: "My first blog post"
videoSourceURL: https://www.youtube.com/embed/dQw4w9WgXcQ
videoTitle: "Gatsby is Never Gonna Give You Up"
---
```

To include a video component in a template, you could start with something like this:

```jsx:title=vlog-template.js
import React from "react"
import { graphql } from "gatsby"

import Video from "../components/video"

export default function VlogTemplate({
data, // this prop will be injected by the GraphQL query below.
}) {
const { markdownRemark } = data // data.markdownRemark holds our post data
const { frontmatter, html } = markdownRemark
return (
<div className="blog-post-container">
<div className="blog-post">
<h1>{frontmatter.title}</h1>
<h2>{frontmatter.date}</h2>
<Video
videoSrcURL={frontmatter.videoSrcURL}
videoTitle={frontmatter.videoTitle}
/>
<div
className="blog-post-content"
dangerouslySetInnerHTML={{ __html: html }}
/>
</div>
</div>
)
}

export const pageQuery = graphql`
query($path: String!) {
markdownRemark(frontmatter: { path: { eq: $path } }) {
html
frontmatter {
date(formatString: "MMMM DD, YYYY")
path
title
videoSrcURL
videoTitle
}
}
}
`
```

## Hosting your own HTML5 video files

It's super common to source video from YouTube, Twitch or Vimeo. But what if you want to host your own video and include it as HTML5 video?

> This discussion is ongoing on GitHub, chime in with your ideas in the Gatsby issue [#3346 Create a special component for HTML5 videos](https://github.com/gatsbyjs/gatsby/issues/3346)

To include your own video files that will work in multiple web browsers and platforms, you'll need to read up a bit on video extensions and codecs. We recommend MDN as a resource: [Media formats for HTML audio and video](https://developer.mozilla.org/en-US/docs/Web/HTML/Supported_media_formats). You may need video converter software to produce the necessary formats to support a range of devices and environments, such as `.webm` and `.mp4`.

## Using custom video players

One advantage of integrating a custom component with your own hosted video is it can give you more control over the video player, including its accessibility. It is strongly encouraged to provide captions and subtitles for your videos, and use a player with accessible controls.

Check out the accessible [HTML5 video player from PayPal](https://github.com/paypal/accessible-html5-video-player#react-version) for an example compatible with Gatsby and React.
12 changes: 5 additions & 7 deletions www/src/data/sidebars/doc-links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,18 +62,16 @@
link: /docs/eslint/
- title: Proxying API Requests
link: /docs/api-proxy/
- title: Images and Files
- title: Images, Video, and Files
link: /docs/images-and-files/
items:
- title: Adding Images, Fonts, and Files
link: /docs/adding-images-fonts-files/
- title: Static Folder
- title: Working With Video
link: /docs/working-with-video/
- title: Using the Static Folder
link: /docs/static-folder/
- title: Dropping Images into Static Folders*
link: /docs/dropping-images-into-static-folders/
- title: Importing Single Files*
link: /docs/importing-single-files/
- title: Importing Media Content*
- title: Importing Media Content
link: /docs/importing-media-content/
- title: gatsby-source-filesystem Programmatic Import*
link: /docs/gatsby-source-filesystem-programmatic-import/
Expand Down