-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathsnapshot.js
58 lines (54 loc) · 2 KB
/
snapshot.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import React, { Component } from 'react';
import ReactNative, {
UIManager,
} from 'react-native'
import RNFS from 'react-native-fs'
const tmpdir = RNFS.DocumentDirectoryPath
const path = process.path
export default (Subject)=>{
return class extends Component{
componentDidMount(){
const reference = this.props.reference
requestAnimationFrame(()=>{
if(!reference){
const refpath = `${tmpdir}/${Subject.displayName}.ref.png`
console.log(`snapshotting ${refpath}`)
UIManager.takeSnapshot('window', {format: 'png'})
.then(path=>RNFS.unlink(refpath)
.catch(()=>{})
.then(RNFS.moveFile(path, refpath))
.then((success)=>{
console.log("Snapshotted:", refpath)
this.props.onSnapshot(refpath)
}))
.catch((err)=>{
console.log("Error reference snapshot", err)
})
}else{
const targetpath = `${tmpdir}/${Subject.displayName}.png`
console.log(`snapshotting ${targetpath}`)
UIManager.takeSnapshot('window', {format: 'png'})
.then(path=>RNFS.unlink(targetpath)
.catch(()=>{})
.then(RNFS.moveFile(path, targetpath))
.then((success)=>{
Promise.all([
RNFS.readFile(reference, 'base64'),
RNFS.readFile(targetpath, 'base64'),
]).then(([refdata, imgdata])=>{
this.props.onCompared(imgdata==refdata)
}).catch((err)=>{
console.log('error', err)
})
}))
.catch((err)=>{
console.log("Error in compare snapshot", err)
})
}
})
}
render(){
return <Subject />
}
}
}