Liking cljdoc? Tell your friends :D

License: MIT Clojars Project

Readfile effect handler for re-frame

This re-frame library contains an FileReader-Object effect handler. The handler can be addressed by :readfile.

Getting started

Get it / add dependency

Add the following dependency to your project.cljs:
Clojars Project

Usage

See the following minimal code example or the test.cljs.

(ns your.project
  (:require [re-frame.core :as re-frame]
            [re-frame-readfile-fx.core]))

(re-frame/reg-event-fx
 :some-event
 (fn [_ [_ files]]
   {:readfile {;; vector of file- and / or blob-objects
               :files files
               ;; charset via string for all files,
               ;; via vector of strings for every single file
               ;; or nil for default (utf-8). nil also works
               ;; from within vector (for every single file)
               :charsets ["windows-1252" nil]
               ;; dispatched on success conjoined with read files
               :on-success [:your-success-event]
               ;; dispatched on error conjoined with read files
               :on-error [:your-error-event]}}))

How to get files from file-input see the test.cljs.

Appendix

I´d be thankful to receive patches, comments and constructive criticism.

Hope the package is useful :-)

Can you improve this documentation?Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close