Coder Social home page Coder Social logo

Comments (8)

elshadsm avatar elshadsm commented on August 27, 2024 1

@cookieguru, it seems that developers may encounter problems when accessing resources located in the src folder. Therefore, we recommend moving all resource files from the src folder to dedicated resources/(images, fonts, workers) directories.

from tabris-js.

ishigo1987 avatar ishigo1987 commented on August 27, 2024

Can you please @elshadsm and @mpost check this problem ?

from tabris-js.

elshadsm avatar elshadsm commented on August 27, 2024

@ishigo1987, thank you for reporting the issue. We will figure it out.

from tabris-js.

elshadsm avatar elshadsm commented on August 27, 2024

@ishigo1987, I recommend using the Worker structure from our worker-script.js snippet.

So your worker.js should be:

tabris.onMessage(event => {
    console.log(event)
});

Additionally, to take slower devices into account, I suggest adding a small delay before calling the postMessage function if you call it immediately after Worker initialization.

setTimeout(() => worker.postMessage("foo"), 50);

from tabris-js.

elshadsm avatar elshadsm commented on August 27, 2024

@ishigo1987, additionally, I used your snippet above (applied my recommendations as well) then built a debug app in my local, and everything worked as expected.

If you encounter any path-related issues after compiling, you can check your compiler configuration.

from tabris-js.

ishigo1987 avatar ishigo1987 commented on August 27, 2024

@elshadsm thank you for your recommendations.

Please in which file is my compiler configuration ?

from tabris-js.

ishigo1987 avatar ishigo1987 commented on August 27, 2024

This is the contain of my tsconfig.json

  "compilerOptions": {
    "module": "commonjs",
    "target": "es6",
    "outDir": "./dist/",
    "lib": [
      "es2017"
    ],
    "jsx": "react",
    "jsxFactory": "JSX.createElement",
    "noImplicitAny": true,
    "noImplicitThis": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "alwaysStrict": true,
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "allowJs": true,
    "typeRoots": ["node_modules/@types"],
    "skipLibCheck": true
  },
  "include": [
    "./src/**/*.ts",
    "./src/**/*.tsx",
    "./src/**/*.js",
    "./src/**/*.jsx"
, "src/lang/fr"  ]
}

Do i need to change something in order to fix my issue with paths ?

from tabris-js.

cookieguru avatar cookieguru commented on August 27, 2024

@ishigo1987 Could you share the solution?

from tabris-js.

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.