ember-qr-scanner

QR Code scanner component for Ember.js

MIT License

Downloads
8
Stars
12
Committers
3

ember-qr-scanner

QR Code scanner component for Ember.js.

Demo: https://turbo87.github.io/ember-qr-scanner/

Installation

ember install ember-qr-scanner

Usage

{{qr-scanner onSuccess=(action (mut result)) onError=(action (mut error))}}

The qr-scanner component will create a <canvas> showing the current camera stream. Once the component is added to the template it will automatically request permission from the user to use the camera.

The onError callback will be called if either the camera stream could not be acquired or if the scan of the current video frame did not result in a QR code. In the second case a ScanError instance will be passed to the callback (available through import { ScanError } from 'ember-qr-scanner';).

You can check for browser compatibility by using import { isSupported } from 'ember-qr-scanner'; and then checking the isSupported flag.

Links

License

ember-qr-scanner is licensed under the MIT License.