Skip to content
Advertisement

Generating a Flicking carousel with React leads to the getComputedStyle error

This question is about egjs-flicking library but perhaps problem is more general.

Let us consider two examples of components that will differ only by their render() method. First I provide the whole component.

JavaScript

Static case

Now the first case is the children of the Flicking container are pre-defined.

JavaScript

which gives the following rendered HTML

JavaScript

Dynamic case

Here they are generated dynamically

JavaScript

giving the following rendered HTML (identical to previous)

JavaScript

for PanelComponent it was using

JavaScript

to generate each of the panels.

Problem

The static case works perfectly, the dynamic case gives the following error

JavaScript

and I am really puzzled why because resulting HTML is identical… Any ideas?

Advertisement

Answer

Ok I actually found it. All thanks to this GitHub discussion and here is my relevant comment.

From https://naver.github.io/egjs-flicking/docs/quick-start I checked section Bypassing ref forwarding and added useFindDOMNode={true} to my Flicking.

Here is the complete working source that is able to dynamically put children components in Flicking

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement