GithubHelp home page GithubHelp logo

feat: support next.js about ix-video HOT 3 CLOSED

imgix avatar imgix commented on May 30, 2024
feat: support next.js

from ix-video.

Comments (3)

luqven avatar luqven commented on May 30, 2024 1

Hey, @jimhaakman. Thanks for opening this issue.

It seems you didn't fill out the issue template, but I think you're asking about Next.js support.

Unfortunately, we currently don't offer an SSR wrapper for this library. However, there are a handful of ways to use ix-video in React / Next.js server-side.

You could start by wrapping the web component in a React/Next.js component that only renders on the client.

Dynamic imports.

In Next.js, this is commonly done with dynamic imports. I suggest you look at the Dynamic Imports Next.js documentation for a more in-depth explanation.

import dynamic from 'next/dynamic'

const DynamicHeader = dynamic(() => import('../components/header'), {
  ssr: false,
})

This will load a component on the client side dynamically.

Conditionally render on the presence of window

Another option is to check if window is defined and conditionally render the component depending on the returned value.

const isServer = () => typeof window === `undefined`;
const Page = () =>(
  <> 
      { !isServer() && <YourClientSideComponent /> }
  </>
);

This will prevent the rendering of ix-video until the window is defined on the client.


We'd love to export a wrapped version of ix-video that supports SSR, but we're heads down on other priorities at the moment. If that's something you'd like to see, please comment and let us know.

Hopefully, this answers your question. Should anything else come up, please don't hesitate to comment on this issue and tag one of the maintainers.

Thanks again!

from ix-video.

jimhaakman avatar jimhaakman commented on May 30, 2024 1

Thanks for the response! SSR support would be awesome, but this solves my issue for now :)

from ix-video.

luqven avatar luqven commented on May 30, 2024

Closing this issue as this package has moved to imgix/ix-elements repository.

from ix-video.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.