-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
107 lines (107 loc) · 3.61 KB
/
script.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
async function backFromBackground(){
window.addEventListener("focus",()=>{
return true;
})
}
function deleteData(){
local_db.delete()
.then(()=>{
console.log('Database successfully deleted');
})
.catch((error)=>{
console.error(error);
})
}
const QrcodeStream = window.VueQrcodeReader.QrcodeStream;
new Vue({
el:'#app',
components:{
'qrcode-stream':QrcodeStream,
},
data:{
result:'',
error:'',
camera: 'auto',
JTFPause:false,
DPause:false,
FullscreenChange:true
},
methods:{
async onInit(promise){
try{
await promise
}catch(error){
if (error.name === 'NotAllowedError') {
this.error = "ERROR: カメラへのアクセス権を付与する必要があります。"
} else if (error.name === 'NotFoundError') {
this.error = "ERROR: この端末にはカメラはありません。"
} else if (error.name === 'NotSupportedError') {
this.error = "ERROR: HTTPSやlocalhostのようなセキュリティー環境が必要です。"
} else if (error.name === 'NotReadableError') {
this.error = "ERROR: カメラを既に使用していますか?"
} else if (error.name === 'OverconstrainedError') {
this.error = "ERROR: カメラが適切ではありません。"
} else if (error.name === 'StreamApiNotSupportedError') {
this.error = "ERROR: このブラウザではStream APIがサポートされていません。"
} else if (error.name === 'OverconstrainedError'&&this.camera === 'auto'){
this.error = "ERROR: お使いの端末には前面カメラが搭載されていないようです。"
} else if (error.name === 'OverconstrainedError'&&this.camera === 'rear'){
this.error = "ERROR: お使いの端末には背面カメラがないようです。"
}
}finally{
if(await backFromBackground()){
this.camera = auto;
}
}
},
async onDecode(result){
this.result=result;
if(this.result !==null){
local_db.Visitors.get(result)
.then((visitor)=>{
if(visitor.name !== null){
console.log('処理開始'+ visitor.place);
var LAE = document.getElementById("LA");
LAE.innerText = visitor.name + '、' + visitor.place;
this.JTFPause = true;
this.pause();
setTimeout(()=>{
this.unpause()
this.JTFPause = false
LAE.innerText = '';
},1000);
}
})
.catch((error)=>{
console.error(error);
this.DPause = true
this.pause();
setTimeout(()=>{
this.unpause()
this.DPause =false
},1000)
})
}
},
onFullChange(){
$("#Change").toggleClass("normal","fullscreen");
this.FullscreenChange = true;
},
onDefaultChange(){
$("#Change").toggleClass("normal","fullscreen");
this.FullscreenChange=false;
},
unpause(){
this.camera = 'auto';
},
pause(){
this.camera = 'off';
},onFrontChange(){
if(this.camera == 'auto'||this.camera == 'off'){
this.camera = 'front'
}else{
this.camera = 'auto'
}
},
}
})