Giter VIP home page Giter VIP logo

Comments (5)

ShiiRochi avatar ShiiRochi commented on May 25, 2024

Hi! It maybe that I would need a code sandbox replicating this issue to help you in an more effective way.

from wavesurfer-react.

Simoneth avatar Simoneth commented on May 25, 2024

Hi,
Currently, I'm waiting for DND staff to solve my issue here:
atlassian/react-beautiful-dnd#2526

My demo is incomplete here: https://codesandbox.io/s/wavesurfer-react-2-0-forked-m67kpp
For some reason, it doesn't update the list.

I need more time to further investigate.

from wavesurfer-react.

ShiiRochi avatar ShiiRochi commented on May 25, 2024

I will try to dive into your issue tomorrow or this Saturday

from wavesurfer-react.

Simoneth avatar Simoneth commented on May 25, 2024

Thanks,
In the meantime, I found this ugly fix:

setTimeout(() => {
    var container = document.getElementById(waveformId);

    var canvas;
    if (container && container.getElementsByTagName) {
        var canvases = container.getElementsByTagName('canvas');
        if (canvases.length > 0) {
            canvas = canvases[0];
        }
    }
    if (canvas) {
        var event = new MouseEvent('click', {
            'view': window,
            'bubbles': true,
            'cancelable': true,
            'clientX': 1,
            'clientY': 1
        });
        canvas.dispatchEvent(event);
    }

}, 150);

Again, this happens only when I use preloaded JSON data from state inside a form using react-final-form with react-final-form-array.

P.S.
I don't know why the DND plugin doesn't work in my Codesandbox example, but locally, in my app, it works, so I'm in difficult just to show you the bug encountered.

from wavesurfer-react.

ShiiRochi avatar ShiiRochi commented on May 25, 2024

I will close it as it's depending on other 3 libraries and it seems there is problem in rendering logic, because I tried to manipulate somehow with this and it seems that after reordering WaveSurfer component finds divs it want, but these divs are not presented in HTML structure anymore.

Also, it seems that fields are actually reordered because fields are changed and if using field.value it's seen there.

https://codesandbox.io/p/sandbox/wavesurfer-react-2-0-forked-tkyhl2?file=%2Fsrc%2FWavesurfer.jsx%3A126%2C47

from wavesurfer-react.

Related Issues (20)

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.