Skip to content

Instantly share code, notes, and snippets.

@sktwentysix
Last active August 28, 2021 15:04
Show Gist options
  • Save sktwentysix/a54bb659cb07099291b5b441d19460e4 to your computer and use it in GitHub Desktop.
Save sktwentysix/a54bb659cb07099291b5b441d19460e4 to your computer and use it in GitHub Desktop.
medium-ocr-react-01
.app {
display: grid;
grid-template-columns: auto auto auto auto;
justify-content: space-between;
justify-items: center;
}
.header {
grid-column-start: 1;
grid-column-end: 5;
justify-self: stretch;
align-self: start;
text-align: center;
padding: 24px;
}
.hero {
grid-column-start: 1;
grid-column-end: 5;
padding: 16px;
}
.results {
grid-column-start: 1;
grid-column-end: 5;
padding: 16px;
}
.results .results__result {
display: flex;
border-bottom: 1px solid grey;
padding-bottom: 8px;
margin-bottom: 8px;
}
.button {
width: 100%;
background: #61dafb;
border-radius: 4px;
padding: 8px;
border: none;
cursor: pointer;
font-size: 12px;
color: white;
font-weight: bold;
}
.button:hover, .button:active {
background: #54bedb
}
.fileUploaderContainer {
overflow: hidden;
display: block;
position: relative;
color: #777777;
padding: 8px;
margin-bottom: 8px;
border: 3px dashed #777777;
border-radius: 8px;
}
.fileUploaderContainer [type=file] {
display: block;
position: absolute;
top: 0;
right: 0;
min-height: 100%;
min-width: 100%;
font-size: 999px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
cursor: pointer;
}
import React, { Component } from 'react';
import './App.css';
var Tesseract = window.Tesseract;
class App extends Component {
render() {
return (
<div className="app">
<header className="header">
<h1>My OCR App</h1>
</header>
{ /* File uploader */ }
<section className="hero">
<label className="fileUploaderContainer">
Click here to upload documents
<input type="file" id="fileUploader" multiple />
</label>
<div>
{ /* Previews will be shown here */ }
</div>
<button className="button">Generate</button>
</section>
{ /* Results */ }
<section className="results">
<div className="results__result">
<div className="results__result__image">
<img width="250px" />
</div>
<div className="results__result__info">
<div className="results__result__info__codes">
<small>{ /* Confidence score */ }</small>
</div>
<div className="results__result__info__codes">
<small>{ /* Pattern output */ }</small>
</div>
<div className="results__result__info__text">
<small>{ /* Full output */ }</small>
</div>
</div>
<hr />
</div>
<div className="results__result">
{ /* Additional output if more than one document is processed */ }
</div>
</section>
</div>
)
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment