GithubHelp home page GithubHelp logo

papelon's Introduction

Papelito

license: MIT

Papelito is a simple WYSIWYG editor for leptos.
The library is in its early stages, "it works" but its modularity is far from what I would consider ideal, so expect breaking changes on future updates.

Usage

[dependencies]
papelito = {git = "https://github.com/msmaiaa/papelito"}
use leptos::*;
use papelito::*;

#[component]
fn HomePage(cx: Scope) -> impl IntoView {
    let editor_content = create_rw_signal(cx, String::new());
    
    let classes = PapelitoClasses {
        actionbar: "rte-actionbar".to_string(),
        button: "rte-button".to_string(),
        content: "rte-content".to_string(),
        selected: "rte-button-selected".to_string(),
        editor: "rte-editor".to_string(),
    };
    
    //  Use the ActionsBuilder struct to build the action bar (it is a optional parameter)
    //  let actions = ActionsBuilder::new().with_bold().with_heading1().build();
    let actions = ActionsBuilder::new().with_default_actions().build();
    
    view! {cx,
        <Papelito actions=actions content_signal=editor_content classes=classes key="my_unique_key".to_string()/>
    }
}

papelon's People

Contributors

msmaiaa avatar

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.