Code Monkey home page Code Monkey logo

Comments (4)

surma avatar surma commented on June 24, 2024 1

After digging into this a little bit, I don’t think I will fix this from Comlink’s side.

The biggest change from v3 to v4 was to remove object traversals that were pretty costly, especially on low-end phones. To fix this, I’d have to either re-introduce traversals or give some special handling to apply (and maybe even call). A quick prototype for that showed that this requires a good amount of code for something that I think is a rather niché problem.

That being said, you can work around this by giving your transfer handle the capability to traverse objects:

Comlink.transferHandlers.set("ERROR",  {
  canHandle (obj) {
      if(Array.isArray(obj)) {
        return obj.some(el => this.canHandle(el));
      }
      return obj instanceof Error
  },
  serialize (obj) {
      if(Array.isArray(obj)) {
        return [obj.map(el => this.serialize(el)), []];
      }
      const message = obj && obj.message
      const stack = obj && obj.stack
      obj = Object.assign({}, obj, { message, stack })
      return [obj, []]
  },
  deserialize (obj) {
      if(Array.isArray(obj)) {
        return obj.map(el => this.deserialize(el));
      }

      return Object.assign(Error(), obj)
  }
});

(Demo & Code: https://comlink-issue-284.glitch.me/)

I’m closing this, but please re-open if you disagree with my decision/reasoning :)

from comlink.

surma avatar surma commented on June 24, 2024

Hm, I might be able to fix that on Comlink’s side.

Can you give me a minimal setup in a gist or something that reproduces this bug? Then I can turn it into a test.

from comlink.

guanzo avatar guanzo commented on June 24, 2024

Here: http://next.plnkr.co/edit/jKM1kjMrb43XdbWM

Check the console for errors.

from comlink.

surma avatar surma commented on June 24, 2024

Looking at this now

from comlink.

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.