GithubHelp home page GithubHelp logo

mimbl's Introduction

Mimbl - Component Authoring Library

Mimbl is a TypeScript/JavaScript UI authoring library that combines declarative and imperative programming in one package. Mimbl is React-like library, which leverages Virtual DOM and employs constructs very similar to those of React. Mimbl also provides some unique features allowing more flexibility for developers.

Features

Mimbl provides all the standard functionality that developers expect from component authoring libraries: declarative laying out of HTML structure, function- and class-based components, references, error boundaries, lazy-loading, etc. In addition to this functionality Mimbl provides the following unique features:

  • Functional and class–based components as well as custom Web elements.
  • Built-in trigger-watcher mechanism that re-renders components upon changes in the observable properties.
  • Partitioned components that allow independent re-rendering of portions of a component.
  • Component events - just like HTML element events.
  • Custom DOM attributes defined by developers and supported via handler objects.
  • Service publish/subscribe mechanism.
  • Defining styles using Mimcss CSS-in-JS library.
  • Full support for MathML elements.

Installation and Usage

Mimbl is provided as an NPM package. Install it with the following command:

npm install mimbl

The Mimbl library provides a custom JSX factory function called jsx. In order for this function to be invoked by the TypeScript compiler, the tsconfig.json file must have the following option:

"compilerOptions":
{
    "jsx": "react",
    "jsxFactory": "mim.jsx",
    "jsxFragmentFactory": "mim.Fragment",
    "experimentalDecorators": true,
    "useDefineForClassFields": false,
}

The .tsx files must import the Mimbl module as mim. Mimbl uses the Mimcss library for managing CSS styles; therefore, it is also imported here.

import * as mim from "mimbl"
import * as css from "mimcss"

// Define a component
class HelloWorld extends mim.Component
{
    @mim.trigger color: css.CssColor;

    constructor( color: css.CssColor = "black")
    {
        super();
        this.color = color;
    }

    render(): any
    {
        return <div>
            <button click={[this.onChangeColor, "red"]}>Red</button>
            <button click={[this.onChangeColor, "green"]}>Green</button>
            <button click={[this.onChangeColor, "blue"]}>Blue</button>
            <span style={ {color: this.color} }>Hello World!</span>;
        </div>
    }

    onChangeColor(e: MouseEvent, color: css.CssColor)
    {
        this.color = color;
    }
}

mim.mount( new HelloWorld());

For more details please see the following resources:

mimbl's People

Contributors

mmichlin66 avatar

Stargazers

Cosmo avatar Joachim Wester avatar Ali Sal avatar David B. Waters avatar

Watchers

 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.