-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (35 loc) · 1.22 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>SET!</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="styles.css">
<script src="main.js"></script>
</head>
<body>
<noscript>This game requires JavaScript.</noscript>
<script>
"use strict";
const LOCAL_STORAGE_PREFIX = "set-card-game";
const playerNamesKey = LOCAL_STORAGE_PREFIX + ".player-names";
const colorsKey = LOCAL_STORAGE_PREFIX + ".colors";
const playerNames = localStorage.getItem(playerNamesKey);
const colors = localStorage.getItem(colorsKey);
const app = Elm.Main.init({
flags: {
playerNames: playerNames ? JSON.parse(playerNames) : null,
colors: colors ? JSON.parse(colors) : null,
}
});
app.ports.playerNamesPort.subscribe(data => {
localStorage.setItem(playerNamesKey, JSON.stringify(data))
});
app.ports.colorsPort.subscribe(data => {
localStorage.setItem(colorsKey, JSON.stringify(data))
});
app.ports.consoleLogPort.subscribe(console.log);
app.ports.consoleErrPort.subscribe(console.error);
</script>
</body>
</html>