93 lines
2 KiB
JavaScript
93 lines
2 KiB
JavaScript
import * as ListSelector from GUI.ListSelector;
|
|
import Games;
|
|
import I18n;
|
|
import Messaging;
|
|
import players from Room;
|
|
import dialog from GUI.Screen;
|
|
import * as Dom from UnitJS.Dom;
|
|
|
|
var list = ListSelector.make('games', showGame);
|
|
//initMessageHandlers();
|
|
|
|
return {
|
|
refresh: refresh
|
|
};
|
|
|
|
/*
|
|
function entry(key, config) {
|
|
return {
|
|
key: key,
|
|
vs: config.vs,
|
|
yourTurn: config.yourTurn,
|
|
date: config.date
|
|
};
|
|
}
|
|
|
|
function initMessageHandlers() {
|
|
Messaging.addEventListener(["Game"], function(o) {
|
|
var sessionKey = Session.getKey();
|
|
Games.entries.insert(o.state.gameID, Games.entry(o.state));
|
|
});
|
|
}
|
|
*/
|
|
|
|
function showGame(game) {
|
|
var liContent;
|
|
if(game.key.match(/^Player#/)) { // Game proposals use the ID of the opponent as ID
|
|
liContent = gameProposal(game);
|
|
} else {
|
|
liContent = pendingGame(game);
|
|
}
|
|
return Dom.make('li', {}, liContent);
|
|
}
|
|
|
|
function gameProposal(game) {
|
|
var properties = {
|
|
textContent: I18n.get('proposedGame')(game.yourTurn, game.vs.name),
|
|
};
|
|
if(game.yourTurn) {
|
|
properties.onClick = answerDialog(game.vs.id);
|
|
properties.class = 'clickable';
|
|
}
|
|
return [Dom.make('span', properties)];
|
|
}
|
|
|
|
function pendingGame(game) {
|
|
var status = players.get(game.vs.id) != undefined ? 'active' : 'inactive'
|
|
return [
|
|
Dom.make('span', { textContent: status}),
|
|
Dom.make('a', {
|
|
textContent: I18n.get('pendingGame')(game.yourTurn, game.vs.name),
|
|
href: '/game/' + game.key
|
|
})
|
|
];
|
|
}
|
|
|
|
function answer(key, accept) {
|
|
return function() {
|
|
Messaging.send({tag: "Answer", accept: accept, to: key});
|
|
Games.entries.remove(key);
|
|
refresh();
|
|
}
|
|
}
|
|
|
|
function answerDialog(key) {
|
|
return function() {
|
|
dialog({
|
|
text: I18n.get('questionAccept'),
|
|
answers: [
|
|
{label: 'accept', action: answer(key, true)},
|
|
{label: 'decline', action: answer(key, false)},
|
|
{label: 'notYet', action: function() {}}
|
|
]
|
|
});
|
|
};
|
|
}
|
|
|
|
function refresh() {
|
|
var sortedGames = Games.entries.getAll();
|
|
list.refresh(sortedGames);
|
|
if(sortedGames.length < 1) {
|
|
list.message.textContent = I18n.get('noGames');
|
|
}
|
|
}
|