A UI component for re-frame.
Uses existing subscription to data source in re-frame's app-db
and declarative definition of how to render it as a table.
Supports sorting, pagination and some basic CSS manipulations for generated table.
Leiningen
In your application add the following dependency to the file that defines views in your re-frame application:
(ns re-frame-datatable-docs.views
(:require [re-frame-datatable.core :as dt]
[your.app.subs :as subs] ; Namespace in which re-frame subscriptions are defined
;...))
Here is a sample Reagent component which defines datatable (assuming that subs
namespace constains ::songs-list
subscription which returns data in the following format: [{:index 1 :name "Mister Sandman" :duration 136} ...]
)
(defn sneak-peek-for-readme []
[dt/datatable
:songs
[::subs/songs-list]
[{::dt/column-key [:index]
::dt/sorting {::dt/enabled? true}
::dt/column-label "#"}
{::dt/column-key [:name]
::dt/column-label "Name"}
{::dt/column-key [:duration]
::dt/column-label "Duration"
::dt/sorting {::dt/enabled? true}
::dt/render-fn (fn [val]
[:span
(let [m (quot val 60)
s (mod val 60)]
(if (zero? m)
s
(str m ":" (when (< s 10) 0) s)))])}]
{::dt/pagination {::dt/enabled? true
::dt/per-page 5}
::dt/table-classes ["ui" "table" "celled"]}])
dt/datatable
component accepts the following arguments:
datatable-key
- a keyword, that will be used in re-frame's app-db
to store datatable statesubscription-vec
- a vector, which will be used by datatable to render data via (re-frame/subscribe subscription-vec)
columns-def
- a vector of maps, that defines how each column of datatable should look likeoptions
- optional map of additional optionsFor the complete documenation and live examples visit Documentation website.
re-frame-datatable
expects a re-frame subscription, that returns a collection of maps. It will render an HTML table (using <table>
tag) based on the following rules
n
columns (based on the amount of elements in columns-def
vectorcolumns-def
vectorget-in item column-key
based on columns-def
)Copyright © 2016 Kirill Ishanov
Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.
Can you improve this documentation? These fine people already did:
Kirill Ishanov & Kirill Ishanov (Apstra)Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close