Code Monkey home page Code Monkey logo

reason-powerplug's Introduction

Reason PowerPlug

Reason PowerPlug is a set of reuseable components and functors for ReasonReact. This project is inspired by react-powerplug.

module StringList = ReList.Make(String);

  <StringList initial=["d", "c", "a", "e", "b", "h", "g"]>
    ...{
          ({list, sort, reset}) =>
            <div>
              <button onClick={_ => sort(String.compare)}>
                {ReasonReact.string("sort")}
              </button>
              <button onClick={_ => reset()}>
                {ReasonReact.string("reset")}
              </button>
              <ul>
                {
                  list
                  |> List.map(s => <li key=s> {ReasonReact.string(s)} </li>)
                  |> Array.of_list
                  |> ReasonReact.array
                }
              </ul>
            </div>
        }
  </StringList>

More Examples

Installation

yarn add reason-powerplug or npm install reason-powerplug --save

then add reason-powerplug to bs-dependencies in bsconfig.json.

Components/Functors

All components and functors base on Value.Make Functor.

Name Type Component Props Render Props
STATE CONTAINERS
Toggle Component { initial, onChange } { on, toggle, set, reset }
Counter Component { initial, onChange } { count, inc, dec, incBy, decBy, set, reset }
Value Functor Value.Make(M:S)
module type S = {type t;};
{ initial, onChange } { value, set, reset }
ReMap Functor ReMap.Make(M:S)
module type S = {<br />type t;let compare: (t, t) => int;type value;};
{ initial, onChange } { values, clear, get, has, remove, add, set, reset }
ReSet Functor ReSet.Make(M:S)
module type S = {<br />type t;let compare: (t, t) => int;};
{ initial, onChange } { values, add, clear, remove, has, set, reset }
ReList Functor ReList.Make(M:S)
module type S = {type t;};
{ initial, onChange } { list, first, last, push, pull, sort, set, reset }
FEEDBACK CONTAINERS
Hover Component { onChange } { hovered, onMouseEnter, onMouseLeave }
Active Component { onChange } { active, onMouseDown, onMouseUp }
Focus Component { onChange } { focused, onFocus, onBlur }
Touch Component { onChange } { touched, onTouchStart, onTouchEnd }
FocusManager Component { onChange } { focused, blur, tabIndex, onBlur, onFocus, onMouseDown, onMouseUp }
FORM CONTAINERS
Input Component { initial, onChange } {value, onChange, set, reset, }
OTHER
Interval Component { delay } { stop, start, toggle }

Value

module Number =
  Value.Make({
    type t = int;
  });

<Number initial=1>
  ...{
       ({value, set}) =>
         <div onClick={_ => set(value => value + 1)}>
           {value |> string_of_int |> ReasonReact.string}
         </div>
     }
</Number>

TODO

reason-powerplug's People

Contributors

beizhedenglong avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

idkjs

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.