Code Monkey home page Code Monkey logo

Comments (5)

David-OConnor avatar David-OConnor commented on August 12, 2024 2

This is a bug in the framework - I'll update once fixed.

from seed.

David-OConnor avatar David-OConnor commented on August 12, 2024 2

This will work in the next version:

fn view(state: seed::App<Msg, Model>, model: Model) -> El<Msg> {  
    div![
        did_mount(move |_| {
            let state2 = state.clone();
            let callback = move || {
                state2.update(Msg::Increment);
            };
            seed::set_interval(Box::new(callback), 1000);
        }),

        button![
            simple_ev("click", Msg::Increment),
            format!("Hello, World × {}", model.val)
        ]
    ]
}

My intent is to make things like this easy by providing a high-level API. The raw wasm-bindgen code your sample was based on's not something I'd like anyone to have to use.

from seed.

David-OConnor avatar David-OConnor commented on August 12, 2024

I got this working with a refactoring of your view func:

fn view(state: seed::App<Msg, Model>, model: Model) -> El<Msg> {  
    div![
        did_mount(move |_| {
            let state2 = state.clone();

            let callback = Closure::wrap(Box::new(move || {
                state2.update(Msg::Increment);
            }) as Box<dyn Fn()>);
            
            let window = web_sys::window().unwrap();
            window
                .set_interval_with_callback_and_timeout_and_arguments_0(
                    // Note this method call, which uses `as_ref()` to get a `JsValue`
                    // from our `Closure` which is then converted to a `&Function`
                    // using the `JsCast::unchecked_ref` function.
                    callback.as_ref().unchecked_ref(),
                    1_000,
                )
                .unwrap();
                callback.forget();
        }),
        button![
            simple_ev("click", Msg::Increment),
            format!("Hello, World × {}", model.val)
        ]
    ]
}

The key differences are moving the callback into the did_mount closure, using a clone of state to avoid closure/moving problems, and forgetting the callback. I'm not sure if the best approach here is to make a change in the library to facilitate doing things like this, or to update the docs.

from seed.

dashed avatar dashed commented on August 12, 2024

@David-OConnor Oh awesome! Thanks for looking into this. 👍 I was unaware of the forget() function.

from seed.

David-OConnor avatar David-OConnor commented on August 12, 2024

Published in v0.2.2

from seed.

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.