Thanks for downloading Dynamsoft Barcode Reader Package!
Your download will start shortly. If your download does not begin, click here to retry.
React is a JavaScript library meant explicitly for creating interactive UIs. Follow this guide to learn how to implement Dynamsoft Barcode Reader JavaScript SDK (hereafter called “the library”) into a React application.
Make sure you have node and yarn installed. node 14.16.0
and yarn 1.22.10
are used in the example below.
npx create-react-app read-video-react
yarn add dynamsoft-javascript-barcode
import DBR from "dynamsoft-javascript-barcode";
DBR.BarcodeReader.engineResourcePath = "https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@8.4.0/dist/";
export default DBR;
Note:
- There are multiple settings available for the configuration, here we only set the
engineResourcePath
which is essential for the library to get the necessary resources at runtime.
BarcodeScanner.js
, add code for initializing and destroying the library.import DBR from "../dbr";
import React from 'react';
class BarcodeScanner extends React.Component {
constructor(props) {
super(props);
this.bDestroyed = false;
this.pScanner = null;
this.elRef = React.createRef();
}
async componentDidMount() {
try {
let scanner = await (this.pScanner = this.pScanner || DBR.BarcodeScanner.createInstance());
if (this.bDestroyed) {
scanner.destroy();
return;
}
this.elRef.current.appendChild(scanner.getUIElement());
await scanner.open();
} catch (ex) {
console.error(ex);
}
}
async componentWillUnmount() {
this.bDestroyed = true;
if (this.pScanner) {
(await this.pScanner).destroy();
}
}
shouldComponentUpdate() {
// Never update UI after mount, dbrjs sdk use native way to bind event, update will remove it.
return false;
}
render() {
return (
<div style= ref={this.elRef}>
</div>
);
}
}
export default BarcodeScanner;
Note:
The html code in
render()
and the following code builds the UI for the library.this.elRef.current.appendChild(scanner.getUIElement());
- To release resources timely, the
BarcodeScanner
instance is destroyed with the component in the callbackcomponentWillUnmount
.- The component should never update (check the code for
shouldComponentUpdate()
) so that events bound to the UI stay valid.
HelloWorld.js
import './HelloWorld.css';
import React from 'react';
import BarcodeScanner from './BarcodeScanner';
class HelloWorld extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<div id="UIElement">
<BarcodeScanner></BarcodeScanner>
</div>
);
}
}
export default HelloWorld;
HelloWorld.css
#UIElement {
margin: 2vmin auto;
text-align: center;
font-size: medium;
height: 40vh;
width: 80vw;
}
App.js
Edit the file App.js
to be like this
import './App.css';
import HelloWorld from './components/HelloWorld.js';
function App() {
return (
<div className="App">
<HelloWorld></HelloWorld>
</div>
);
}
export default App;
yarn start
If you followed all the steps correctly, you will have a working page that turns one of the cameras hooked to or built in your computer or mobile device into a barcode scanner. However, the found barcodes are not displayed anywhere yet. At the same time, there is a short delay for the initialization of the library during which nothing happens and is not user-friendly. The following takes care of these two issues.
HelloWorld.js
constructor(props) {
super(props);
this.state = {
libLoaded: false,
resultValue: "",
bShowScanner: false
};
}
import DBR from "../dbr";
async componentDidMount() {
try {
//Load the library on page load to speed things up.
await DBR.BarcodeScanner.loadWasm();
this.setState(state => {
state.libLoaded = true;
return state;
}, () => {
this.showScanner();
});
} catch (ex) {
alert(ex.message);
throw ex;
}
}
showScanner = () => {
this.setState({
bShowScanner: true
});
}
appendMessage = (message) => {
switch (message.type) {
case "result":
this.setState(prevState => {
prevState.resultValue = message.format + ": " + message.text;
return prevState;
});
break;
case "error":
this.setState(prevState => {
prevState.resultValue = message.msg;
return prevState;
});
break;
default: break;
}
}
NOTE :
- The method
loadWasm()
in the functioncomponentDidMount()
initializes the library in the background. The scanner UI is only shown when the initialization finishes.- The method
appendMessage()
is used to show the result text on the page.
render() {
return (
<div className="helloWorld">
<div id="UIElement">
{!this.state.libLoaded ? (<span style=>Loading Library...</span>) : ""}
{this.state.bShowScanner ? (<BarcodeScanner appendMessage={this.appendMessage}></BarcodeScanner>) : ""}
</div>
<input type="text" value={this.state.resultValue} readOnly={true} id="resultText" />
</div>
);
}
HelloWorld.css
#resultText {
display: block;
margin: 0 auto;
padding: 0.4rem 0.8rem;
color: inherit;
width: 80vw;
border: none;
font-size: 1rem;
border-radius: 0.2rem;
text-align: center;
}
BarcodeScanner.js
, use the event onFrameRead
and the parent method appendMessage()
to return the results.async componentDidMount() {
try {
//Omitted code...
scanner.setUIElement(this.elRef.current);
scanner.onFrameRead = results => {
for (let result of results) {
this.props.appendMessage({ format: result.barcodeFormatString, text: result.barcodeText, type: "result" });
if (result.barcodeText.indexOf("Attention(exceptionCode") !== -1) {
this.props.appendMessage({ msg: result.exception.message, type: "error" });
}
}
};
await scanner.open();
} catch (ex) {
this.props.appendMessage({ msg: ex.message, type: "error" });
console.error(ex);
}
}
NOTE :
- The event
onFrameRead
is triggered upon reading of each frame. If barcodes are found on that frame, the results will be returned and shown on the page.
After the above changes, the application is made more user-friendly and the barcode text is displayed on the page right away. You can start implementing your own business workflow and make the application useful.
latest version