Skip to content

A little library to provide access to Qr Scanner and Barcode Scanner plugins.

License

Notifications You must be signed in to change notification settings

MurylloEx/Qr-Scanner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

Qr Scanner

This library was designed to register callbacks to Qr Scanner/Barcode Scanner with a single library.

You will need (>= Angular 9) to use this library, Ionic project (>= v3), qrscanner cordova plugin and the phonegap barcode scanner plugin.

Installation

ionic cordova plugin add cordova-plugin-qrscanner
ionic cordova plugin add phonegap-plugin-barcodescanner
npm install @ionic-native/qr-scanner
npm install @ionic-native/barcode-scanner
npm install @rebase-team/qr-scanner

Usage examples

> APP.MODULE.TS

import { AppComponent } from "./app.component";
import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { QrScannerService } from "@rebase-team/qr-scanner";
import { QRScanner } from '@ionic-native/qr-scanner/ngx';
import { BarcodeScanner } from '@ionic-native/barcode-scanner/ngx';

@NgModule({
  declarations: [AppComponent],
  imports: [
    BrowserModule,
    IonicModule.forRoot()
  ],
  providers: [
    QRScanner,
    BarcodeScanner,
    QrScannerService
  ],
  bootstrap: [AppComponent],
  exports: []
})
export class AppModule { }

> HOME.PAGE.TS

import { Component } from "@angular/core";
import { QrScannerService } from "@rebase-team/qr-scanner";

@Component({
  selector: "app-home",
  templateUrl: "home.page.html",
  styleUrls: ["home.page.scss"],
})
export class HomePage {

  constructor(private qrScanner: QrScannerService) {
    this.qrScanner.DefinePlugin('QRSCANNER'); //Define the plugin name (QRSCANNER or BARCODESCANNER).
    this.qrScanner.OnScannedData(async (qrData) => {
      console.log(qrData); //Will print the scanned data.
      this.qrScanner.Close();
    });
    this.qrScanner.OnPermissionError(() => {	
      console.log('Não foi possível abrir a câmera para ler o QR-Code pois a permissão não foi habilitada.');	
    });	
    this.qrScanner.OnUnknownError((err) => {	
      console.log('Um problema ocorreu ao tentar abrir a câmera do celular para realizar a leitura do QR-Code.');
    });
    this.qrScanner.Scan();
  }

}

Metadata

Muryllo Pimenta de Oliveira – muryllo.pimenta@upe.br

Distribuído sobre a licença MIT. Veja LICENSE para mais informações.

Contributing

  1. Fork it (https://github.com/MurylloEx/Qr-Scanner/fork)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request

About

A little library to provide access to Qr Scanner and Barcode Scanner plugins.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published