Code Monkey home page Code Monkey logo

Comments (4)

wldcordeiro avatar wldcordeiro commented on April 27, 2024 4

A patch that I started, in case anyone else is interested in doing this.

diff --git a/examples/todomvc/src/main.rs b/examples/todomvc/src/main.rs
index 0e4fd57..ad4e962 100644
--- a/examples/todomvc/src/main.rs
+++ b/examples/todomvc/src/main.rs
@@ -8,6 +8,7 @@ extern crate yew;
 
 use strum::IntoEnumIterator;
 use yew::html::*;
+use yew::services::storage::{Scope, StorageService};
 
 #[derive(EnumIter, ToString, Clone, PartialEq)]
 enum Filter {
@@ -207,7 +208,9 @@ fn view_entry_edit_input((idx, entry): (usize, &Entry)) -> Html<Msg> {
     }
 }
 
-struct Context;
+struct Context {
+    store: StorageService,
+}
 
 fn main() {
     let mut app = App::new();
@@ -217,7 +220,15 @@ fn main() {
         value: "".into(),
         edit_value: "".into(),
     };
-    app.run(Context, model, update, view);
+    let mut ctx = Context {
+        store: StorageService::new(Scope::Local),
+    };
+    let x = match ctx.store.restore("test") {
+        Ok(s) => s,
+        Err(_) => "Nada".to_string(),
+    };
+    println!("{}", x);
+    app.run(ctx, model, update, view);
 }

from yew.

therustmonk avatar therustmonk commented on April 27, 2024

@wldcordeiro Thank you for the issue! I've implemented this in #81
Could you check it?

from yew.

therustmonk avatar therustmonk commented on April 27, 2024

This should work just as well since it updates the storage for each update to the model. In the JS solutions they do stuff where they access and update during creation/edit and on load.

It seemed to me that storing all the fool model is cooler, or do you think it is better to follow the standard implementation of TodoMVC? According to #5 we should not use this example to compare with other frameworks and it's better to have a separate benchmark implementation. In other words, we could improve TodoMVC like we want/can.

... but anyway, we could follow the standard implementation of TodoMVC. I have no ideas which approach is better )

from yew.

therustmonk avatar therustmonk commented on April 27, 2024

Fixed by #116

from yew.

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.