53 lines
1.6 KiB
JavaScript
53 lines
1.6 KiB
JavaScript
function toggleWarningDrawer() {
|
|
document.getElementById('#warning-drawer').classList.toggle('shut');
|
|
}
|
|
|
|
function start(url) {
|
|
var gameCode = window.location.hash.substr(1);
|
|
var existingGame = localStorage.getItem("existing-game");
|
|
if (existingGame != null) {
|
|
try {
|
|
existingGame = JSON.parse(existingGame);
|
|
} catch (error) {
|
|
existingGame = null;
|
|
}
|
|
}
|
|
var initialState = {
|
|
url: url,
|
|
gameCode: gameCode == "" ? null : gameCode,
|
|
existingGame: existingGame,
|
|
seed: new Date().getTime().toString(), // Doesn't like int flags, change when that changes.
|
|
browserNotificationsSupported: ("Notification" in window)
|
|
};
|
|
|
|
var game = Elm.MassiveDecks.fullscreen(initialState);
|
|
|
|
game.ports.existingGame.subscribe(function (gameCodeAndSecret) {
|
|
if (gameCodeAndSecret != null) {
|
|
localStorage.setItem("existing-game", JSON.stringify(gameCodeAndSecret))
|
|
window.history.replaceState(null, "", "/#" + gameCodeAndSecret.gameCode);
|
|
} else {
|
|
window.history.replaceState(null, "", "/");
|
|
localStorage.removeItem("existing-game");
|
|
}
|
|
});
|
|
|
|
game.ports.qr.subscribe(function (idAndValue) {
|
|
new QRCode(document.getElementById('#' + idAndValue.id), {
|
|
text: idAndValue.value,
|
|
width: 200,
|
|
height: 200
|
|
});
|
|
});
|
|
|
|
game.ports.requestPermission.subscribe(function (nothing) {
|
|
Notification.requestPermission(function (permission) {
|
|
game.ports.permissions.send(permission);
|
|
});
|
|
});
|
|
|
|
game.ports.notifications.subscribe(function (notification) {
|
|
new Notification(notification.title, {icon: notification.icon});
|
|
});
|
|
}
|