0.1.2 • Published 6 years ago

reason-powerplug v0.1.2

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

Reason PowerPlug

Reason PowerPlug is a set of reuseable components and functors for reason react. 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.

NameTypeComponent PropsRender Props
STATE CONTAINERS
ToggleComponent{ initial, onChange }{ on, toggle, set, reset }
CounterComponent{ initial, onChange }{ count, inc, dec, incBy, decBy, set, reset }
ValueFunctor Value.Make(M:S)module type S = {type t;};{ initial, onChange }{ value, set, reset }
ReMapFunctor 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 }
ReSetFunctor ReSet.Make(M:S)module type S = {<br />type t;let compare: (t, t) => int;};{ initial, onChange }{ values, add, clear, remove, has, set, reset }
ReListFunctor ReList.Make(M:S)module type S = {type t;};{ initial, onChange }{ list, first, last, push, pull, sort, set, reset }
FEEDBACK CONTAINERS
HoverComponent{ onChange }{ hovered, onMouseEnter, onMouseLeave }
ActiveComponent{ onChange }{ active, onMouseDown, onMouseUp }
FocusComponent{ onChange }{ focused, onFocus, onBlur }
TouchComponent{ onChange }{ touched, onTouchStart, onTouchEnd }
FocusManagerComponent{ onChange }{ focused, blur, tabIndex, onBlur, onFocus, onMouseDown, onMouseUp }
FORM CONTAINERS
InputComponent{ initial, onChange }{value, onChange, set, reset, }
OTHER
IntervalComponent{ 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