Coder Social home page Coder Social logo

actuate's Introduction

Actuate

Crates.io version docs.rs docs CI status

A high-performance reactive user-interface framework for Rust. This crate provides a generic library that lets you define UI using declarative, type-safe syntax. Views combine together to form a statically-typed view tree that can be stored on the stack, giving this architecture its high performance.

struct Counter {
    initial: i32,
}

impl View for Counter {
    fn body(&self, cx: &Scope) -> impl View {
        let (count, set_count) = use_state(cx, || self.initial);

        (
            text(format!("High five count: {}", count)),
            div(text("Up high!")).on_click({
                clone!(count, set_count);
                move || set_count.set(count + 1)
            }),
            div(text("Down low!")).on_click({
                clone!(count);
                move || set_count.set(count - 1)
            }),
        )
    }
}

#[derive(Clone)]
struct App;

impl View for App {
    fn body(&self, _cx: &Scope) -> impl View {
        (Counter { initial: 0 }, Counter { initial: 100 })
    }
}

Inspiration

This crate is inspired by Xilem and uses a similar approach to type-safe reactivity. The main difference with this crate is the concept of scopes, components store their state in their own scope and updates to that scope re-render the component.

State management is inspired by React and Dioxus.

actuate's People

Contributors

matthunz avatar

Stargazers

Tareque Md Hanif avatar Masafumi Takahashi avatar Andrejs Agejevs avatar  avatar Thomas Versteeg avatar  avatar  avatar Martijn Gribnau avatar Nam Se Hyun avatar Jonathan Kelley avatar  avatar Marc Espin avatar krovuxdev avatar romandev avatar Dimev avatar Ben Caunt avatar Christopher Dembia avatar Cesar Marinho avatar Luke Frisken avatar Vincent Esche avatar  avatar Tavo Annus avatar

Watchers

 avatar

actuate's Issues

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.