8个版本
0.3.0 | 2019年1月8日 |
---|---|
0.2.5 | 2018年11月22日 |
0.2.3 | 2018年10月22日 |
0.1.2 | 2018年10月19日 |
#23 in #virtual-dom
36KB
718 代码行
squrak
虚拟DOM实现和应用及运行时定义。
功能
此仓库包含
- 纯Rust虚拟DOM实现
- 受HyperApp启发的应用定义
- 处理虚拟DOM差异的运行时定义
- 为几个平台提供运行时实现
- 通过wasm-bindgen针对网络浏览器
- 在Rustic世界中进行服务器端渲染 (现在正在工作)
- 类似于JSX的宏来帮助编写视图
目前,我们依赖于nightly
频道
squark-macros
通过proc_marco
和pest解析器提供类似JSX宏的Crate。
语法
view! {
<button class="some-class" onclick={ |_| Some(Action::Submit) }>
Button!
</button>
}
我们可以在编译时生成原生Rust表达式。
squark-web
使用wasm-bindgen的网络浏览器运行时实现。
以下是计数器应用程序的完整示例!
#![feature(proc_macro_hygiene)]
extern crate squark;
extern crate squark_macros;
extern crate squark_web;
extern crate wasm_bindgen;
extern crate web_sys;
use squark::{App, Runtime, View};
use squark_macros::view;
use squark_web::WebRuntime;
use wasm_bindgen::prelude::*;
use web_sys::window;
#[derive(Clone, Debug, PartialEq)]
struct State {
count: isize,
}
impl State {
pub fn new() -> State {
State { count: 0 }
}
}
#[derive(Clone, Debug)]
enum Action {
ChangeCount(isize),
}
#[derive(Clone, Debug)]
struct CounterApp;
impl App for CounterApp {
type State = State;
type Action = Action;
fn reducer(&self, mut state: State, action: Action) -> State {
match action {
Action::ChangeCount(c) => {
state.count = c;
}
};
state
}
fn view(&self, state: State) -> View<Action> {
let count = state.count;
view! {
<div>
{ count.to_string() }
<button onclick={ move |_| Some(Action::ChangeCount(count.clone() + 1)) }>
increment
</button>
<button onclick={ move |_| Some(Action::ChangeCount(count - 1)) }>
decrement
</button>
</div>
}
}
}
impl Default for CounterApp {
fn default() -> CounterApp {
CounterApp
}
}
#[wasm_bindgen]
pub fn run() {
WebRuntime::<CounterApp>::new(
window()
.unwrap()
.document()
.expect("Failed to get document")
.query_selector("body")
.unwrap()
.unwrap(),
State::new(),
)
.run();
}
项目目录位于examples/counter。
在examples/todomvc也有TodoMVC示例,并正在https://rail44.github.io/squark/上进行工作。
依赖项
~8–11MB
~200K SLoC