From d3e7b73e1d30c4a5082a279599ec337a14df3609 Mon Sep 17 00:00:00 2001 From: jbion Date: Fri, 20 Jan 2017 19:47:42 +0100 Subject: Remove conflicting old index --- backend/src/main/resources/static/app.js | 90 ---------------------------- backend/src/main/resources/static/index.html | 64 -------------------- 2 files changed, 154 deletions(-) delete mode 100644 backend/src/main/resources/static/app.js delete mode 100644 backend/src/main/resources/static/index.html (limited to 'backend') diff --git a/backend/src/main/resources/static/app.js b/backend/src/main/resources/static/app.js deleted file mode 100644 index 0d68d2ef..00000000 --- a/backend/src/main/resources/static/app.js +++ /dev/null @@ -1,90 +0,0 @@ -var stompClient = null; - -function setConnected(connected) { - $("#connect").prop("disabled", connected); - $("#disconnect").prop("disabled", !connected); - if (connected) { - $("#game-list").show(); - } else { - $("#game-list").hide(); - } - $("#greetings").html(""); -} - -function connect() { - var socket = new SockJS('/seven-wonders-websocket'); - stompClient = Stomp.over(socket); - stompClient.connect({}, function (frame) { - setConnected(true); - console.log('Connected: ' + frame); - - stompClient.subscribe('/user/queue/errors', function (msg) { - var error = JSON.parse(msg.body); - console.error(error); - }); - - stompClient.subscribe('/topic/games', function (msg) { - var games = JSON.parse(msg.body); - console.log("Received new games: " + games); - for (var i = 0; i < games.length; i++) { - addNewGame(games[i]); - } - }); - - stompClient.subscribe('/user/queue/join-game', function (msg) { - var game = JSON.parse(msg.body); - console.log("Joined game: " + game); - addNewPlayer(game); - }); - }); -} - -function disconnect() { - if (stompClient !== null) { - stompClient.disconnect(); - } - setConnected(false); - console.log("Disconnected"); -} - -function sendCreateGame(gameName, playerName) { - stompClient.send("/app/lobby/create-game", {}, JSON.stringify({ - 'gameName': gameName, - 'playerName': playerName - })); -} - -function sendJoinGame(gameName, playerName) { - stompClient.send("/app/lobby/join-game", {}, JSON.stringify({ - 'gameName': gameName, - 'playerName': playerName - })); -} - -function addNewGame(game) { - console.log(game); - $("#game-list-content").append('' + game.name + ''); - $("#join-" + game.id).click(function () { - sendJoinGame(game.name, $("#player-name-field").val()); - }); -} - -function addNewPlayer(player) { - console.log(player); -} - -$(function () { - $("form").on('submit', function (e) { - e.preventDefault(); - }); - $("#connect").click(function () { - connect(); - }); - $("#disconnect").click(function () { - disconnect(); - }); - $("#create-game").click(function () { - sendCreateGame($("#game-name-field").val(), $("#player-name-field").val()); - }); -}); \ No newline at end of file diff --git a/backend/src/main/resources/static/index.html b/backend/src/main/resources/static/index.html deleted file mode 100644 index d5ec178d..00000000 --- a/backend/src/main/resources/static/index.html +++ /dev/null @@ -1,64 +0,0 @@ - - - - Seven Wonders - - - - - - - - - - -

Seven Wonders

- -

This is a stub index page for the project, for the sake of vertical completeness. We will soon get to work on it!

- -Go to WS test page - - -

Connection

- -
-
- - - -
-
- -

Games

- -
-
- - -
-
- - - - - - - - - - -
Id
- -
-
- - - -
-
- - - \ No newline at end of file -- cgit