seed
seed copied to clipboard
A Rust framework for creating web apps
Hye I am completely new to seed, 1. Just wondering where could I find the definitions for the items in CssClasses? At least some of the general explanations of the...
Suggestion: update docs to use `trunk` everywhere. This means updating things like: ```
Intuitively, returning `()` or `None` from future passed to `orders.perform_cmd(...)` means that no message should be sent to Seed mailbox. Similarly, `orders.msg_sender()(None)` should not send any message. And in these...
It would be great if `perform_cmd` had the option of sending multiple messages, as well as just one message. Sometimes I want to use `perform_cmd` to grab some data from...
The `update_from_js` example shows how to create closures in rust and make them available in javascript: ``` #[wasm_bindgen] pub fn start() -> Box { let app = App::start("app", init, update,...
I am home rolling a frontend and deeply enjoying the flexibility offered by seed. I have essentially built a half-isolated component structure with a global Msg (views branch down with...
When using Seed's macros (like `div` or `style`), `seed::prelude::*` must be imported. Otherwise compiler errors are generated (e.g. ```failed to resolve: use of undeclared type `IndexMap` not found in this...
It happens to me again and again that I stumble over the following runtime error: `Cmds can return only Msg, Option or ()!` The cause is in the [`map_callback_return_to_option_ms!`](https://github.com/seed-rs/seed/blob/340d501e51a3988829303d7f6e35cf486768bdcf/src/lib.rs#L66-L90) macro....
I'm getting some runtime errors that I'm unable to work around, when I'm interacting with a map through `leaflet-rs`. I have a reproducible sample on https://github.com/torhovland/seed-runtime-errors. I found an explanation...
I need to POST form data to an endpoint that requires `Content-Type=application/x-www-form-urlencoded`. Specifically, this is an OAuth2 endpoint that doesn't seem to support JSON form data.