You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
In development mode I see this error (70% of the time when page gets reloaded), following is the first line . plyr.min.js:1 Uncaught TypeError: Cannot read properties of null (reading 'getAttribute')
but this is not a problem when project is built
THE PROBLEM is:
In the (passed) ref there's no plyr instance. Getting following Using like this (from docs)
same issue, I've fixed temporary by pre-loading the player
How to do that? preload the plyr js file?
I my case something like this fixed the issue this example is what I mean by preloading the player
'use client'importPlyr,{APITypes,PlyrOptions,PlyrSource}from"plyr-react";constMainComponent(){const[haveSource,setHaveSource]=useState(false);// When eveer the source was ready then make (haveSource) trueuseEffect(()=>{// make source ready .....setHaveSource(true)},[])return<div>
// if we didn't have any source then we will hide the play, (not unmounting it but hide it)
<divstyle={{!haveSource ? {position: "absolute",top: "-100%",left: "-100%"opacity: 0} :{}}}><Plyrref={playerRef}source={videoSource}options={playerOptions}/></div></div>}
Describe the bug
In development mode I see this error (70% of the time when page gets reloaded), following is the first line .
plyr.min.js:1 Uncaught TypeError: Cannot read properties of null (reading 'getAttribute')
but this is not a problem when project is built
THE PROBLEM is:
In the (passed) ref there's no plyr instance. Getting following Using like this (from docs)
To Reproduce
Steps to reproduce the behavior:
In a new Next.JS 14 project just try to load youtube video like following
Expected behavior
Get correct Plyr instance
Screenshots
Desktop (please complete the following information):
Additional context
Project Info:
Next.JS: 14.0.2
plyr-react: 5.3.0
The text was updated successfully, but these errors were encountered: