How an error message can be shown when barcodes are not recognized by RNcamera ( react-native-camera)
I am new to React-native. I have a requirement for barcode scanning and I am using react-native-camera for this. I want to show error message to the user when the barcodes are not recognized for some reason.
This is code.
class Scan extends Component {
constructor(props)
super(props);
this.barocode = this.barocode.bind(this);
barocode(e)
if(typeof (e) == 'undefined') // tried this if barcodes are not recognized. This doesn't work.
alert("error");
else
this.camera.pausePreview();
alert(e.data);
render()
return (
<View style=styles.container>
<RNCamera
ref=ref =>
this.camera = ref;
style = styles.preview
type=RNCamera.Constants.Type.back
flashMode=RNCamera.Constants.FlashMode.on
onBarCodeRead=(e) =>
this.barocode(e)
/>
</View>
);
OnbarcodeRead will call the function this.barocode(e) once it recognizes the barcode. This code is working fine for almost all barcodes types listed in the documentation.
https://www.npmjs.com/package/react-native-camera.
OnbarcodeRead will be undefined if barcodes are not recognized (this won't call the function this.barocode(e)).I want to show an error message that time. Could anyone guide me the way it can be done.
react-native-camera
add a comment |
I am new to React-native. I have a requirement for barcode scanning and I am using react-native-camera for this. I want to show error message to the user when the barcodes are not recognized for some reason.
This is code.
class Scan extends Component {
constructor(props)
super(props);
this.barocode = this.barocode.bind(this);
barocode(e)
if(typeof (e) == 'undefined') // tried this if barcodes are not recognized. This doesn't work.
alert("error");
else
this.camera.pausePreview();
alert(e.data);
render()
return (
<View style=styles.container>
<RNCamera
ref=ref =>
this.camera = ref;
style = styles.preview
type=RNCamera.Constants.Type.back
flashMode=RNCamera.Constants.FlashMode.on
onBarCodeRead=(e) =>
this.barocode(e)
/>
</View>
);
OnbarcodeRead will call the function this.barocode(e) once it recognizes the barcode. This code is working fine for almost all barcodes types listed in the documentation.
https://www.npmjs.com/package/react-native-camera.
OnbarcodeRead will be undefined if barcodes are not recognized (this won't call the function this.barocode(e)).I want to show an error message that time. Could anyone guide me the way it can be done.
react-native-camera
1
have you tried something yourself?
– Farhana
Nov 16 '18 at 4:13
May you want to read this: stackoverflow.com/help/how-to-ask
– RussellB
Nov 16 '18 at 4:34
@farhana yes , I tried . I have a written a function that would be called when barcodeRead of RNcamera has the data. This works for almost all barcodes types. But there are some barcodes where barcodeRead won't trigger the function attached for it. I read the documentation and it says barcodeRead doesn't do anything if it undefined. So, I want to popup an error message that time saying barcode not detected. Any help for that.
– arvind d r
Nov 16 '18 at 23:53
add a comment |
I am new to React-native. I have a requirement for barcode scanning and I am using react-native-camera for this. I want to show error message to the user when the barcodes are not recognized for some reason.
This is code.
class Scan extends Component {
constructor(props)
super(props);
this.barocode = this.barocode.bind(this);
barocode(e)
if(typeof (e) == 'undefined') // tried this if barcodes are not recognized. This doesn't work.
alert("error");
else
this.camera.pausePreview();
alert(e.data);
render()
return (
<View style=styles.container>
<RNCamera
ref=ref =>
this.camera = ref;
style = styles.preview
type=RNCamera.Constants.Type.back
flashMode=RNCamera.Constants.FlashMode.on
onBarCodeRead=(e) =>
this.barocode(e)
/>
</View>
);
OnbarcodeRead will call the function this.barocode(e) once it recognizes the barcode. This code is working fine for almost all barcodes types listed in the documentation.
https://www.npmjs.com/package/react-native-camera.
OnbarcodeRead will be undefined if barcodes are not recognized (this won't call the function this.barocode(e)).I want to show an error message that time. Could anyone guide me the way it can be done.
react-native-camera
I am new to React-native. I have a requirement for barcode scanning and I am using react-native-camera for this. I want to show error message to the user when the barcodes are not recognized for some reason.
This is code.
class Scan extends Component {
constructor(props)
super(props);
this.barocode = this.barocode.bind(this);
barocode(e)
if(typeof (e) == 'undefined') // tried this if barcodes are not recognized. This doesn't work.
alert("error");
else
this.camera.pausePreview();
alert(e.data);
render()
return (
<View style=styles.container>
<RNCamera
ref=ref =>
this.camera = ref;
style = styles.preview
type=RNCamera.Constants.Type.back
flashMode=RNCamera.Constants.FlashMode.on
onBarCodeRead=(e) =>
this.barocode(e)
/>
</View>
);
OnbarcodeRead will call the function this.barocode(e) once it recognizes the barcode. This code is working fine for almost all barcodes types listed in the documentation.
https://www.npmjs.com/package/react-native-camera.
OnbarcodeRead will be undefined if barcodes are not recognized (this won't call the function this.barocode(e)).I want to show an error message that time. Could anyone guide me the way it can be done.
react-native-camera
react-native-camera
edited Nov 17 '18 at 4:45
arvind d r
asked Nov 16 '18 at 3:59
arvind d rarvind d r
11
11
1
have you tried something yourself?
– Farhana
Nov 16 '18 at 4:13
May you want to read this: stackoverflow.com/help/how-to-ask
– RussellB
Nov 16 '18 at 4:34
@farhana yes , I tried . I have a written a function that would be called when barcodeRead of RNcamera has the data. This works for almost all barcodes types. But there are some barcodes where barcodeRead won't trigger the function attached for it. I read the documentation and it says barcodeRead doesn't do anything if it undefined. So, I want to popup an error message that time saying barcode not detected. Any help for that.
– arvind d r
Nov 16 '18 at 23:53
add a comment |
1
have you tried something yourself?
– Farhana
Nov 16 '18 at 4:13
May you want to read this: stackoverflow.com/help/how-to-ask
– RussellB
Nov 16 '18 at 4:34
@farhana yes , I tried . I have a written a function that would be called when barcodeRead of RNcamera has the data. This works for almost all barcodes types. But there are some barcodes where barcodeRead won't trigger the function attached for it. I read the documentation and it says barcodeRead doesn't do anything if it undefined. So, I want to popup an error message that time saying barcode not detected. Any help for that.
– arvind d r
Nov 16 '18 at 23:53
1
1
have you tried something yourself?
– Farhana
Nov 16 '18 at 4:13
have you tried something yourself?
– Farhana
Nov 16 '18 at 4:13
May you want to read this: stackoverflow.com/help/how-to-ask
– RussellB
Nov 16 '18 at 4:34
May you want to read this: stackoverflow.com/help/how-to-ask
– RussellB
Nov 16 '18 at 4:34
@farhana yes , I tried . I have a written a function that would be called when barcodeRead of RNcamera has the data. This works for almost all barcodes types. But there are some barcodes where barcodeRead won't trigger the function attached for it. I read the documentation and it says barcodeRead doesn't do anything if it undefined. So, I want to popup an error message that time saying barcode not detected. Any help for that.
– arvind d r
Nov 16 '18 at 23:53
@farhana yes , I tried . I have a written a function that would be called when barcodeRead of RNcamera has the data. This works for almost all barcodes types. But there are some barcodes where barcodeRead won't trigger the function attached for it. I read the documentation and it says barcodeRead doesn't do anything if it undefined. So, I want to popup an error message that time saying barcode not detected. Any help for that.
– arvind d r
Nov 16 '18 at 23:53
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53331236%2fhow-an-error-message-can-be-shown-when-barcodes-are-not-recognized-by-rncamera%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53331236%2fhow-an-error-message-can-be-shown-when-barcodes-are-not-recognized-by-rncamera%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
have you tried something yourself?
– Farhana
Nov 16 '18 at 4:13
May you want to read this: stackoverflow.com/help/how-to-ask
– RussellB
Nov 16 '18 at 4:34
@farhana yes , I tried . I have a written a function that would be called when barcodeRead of RNcamera has the data. This works for almost all barcodes types. But there are some barcodes where barcodeRead won't trigger the function attached for it. I read the documentation and it says barcodeRead doesn't do anything if it undefined. So, I want to popup an error message that time saying barcode not detected. Any help for that.
– arvind d r
Nov 16 '18 at 23:53