Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/anowell/quasar

An experimental rust-to-{wasm,asmjs} frontend framework.
https://github.com/anowell/quasar

asmjs asmjs-framework framework frontend frontend-framework wasm wasm-framework

Last synced: 9 days ago
JSON representation

An experimental rust-to-{wasm,asmjs} frontend framework.

Awesome Lists containing this project

README

        

# Quasar

An experimental rust-to-{wasm,asmjs} frontend framework.

---

Supermassive black holes exist at the center of most observed galaxies, but there is much about them that remains a mystery. It is believed that rapidly adding sufficient matter to a supermassive black hole's accretion disk results in becoming a [quasar](https://www.youtube.com/watch?v=3TZEp_n3eIc) that emits enormous amounts of electromagnetic energy as matter via astrophysical jets perpendicular to the black hole's spin. These jets can emit matter at nearly lightspeed and stretch hundreds of thousands of light years across a galaxy.

WASM is at the center of an upcoming shift in web development, but there is still much about that shift that remains a mystery. Some believe Rust, as an early mover, and with zero-cost abstractions is well-positioned to invest in bytecode that spins up on the event loop. It may be possible for Rust to power the fastest applications on the web, becoming highly visible across the frontend ecosystem for years to come.

Oh, and black hole's form from the collapse of a core of iron.. you know, the only element that rusts.

---

Everything is experimental, half-baked, full of caveats, regularly broken, and subject to change. But some basic principles are beginning to emerge. With Quasar...
- **your component and state types propogate into event handlers** (no need to guess the type or structure of state).
- **mutating state updates views that rely on that state** (unless you update your state via interior mutability)
- **bring your own templating engine and reuse it for server rendering** (though quasar will provide a default OOB engine - TBD)

## How it works

Currently, Quasar combines some basic JQuery-like semantics with state and component management while ensuring that state modifications trigger rerendering of components that depend on that data.

- **Template engines** are swappable. There are [examples](https://anowell.github.io/quasar/) using [bart](https://crates.io/crates/bart), [mustache](https://crates.io/crates/mustache) and [maud](https://crates.io/crates/maud). But replacing the template engine is just a matter of implementing the `Renderable` trait.
- **Components** are the combination of data with a template or other rendering process - really anything that implements `Renderable`. Quasar takes ownership of your components when binding them to the DOM and makes the data available to your event handlers via `data()` and `data_mut()` methods. In general, methods that mutate the component will result in re-rendering it at the end of the event handler. Note, component data is local to the component and not shareable outside your component.
- **Views** are the result of one-way binding of a component to the DOM. You can also attach event listeners to views. Note, that currently rendering a view uses the destructive `innerHtml = ...` approach, which kills DOM state like input focus, so eventually some sort of DOM diffing/patching or virtual DOM solution will become pretty important.
- **App Data** is shared state that is also available to event handlers. It is partitioned by a key (and by `TypeId`), and any attempt to read a shared data partition (calling `data(key)`) automatically registers your view as an observer of that data partion. Any attempt to write to an app data partition (calling `data_mut(key)`) will automatically add all observer views for that data partition to the re-render queue process at the end of the event handler.

A basic example might include an HTML file like this:

```html



```

You can bind and update data with a snippet like this:

```rust
#[derive(Default, BartDisplay)]
#[template_string = "

Count: {{count}}

+1"]
struct CounterData { count: u32 }

impl Component for CounterData {
fn onload(view: &View) {
view.on_each(EventType::Click, "button", |mut evt| {
evt.binding.data_mut().count += 1;
});
}
}

fn main() {
let mut app = quasar::init();
app.bind("#counter", CounterData::default());
app.spin();
}
```

And every such framework needs a To Do app; Quasar has two: [Mustache To Do](https://github.com/anowell/quasar/blob/master/examples/app/src/components/todo.rs), and [Maud To Do](https://github.com/anowell/quasar/blob/master/examples/maudapp/src/components/todo.rs).

## Goals

Quasar is still exploring some ideas and working to better understand what works and what's missing in [webplatform](https://github.com/tcr/rust-webplatform). Here are some overarching questions that are guiding this experimentation right now:

- Can Quasar achieve a level of abstractions that feel comparable to modern Javascript frameworks? (Probably with the help of macros eventually after some dust settles.)
- What might it look like to have "isomorphic" rust, where the same rendering code can run both client and server side?
- How can I leverage the type system to achieve more flexible and/or more robust frontend development? (e.g. trait-based templating, leveraging immutable vs mutable access as a gate for identifying views that observer or mutate specific data.)

Admittedly Quasar is absent any perf goals at this time.

## Building

You'll need emscripten setup and activated (see [brson's post](https://users.rust-lang.org/t/compiling-to-the-web-with-rust-and-emscripten/7627)), and then to add a couple compilation targets:

```bash
rustup target add asmjs-unknown-emscripten
rustup target add wasm32-unknown-emscripten
```

Now you can build quasar with:

```bash
cargo build --target=asmjs-unknown-emscripten

# or using cargo-web
cargo install cargo-web
cargo-web build
```

And you can run the various examples by running `cargo-web start` from their directory:

```bash
cd www
cargo-web start
```