Created
August 30, 2019 12:47
-
-
Save mdshadman/e83f53f1ea97eaaad2eb5f271207f21c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import Scan from './scan'; | |
import config from '../config'; | |
class CameraContainer extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
camera: false, | |
cameraResult: false, | |
result: null, | |
visionResponse: '', | |
loading: false, | |
googleVisionDetetion: undefined | |
}; | |
} | |
takePicture = async (value) => { | |
if (value) { | |
const options = { quality: 0.5, base64: true }; | |
const data = await value.takePictureAsync(options); | |
console.log(data); | |
this.setState({ | |
cameraResult: true, | |
result: data.base64, | |
camera: false | |
}, () => | |
this.callGoogleVIsionApi(this.state.result)) | |
this.setState({ loading: true }); | |
} | |
}; | |
callGoogleVIsionApi = async (base64) => { | |
let googleVisionRes = await fetch(config.googleCloud.api + config.googleCloud.apiKey, { | |
method: 'POST', | |
body: JSON.stringify({ | |
"requests": [ | |
{ | |
"image": { | |
"content": base64 | |
}, | |
features: [ | |
{ type: "LABEL_DETECTION", maxResults: 10 }, | |
{ type: "LANDMARK_DETECTION", maxResults: 5 }, | |
{ type: "FACE_DETECTION", maxResults: 5 }, | |
{ type: "LOGO_DETECTION", maxResults: 5 }, | |
{ type: "TEXT_DETECTION", maxResults: 5 }, | |
{ type: "DOCUMENT_TEXT_DETECTION", maxResults: 5 }, | |
{ type: "SAFE_SEARCH_DETECTION", maxResults: 5 }, | |
{ type: "IMAGE_PROPERTIES", maxResults: 5 }, | |
{ type: "CROP_HINTS", maxResults: 5 }, | |
{ type: "WEB_DETECTION", maxResults: 5 } | |
], | |
} | |
] | |
}) | |
}); | |
await googleVisionRes.json() | |
.then(googleVisionRes => { | |
console.log(googleVisionRes) | |
if (googleVisionRes) { | |
this.setState( | |
{ | |
loading: false, | |
googleVisionDetetion: googleVisionRes.responses[0] | |
} | |
) | |
console.log('this.is response', this.state.googleVisionDetetion); | |
} | |
}).catch((error) => { console.log(error) }) | |
} | |
activeCamera = () => { | |
this.setState({ | |
camera: true | |
}) | |
} | |
clickAgain = () => { | |
this.setState({ | |
camera: true, | |
googleVisionDetetion: false, | |
loading: false | |
}) | |
} | |
render() { | |
const { camera, cameraResult, result, googleVisionDetetion, loading } = this.state | |
return ( | |
<Scan | |
camera={camera} | |
cameraResult={cameraResult} | |
result={result} | |
clickAgain={this.clickAgain} | |
takePicture={(value) => this.takePicture(value)} | |
activeCamera={this.activeCamera} | |
googleVisionDetetion={googleVisionDetetion} | |
loading={loading} | |
/> | |
); | |
} | |
} | |
export default CameraContainer; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment