cycle-cropper
v1.1.18
Published
Cycle.js component for cropper.js
Downloads
11
Readme
cycle-cropper
cycle-cropper is component for cropper.js
Usage
import {CropperComponent} from "cycle-cropper";
const main = (sources: Sources): Sinks => {
const imageInput$ = sources.DOM.select(".image");
const cropperSinks = CropperComponent({
DOM: sources.DOM,
image$: imageInput$,
props$: Stream.of({ aspectRatio: 1 }) // cropper options
});
const imageData$ = cropperSinks.crop$
.compose(sampleCombine(cropperSinks.cropper$))
.map(([_, cropper]) => cropper.getCroppedCanvas().toDataURL())
const dom$ = Stream.of([p("Image Cropper")].concat(cropperSinks.DOM));
return { DOM: dom$ };
};
run(main, {
DOM: makeDOMDriver("#app")
});
License
see LICENSE