Giter VIP home page Giter VIP logo

Comments (10)

dimdenGD avatar dimdenGD commented on June 2, 2024 1

That fixed it! and no window.wrappedJSObject needed to work too

from emoji-picker-element.

nolanlawson avatar nolanlawson commented on June 2, 2024

@dimdenGD Thanks for filing! Do you have a test to reproduce? Have you filed a bug on Firefox?

I've only glanced at this issue, but it seems unlikely that it can be fixed on the emoji-picker-element side of things... It appears to be a Firefox issue.

from emoji-picker-element.

dimdenGD avatar dimdenGD commented on June 2, 2024

There seems to be almost identical bug filed: https://bugzilla.mozilla.org/show_bug.cgi?id=1475950 which was closed already. I don't think this a Firefox bug, just a specific security measure on Firefox that needs to be addressed properly when detected to be used inside Firefox sandboxed window. The only (easy) way to reproduce right now is to use my extension Old Twitter Layout on Firefox and open emoji picker in it.

from emoji-picker-element.

nolanlawson avatar nolanlawson commented on June 2, 2024

This definitely appears to be a bug in Firefox. I believe the error is caused by the line:

Based on the bug, it looks like Firefox is doing some kind of sandboxing of globals; I assume the global Array is confusing it here.

I don't know the first thing about Firefox extension development, so I can repro but I don't know how to test a fix. In your use of the emoji picker, could you try:

-          emoji.skins = Array(len);
+          emoji.skins = [];
           for (let i = 0; i < len; i++) {
-            emoji.skins[i] = {
+            emoji.skins.push({
               tone: emoji.skinTones[i],
               unicode: emoji.skinUnicodes[i],
               version: emoji.skinVersions[i]
-            };
+            });
           }

If that fixes the issue (and there are no other bugs!) then you have a repro you can file on Mozilla for sure.

from emoji-picker-element.

nolanlawson avatar nolanlawson commented on June 2, 2024

My theory is that what's happening here is

  1. The object comes back from IndexedDB
  2. We try to set Array() on it
  3. Firefox is confused about the origin of the IndexedDB object versus the Array global
  4. Boom

Just a theory, though.

from emoji-picker-element.

dimdenGD avatar dimdenGD commented on June 2, 2024

Originally I thought it's caused by assigning anything into emoji but I tested and assigning a number works fine, before opening this issue I also tried basically same code as you just showed and it didn't work, so neither Array nor [] works for this.
Using window.wrappedJSObject.Array() seems to work for first line, but then it errors on version with same error for whatever reason:
image

from emoji-picker-element.

nolanlawson avatar nolanlawson commented on June 2, 2024

Could you try this:

      function cleanEmoji (emoji) {
        if (!emoji) {
          return emoji
        }
+       emoji = structuredClone(emoji);
        delete emoji.tokens;

Maybe cloning it will cause Firefox to stop complaining? If structuredClone doesn't work, you can also try JSON.parse(JSON.stringify(emoji)).

from emoji-picker-element.

nolanlawson avatar nolanlawson commented on June 2, 2024

Thanks! FWIW I noticed that the skintone picker also appeared to be not working in your extension. (Open the dropdown, select a skintone, it never updates.) Not sure if that's related.

from emoji-picker-element.

dimdenGD avatar dimdenGD commented on June 2, 2024

Just checked, it seems to update the emojis, but only after going to other category and then back to People and body. Not sure if it's supposed to update hand skin color itself. This happens on both Chrome and Firefox and doesn't throw any error. I'll check this out

from emoji-picker-element.

dimdenGD avatar dimdenGD commented on June 2, 2024

Apparently it's because of Twemoji use, so it's unrelated.

from emoji-picker-element.

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.