-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
271 additions
and
1 deletion.
There are no files selected for viewing
214 changes: 214 additions & 0 deletions
214
packages/components/document-capture/DocumentCapture.js
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,214 @@ | ||
import './id-capture/src' | ||
import './id-review/src' | ||
import './document-instructions/src' | ||
import { SmartCamera } from "../domain/camera/SmartCamera"; | ||
import { IMAGE_TYPE } from "../domain/Constants"; | ||
import { version as COMPONENTS_VERSION } from "../package.json"; | ||
import styles from '../styles'; | ||
|
||
async function getPermissions(captureScreen) { | ||
try { | ||
await SmartCamera.getMedia({ | ||
audio: false, | ||
video: { | ||
facingMode: 'environment', | ||
width: { min: 1280 }, | ||
// NOTE: Special case for multi-camera Samsung devices (learnt from Acuant) | ||
// "We found out that some triple camera Samsung devices (S10, S20, Note 20, etc) capture images blurry at edges. | ||
// Zooming to 2X, matching the telephoto lens, doesn't solve it completely but mitigates it." | ||
zoom: SmartCamera.isSamsungMultiCameraDevice() ? 2.0 : 1.0, | ||
}, | ||
}); | ||
captureScreen.removeAttribute('data-camera-error'); | ||
captureScreen.setAttribute('data-camera-ready', true); | ||
} catch (error) { | ||
captureScreen.removeAttribute('data-camera-ready'); | ||
captureScreen.setAttribute('data-camera-error', SmartCamera.handleError(error)); | ||
} | ||
} | ||
|
||
class DocumentCapture extends HTMLElement { | ||
constructor() { | ||
super(); | ||
this.activeScreen = null; | ||
} | ||
|
||
connectedCallback() { | ||
this.innerHTML = ` | ||
${styles} | ||
<div> | ||
<document-instruction ${this.documentCaptureModes} ${this.showNavigation} ${this.hideInstructions ? 'hidden' : ''}></document-instruction> | ||
<id-capture side-of-id='Front' | ||
${this.title} ${this.showNavigation} ${this.hideInstructions ? '' : 'hidden'} | ||
${this.documentCaptureModes} | ||
></id-capture> | ||
<document-instruction id='document-instruction-back' ${this.documentCaptureModes} ${this.showNavigation} hidden></document-instruction> | ||
<id-capture id='back-of-id' side-of-id='Back' ${this.title} ${this.showNavigation} | ||
${this.documentCaptureModes} | ||
hidden | ||
></id-capture> | ||
<id-review hidden></id-review> | ||
<id-review id='back-of-id-review' hidden></id-review> | ||
</div> | ||
`; | ||
|
||
console.log("documentCaptureModes", this.documentCaptureModes); | ||
|
||
this._data = { | ||
images: [], | ||
meta: { | ||
libraryVersion: COMPONENTS_VERSION, | ||
}, | ||
}; | ||
|
||
this.documentInstruction = this.querySelector('document-instruction'); | ||
this.documentInstructionBack = this.querySelector('#document-instruction-back'); | ||
this.idCapture = this.querySelector('id-capture'); | ||
this.idReview = this.querySelector('id-review'); | ||
this.idCaptureBack = this.querySelector('#back-of-id'); | ||
this.backOfIdReview = this.querySelector('#back-of-id-review'); | ||
this.thankYouScreen = this.querySelector('thank-you'); | ||
|
||
if (this.hideInstructions) { | ||
getPermissions(this.idCapture); | ||
this.setActiveScreen(this.idCapture); | ||
} else { | ||
this.setActiveScreen(this.documentInstruction); | ||
} | ||
|
||
this.setUpEventListeners(); | ||
} | ||
disconnectedCallback() { | ||
SmartCamera.stopMedia(); | ||
if (this.activeScreen) { | ||
this.activeScreen.removeAttribute('hidden'); | ||
} | ||
this.activeScreen = null; | ||
this.innerHTML = ''; | ||
} | ||
|
||
setUpEventListeners() { | ||
this.documentInstruction.addEventListener('DocumentInstruction::StartCamera', async () => { | ||
this.setActiveScreen(this.idCapture); | ||
await getPermissions(this.idCapture); | ||
}); | ||
this.documentInstruction.addEventListener('DocumentInstruction::DocumentChange', async (event) => { | ||
this.idReview.setAttribute('data-image', event.detail.image); | ||
this._data.images.push({ | ||
image: event.detail.image.split(',')[1], | ||
image_type_id: IMAGE_TYPE.ID_CARD_IMAGE_BASE64, | ||
}); | ||
this.setActiveScreen(this.idReview); | ||
}); | ||
|
||
this.idCapture.addEventListener('IDCapture::ImageCaptured', (event) => { | ||
this.idReview.setAttribute('data-image', event.detail.image); | ||
this._data.images.push({ | ||
image: event.detail.image.split(',')[1], | ||
image_type_id: IMAGE_TYPE.ID_CARD_IMAGE_BASE64, | ||
}); | ||
SmartCamera.stopMedia(); | ||
this.setActiveScreen(this.idReview); | ||
}); | ||
|
||
this.idReview.addEventListener('IdReview::ReCaptureID', async () => { | ||
this.idReview.removeAttribute('data-image'); | ||
this._data.images.pop(); | ||
if (this.hideInstructions) { | ||
this.setActiveScreen(this.idCapture); | ||
await getPermissions(this.idCapture); | ||
}else { | ||
this.setActiveScreen(this.documentInstruction); | ||
} | ||
}); | ||
|
||
this.idReview.addEventListener('IdReview::SelectImage', async () => { | ||
if (this.hideBackOfId) { | ||
this._publishSelectedImages(); | ||
} else if (this.hideInstructions) { | ||
this.setActiveScreen(this.idCaptureBack); | ||
await getPermissions(this.idCaptureBack); | ||
} else { | ||
this.setActiveScreen(this.documentInstructionBack); | ||
} | ||
}); | ||
|
||
this.documentInstructionBack.addEventListener('DocumentInstruction::StartCamera', async () => { | ||
this.setActiveScreen(this.idCaptureBack); | ||
await getPermissions(this.idCaptureBack); | ||
}); | ||
|
||
this.documentInstructionBack.addEventListener('DocumentInstruction::DocumentChange', async (event) => { | ||
console.log("image", event.detail.image); | ||
this.idReview.setAttribute('data-image', event.detail.image); | ||
this._data.images.push({ | ||
image: event.detail.image.split(',')[1], | ||
image_type_id: IMAGE_TYPE.ID_CARD_BACK_IMAGE_BASE64, | ||
}); | ||
this.setActiveScreen(this.backOfIdReview); | ||
}); | ||
this.idCaptureBack.addEventListener('IDCapture::ImageCaptured', (event) => { | ||
this.backOfIdReview.setAttribute('data-image', event.detail.image); | ||
this._data.images.push({ | ||
image: event.detail.image.split(',')[1], | ||
image_type_id: IMAGE_TYPE.ID_CARD_BACK_IMAGE_BASE64, | ||
}); | ||
this.setActiveScreen(this.backOfIdReview); | ||
SmartCamera.stopMedia(); | ||
}); | ||
|
||
this.backOfIdReview.addEventListener('IdReview::ReCaptureID', async (event) => { | ||
this.backOfIdReview.removeAttribute('data-image'); | ||
this._data.images.pop(); | ||
if (this.hideInstructions) { | ||
this.setActiveScreen(this.idCaptureBack); | ||
await getPermissions(this.idCaptureBack); | ||
}else { | ||
this.setActiveScreen(this.documentInstructionBack); | ||
} | ||
}); | ||
|
||
this.backOfIdReview.addEventListener('IdReview::SelectImage', () => { | ||
this._publishSelectedImages(); | ||
}); | ||
} | ||
_publishSelectedImages() { | ||
this.dispatchEvent( | ||
new CustomEvent('imagesComputed', { detail: this._data }), | ||
); | ||
} | ||
|
||
|
||
get hideInstructions() { | ||
return this.hasAttribute('hide-instructions'); | ||
} | ||
|
||
get hideBackOfId() { | ||
return this.hasAttribute('hide-back-of-id'); | ||
} | ||
|
||
get showNavigation() { | ||
return this.hasAttribute('show-navigation') ? 'show-navigation' : ''; | ||
} | ||
|
||
get title() { | ||
return this.hasAttribute('title') ? `title=${this.getAttribute('title')}` : ''; | ||
} | ||
|
||
|
||
get documentCaptureModes() { | ||
return this.hasAttribute('document-capture-modes') ? `document-capture-modes='${this.getAttribute('document-capture-modes')}'` : ''; | ||
} | ||
|
||
setActiveScreen(screen) { | ||
this.activeScreen?.setAttribute('hidden', ''); | ||
screen.removeAttribute('hidden'); | ||
this.activeScreen = screen; | ||
} | ||
} | ||
|
||
if ('customElements' in window && !customElements.get('document-capture')) { | ||
customElements.define('document-capture', DocumentCapture); | ||
} | ||
|
||
export { DocumentCapture }; |
52 changes: 52 additions & 0 deletions
52
packages/components/document-capture/DocumentCapture.stories.js
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import "./index"; | ||
|
||
const meta = { | ||
component: "document-capture", | ||
}; | ||
|
||
export default meta; | ||
|
||
export const DocumentCapture = { | ||
render: () => ` | ||
<document-capture | ||
> | ||
</document-capture> | ||
`, | ||
} | ||
|
||
export const DocumentCaptureHiddenInstructions = { | ||
render: () => ` | ||
<document-capture | ||
hide-instructions | ||
> | ||
</document-capture> | ||
`, | ||
} | ||
|
||
export const DocumentCaptureHideBackOfId = { | ||
render: () => ` | ||
<document-capture | ||
hide-back-of-id | ||
> | ||
</document-capture> | ||
`, | ||
} | ||
|
||
export const DocumentCaptureAllowAttributes = { | ||
render: () => ` | ||
<document-capture | ||
document-capture-modes='camera,upload' | ||
> | ||
</document-capture> | ||
`, | ||
} | ||
|
||
export const DocumentCaptureHideInstructionNBackOfId = { | ||
render: () => ` | ||
<document-capture | ||
hide-back-of-id | ||
hide-instructions | ||
> | ||
</document-capture> | ||
`, | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export { | ||
DocumentCapture | ||
} from './DocumentCapture'; |
This file contains 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