How an error message can be shown when barcodes are not recognized by RNcamera ( react-native-camera)










0















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.










share|improve this question



















  • 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















0















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.










share|improve this question



















  • 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













0












0








0








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.










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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












  • 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












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
);



);













draft saved

draft discarded


















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















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Top Tejano songwriter Luis Silva dead of heart attack at 64

ReactJS Fetched API data displays live - need Data displayed static

Evgeni Malkin