houdini/app/javascript/legacy/common/file-input-stream.js

18 lines
416 B
JavaScript
Raw Normal View History

2019-11-06 20:36:28 +00:00
// License: LGPL-3.0-or-later
const flyd = require('flyd')
const R = require('ramda')
// Given an input element, return a stream of the input file data as text
module.exports = R.curry(node => {
var $stream = flyd.stream()
var file = node.files[0]
var reader = new FileReader()
if(file instanceof Blob) {
reader.readAsText(file)
reader.onload = e => $stream(reader.result)
}
return $stream
})