-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
126 lines (110 loc) · 3.44 KB
/
index.html
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<title>Hyperbeam AudioContext example</title>
<style>
body {
font-family: sans-serif;
}
.toolbar {
display: flex;
justify-content: center;
align-items: center;
}
.toolbar > .group {
display: flex;
align-items: center;
margin: 0 10px;
}
#cloudComputerDiv {
position: fixed;
inset: 0;
top: 50px;
}
</style>
</head>
<body>
<div>
<div class="toolbar">
<div class="group">
Zoom:
<input
type="range"
name="zoom"
id="zoom"
min="0.1"
max="2"
value="1"
step="0.1"
/>
</div>
<div class="group">
<input
type="radio"
id="radio-origin"
name="scope"
value="per-origin"
checked
/>
<label for="radio-origin">per-origin</label>
</div>
<div class="group">
<input type="radio" id="radio-tab" name="scope" value="per-tab" />
<label for="radio-tab">per-tab</label>
</div>
</div>
<div id="cloudComputerDiv"></div>
</div>
<script type="module">
import Hyperbeam from "https://unpkg.com/@hyperbeam/web@latest/dist/index.js";
async function main() {
const resp = await fetch("/computer");
const data = await resp.json();
const hb = await Hyperbeam(cloudComputerDiv, data.embed_url);
const zoomInput = document.getElementById("zoom");
const radioBtns = document.getElementsByName("scope");
let tabId;
const zoomFactor = await hb.tabs.getZoom();
zoomInput.value = zoomFactor;
const zoomSettings = await hb.tabs.getZoomSettings();
updateZoomScope(zoomSettings.scope);
for (const radioBtn of radioBtns) {
radioBtn.addEventListener("change", setZoomScope);
}
zoomInput.addEventListener("input", (e) => {
hb.tabs.setZoom(Number(e.target.value));
});
// Note this function may fire for tabs that are not activated
// You should check if the tabIds match
hb.tabs.onZoomChange.addListener((info) => {
if (!tabId || tabId === info.tabId) {
zoomInput.value = info.newZoomFactor;
updateZoomScope(info.zoomSettings.scope);
}
});
// Note that each tab can have different zoom values and settings
hb.tabs.onActivated.addListener(async (info) => {
tabId = info.tabId;
zoomInput.value = await hb.tabs.getZoom(tabId);
const zoomSettings = await hb.tabs.getZoomSettings(tabId);
updateZoomScope(zoomSettings.scope);
});
function setZoomScope(e) {
hb.tabs.setZoomSettings({
// defaultZoomFactor just sets the value returned by getZoomSettings()
// https://developer.chrome.com/docs/extensions/reference/tabs/#type-ZoomSettings
// https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/tabs/ZoomSettings
defaultZoomFactor: 1.5,
scope: e.target.value,
});
}
function updateZoomScope(scope) {
for (const radioBtn of radioBtns) {
radioBtn.checked = scope === radioBtn.value;
}
}
}
main();
</script>
</body>
</html>