Skip to content

Commit 0f50d2a

Browse files
committed
First step in moving to webpack. #184
1 parent 19d2b1e commit 0f50d2a

21 files changed

+1071
-1038
lines changed

app/assets/javascript/backend.js

-248
This file was deleted.

app/assets/javascript/battles/battlelistui.js

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
const webclient = require("../webclient")
2+
const webclientUI = require("../frontend")
3+
const $ = require("jquery");
4+
15
function BattleList() {
26
this.ids = {};
37
}
@@ -84,3 +88,5 @@ $(function() {
8488
webclientUI.battles.startObserving(webclient.battles);
8589
webclientUI.battles.element = $("#battlelist");
8690
});
91+
92+
module.exports = BattleList;

app/assets/javascript/battles/battles.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
const observable = require("riot-observable")
2+
const $ = require("jquery");
3+
const webclient = require("../webclient");
4+
15
function Battles() {
2-
$.observable(this);
6+
observable(this);
37

48
this.battles = {};
59
this.battleList = {};
@@ -159,3 +163,5 @@ $(function() {
159163
this.removePlayer(id);
160164
});
161165
});
166+
167+
module.exports = Battles;

app/assets/javascript/channellistui.js app/assets/javascript/channels/channellistui.js

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
const webclient = require("../webclient");
2+
13
function ChannelList() {
24
this.ids = {};
35
this.chanevents = {};
@@ -187,3 +189,5 @@ $(function() {
187189
}
188190
});
189191
});
192+
193+
module.exports = ChannelList;

app/assets/javascript/channels.js app/assets/javascript/channels/channels.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
const observable = require("riot-observable")
2+
13
function ChannelData(id, name) {
2-
$.observable(this);
4+
observable(this);
35

46
this.players = {};
57
this.name = name || "";
@@ -45,7 +47,7 @@ ChannelData.prototype.changeName = function(name) {
4547
};
4648

4749
function ChannelHolder() {
48-
$.observable(this);
50+
observable(this);
4951

5052
this.joinedChannels = [];
5153
this.channels = {};
@@ -182,3 +184,5 @@ ChannelHolder.prototype.leaveChannel = function(id) {
182184
console.log("Channel not joined: " + id);
183185
}
184186
};
187+
188+
module.exports = ChannelHolder;

0 commit comments

Comments
 (0)