-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathNavigator.js
92 lines (87 loc) · 2.22 KB
/
Navigator.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
const os = require('os');
const {
getGamepads,
getHMDType,
} = require('./VR.js');
const {
nativeAudio: {
MicrophoneMediaStream,
},
nativeVideo: {
VideoDevice,
},
nativeWindow,
} = require('./native-bindings');
const symbols = require('./symbols');
const GlobalContext = require('./GlobalContext');
function getUserMedia(constraints) {
if (constraints.audio) {
return Promise.resolve(new MicrophoneMediaStream());
} else if (constraints.video) {
const dev = new VideoDevice();
dev.constraints = constraints.video;
return Promise.resolve(dev);
} else {
return Promise.reject(new Error('constraints not met'));
}
}
class MediaDevices {
constructor() {
this.getUserMedia = getUserMedia;
}
enumerateDevices() {
let deviceIds = 0;
let groupIds = 0;
return Promise.resolve([
{
deviceId: (++deviceIds) + '',
groupId: (++groupIds) + '',
kind: 'audioinput',
label: 'Microphone',
},
]);
}
}
module.exports.MediaDevices = MediaDevices;
class Clipboard {
read() {
return Promise.resolve(); // TODO
}
readText() {
return new Promise(resolve => {
resolve(nativeWindow.getClipboard().slice(0, 256));// why do we slice this?
});
}
write() {
return Promise.resolve(); // TODO
}
writeText(clipboardContents) {
return new Promise(resolve => {
nativeWindow.setClipboard(clipboardContents);
resolve();
});
}
}
module.exports.Clipboard = Clipboard;
class Navigator {
constructor() {
this.userAgent = `Mozilla/5.0 (OS) AppleWebKit/999.0 (KHTML, like Gecko) Chrome/999.0.0.0 Safari/999.0 Exokit/${GlobalContext.version}`;
this.vendor = 'Exokit';
this.platform = os.platform();
this.hardwareConcurrency = os.cpus().length;
this.appCodeName = 'Mozilla';
this.appName = 'Netscape';
this.appVersion = '5.0';
this.language = 'en-US';
this.mediaDevices = new MediaDevices();
this.clipboard = new Clipboard();
this.webkitGetUserMedia = getUserMedia; // for feature detection
}
getVRDisplaysSync() {
return getHMDType() ? [window[symbols.mrDisplaysSymbol].vrDisplay] : [];
}
getGamepads() {
return getGamepads();
}
}
module.exports.Navigator = Navigator;