-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (50 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Usar datos del preload script con Electron</title>
<link rel="stylesheet" href="./src/css/style.css">
</head>
<body>
<h1></h1>
<form>
<label for="file">Texto:</label>
<textarea name="file" id="file" cols="30" rows="7"></textarea>
<br>
<button id="readbutton">Leer archivo</button>
<button id="savebutton">Guardar archivo</button>
</form>
<p id="foo"></p>
<p id="version"></p>
<p id="suma"></p>
<button id="randomStringButton">Mostrar un string aleatorio</button>
<script>
const h1 = document.querySelector('h1');
h1.innerText = `Bienvenidos a ${appName}`;
const foo = document.getElementById('foo');
foo.innerText = `Usamos node versión ${nodeData.foo}`;
const version = document.getElementById('version');
version.innerText = `Usamos node versión ${nodeData.node()}`;
const suma = document.getElementById('suma');
suma.innerText = `La suma de 3 y 9 da ${nodeData.sum(3, 9)}`;
document.getElementById('readbutton').addEventListener('click', function (e) {
e.preventDefault();
restoreFile();
});
document.getElementById('savebutton').addEventListener('click', function (e) {
e.preventDefault();
let text = document.getElementById('file').value;
doSaveFile(text).then(() => console.log('salvado!!') );
});
function restoreFile() {
doReadFile().then(text => document.getElementById('file').value = text);
}
restoreFile();
document.getElementById('randomStringButton').addEventListener('click', function (e) {
doRandomString().then(randomString => alert(randomString));
});
</script>
</body>
</html>