-
Notifications
You must be signed in to change notification settings - Fork 27.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add light/dark mode theme detection to image component example (…
…#53760) This PR adds documentation for light/dark mode detection with `next/image`. In the future, we could also document the picture solution once #51205 goes stable (although some of the preloading would not be possible). * x-ref: https://twitter.com/victorbayas/status/1688596439704780822
- Loading branch information
Showing
4 changed files
with
115 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import Image, { ImageProps } from 'next/image' | ||
import ViewSource from '../components/view-source' | ||
import styles from '../styles.module.css' | ||
|
||
// Note: we cannot use `priority` or `loading="eager" | ||
// because we depend on the default `loading="lazy"` | ||
// behavior to wait for CSS to reveal the proper image. | ||
type Props = Omit<ImageProps, 'src' | 'priority' | 'loading'> & { | ||
srcLight: string | ||
srcDark: string | ||
} | ||
|
||
const ThemeImage = (props: Props) => { | ||
const { srcLight, srcDark, ...rest } = props | ||
|
||
return ( | ||
<> | ||
<Image {...rest} src={srcLight} className={styles.imgLight} /> | ||
<Image {...rest} src={srcDark} className={styles.imgDark} /> | ||
</> | ||
) | ||
} | ||
|
||
const Page = () => ( | ||
<div> | ||
<ViewSource pathname="pages/theme.tsx" /> | ||
<h1>Image With Light/Dark Theme Detection</h1> | ||
<ThemeImage | ||
alt="Next.js Streaming" | ||
srcLight="https://assets.vercel.com/image/upload/front/nextjs/streaming-light.png" | ||
srcDark="https://assets.vercel.com/image/upload/front/nextjs/streaming-dark.png" | ||
width={588} | ||
height={387} | ||
/> | ||
</div> | ||
) | ||
|
||
export default Page |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters