Giter Club home page Giter Club logo

Comments (6)

ItalyPaleAle avatar ItalyPaleAle commented on August 9, 2024 3

Since they’re part of the global state, I’d store them in a module:

// file: workers.js
export let myworker = nil

// file: main.js
import {myworker} from 'workers.js'
// then, in the init function, set it to something:
myworker = ....

// component: MyRoute.svelte
import {myworker} from 'workers.js'
// do whatever you need with myworker

(I typed this on my phone, hope i didn’t mess up too much :) )

from svelte-spa-router.

ItalyPaleAle avatar ItalyPaleAle commented on August 9, 2024 2

You should pass myworker inside props if you want it to be a prop.

from svelte-spa-router.

ItalyPaleAle avatar ItalyPaleAle commented on August 9, 2024

I feel like I might be missing some context (feel free to provide an example), but would you be able to add those components requiring props as sub-components? (I.e. Child components of the route)

from svelte-spa-router.

pr0mixe avatar pr0mixe commented on August 9, 2024

In my App.svelte where I put the <Router {routes}/> I also instantiate some web workers that are global to entire app. Before adding the router I used to inject these web workers as props into child components of App.svelte, i.e.: <ProjectManager {mySocket} {webWorkerDatabase}/> .
Now, with the router I want to make a route: const routes = '/': ProjectManager }. But I'd like to pass mySocket and webWorkerDatabase to that ProjectManager component when the user goes to '/' route. Otherwise I have to instantiate brand new webWorkerDatabase inside ProjectManager (and subsequently in other child components separately) which would be undesirable. As opposed to instantiating these web workers once in App.svelte and passing them into child components. I hope you get the picture. Any suggestions? Thank you!

from svelte-spa-router.

pr0mixe avatar pr0mixe commented on August 9, 2024

Thank you, this approach works. )

from svelte-spa-router.

sevaho avatar sevaho commented on August 9, 2024

hi @ItalyPaleAle I don't get it. I'm getting this error:

main.js:8 Uncaught ReferenceError: myworker$1 is not defined

this is my main.js file:

import App from "./App.svelte";
import {myworker} from "./worker.js";

const app = new App({
  target: document.body,
  props: {},
  myworker: myworker
});

export default app;

from svelte-spa-router.

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.