Fix: player list manager, button style

This commit is contained in:
2018-10-30 17:58:10 +09:00
parent d7d6fd80d5
commit d3537128a3
5 changed files with 232 additions and 128 deletions
+5 -7
View File
@@ -22,6 +22,9 @@ function PlayerList(tagDiv, playerListManager) {
this.listRows = new Array();
for(var i = 0; i < id_list.length; i++) {
// console.log(playerEditButtonList[i]);
// console.log(playerDeleteButtonList[i]);
this.listRows[i] = new PlayerListRow(
id_list[i].getElementsByClassName("player_id"),
id_list[i].getElementsByClassName("player_name"),
@@ -30,6 +33,8 @@ function PlayerList(tagDiv, playerListManager) {
id_list[i].getElementsByClassName("player_delete")
);
$(this.listRows[i].playerID).empty();
$(this.listRows[i].editButton).click(function() {
playerListManager.editPlayer(this);
})
@@ -37,19 +42,14 @@ function PlayerList(tagDiv, playerListManager) {
$(this.listRows[i].deleteButton).click(function() {
playerListManager.deletePlayer(this);
})
// console.log(this.listRows[i]);
// console.log(this.listRows[i].playerName.val());
this.disableItem(this.listRows[i]);
}
}
PlayerList.prototype.disableItem = function(item) {
$(item.playerID).empty();
$(item.playerName).prop("disabled", true);
$(item.enterCode).prop("disabled", true);
// $(item.playerName).prop("readonly", true);
// $(item.enterCode).prop("readonly", true);
$(item.editButton).prop("disabled", true);
$(item.deleteButton).prop("disabled", true);
}
@@ -57,8 +57,6 @@ PlayerList.prototype.disableItem = function(item) {
PlayerList.prototype.enableItem = function(item) {
$(item.playerName).prop("disabled", false);
$(item.enterCode).prop("disabled", false);
// $(item.playerName).prop("readonly", false);
// $(item.enterCode).prop("readonly", false);
$(item.editButton).prop("disabled", false);
$(item.deleteButton).prop("disabled", false);
}
+28 -13
View File
@@ -72,6 +72,8 @@ PlayerListManager.prototype.updateAddPlayerListPage = function(pageNo) {
"maestro_id=" + maestroID + "&start_no=" + startNo + "&end_no=" + endNo,
(function(jsonData) {
console.log("updateAddPlayerListPage");
console.log(jsonData);
this.playerCount = jsonData["playerList"].length;
this.list.updatePlayerList(jsonData["playerList"]);
this.listNavigator.updateNavigator(this.activePageNo, this.lastPageNo);
@@ -135,25 +137,30 @@ PlayerListManager.prototype.updateSearchPlayerListPage = function(playerName, pa
);
}
PlayerListManager.prototype.refreshAddPlayerListPage = function() {
this.loadAddPlayerListPage(this.activePageNo);
}
PlayerListManager.prototype.refreshSearchPlayerListPage = function() {
this.updateSearchPlayerListPage(this.searchPlayerName, this.activePageNo);
}
PlayerListManager.prototype.editPlayer = function(inputButton) {
// console.log(inputButton);
// var clickedObjectID = this.getClickedObjectID(inputButton);
var id = $(inputButton).siblings(".player_id");
var id = $(inputButton).parent().siblings(".player_id");
var playerID = id.text();
// console.log(playerID);
var name = $(inputButton).siblings(".player_name");
var name = $(inputButton).parent().siblings(".player_name");
var playerName = name.val();
console.log(playerName);
// console.log(playerName);
var enterCode = $(inputButton).siblings(".player_entercode");
var enterCode = $(inputButton).parent().siblings(".player_entercode");
var playerEnterCode = enterCode.val();
console.log(playerEnterCode);
// console.log(playerEnterCode);
if(!accountValidator.isValidPlayerID(playerName)) {
// console.log("Error - playerName : " + playerName);
@@ -177,9 +184,13 @@ PlayerListManager.prototype.editPlayer = function(inputButton) {
(function(jsonData) {
// console.log(jsonData);
if(this.playerListID === "add_player_list") {
this.setupAddPlayerList();
// this.setupAddPlayerList();
refreshAddPlayerList();
refreshSearchPlayerList();
} else if(this.playerListID === "search_player_list") {
this.setupSearchPlayerList(this.searchPlayerName);
// this.setupSearchPlayerList(this.searchPlayerName);
refreshAddPlayerList();
refreshSearchPlayerList();
}
showErrorMessage("학생 데이터가 [ " + playerName + " / " + playerEnterCode + " ] 으로 변경되었습니다.", "success");
}).bind(this),
@@ -192,10 +203,10 @@ PlayerListManager.prototype.editPlayer = function(inputButton) {
}
PlayerListManager.prototype.deletePlayer = function(inputButton) {
var id = $(inputButton).siblings(".player_id");
var id = $(inputButton).parent().siblings(".player_id");
var playerID = id.text();
var name = $(inputButton).siblings(".player_name");
var name = $(inputButton).parent().siblings(".player_name");
var playerName = name.val();
// console.log(playerName);
@@ -210,11 +221,15 @@ PlayerListManager.prototype.deletePlayer = function(inputButton) {
(function(jsonData) {
if(this.playerListID === "add_player_list") {
this.setupAddPlayerList();
// this.setupAddPlayerList();
refreshAddPlayerList();
refreshSearchPlayerList();
} else if(this.playerListID === "search_player_list") {
this.setupSearchPlayerList(this.searchPlayerName);
// this.setupSearchPlayerList(this.searchPlayerName);
refreshAddPlayerList();
refreshSearchPlayerList();
}
showErrorMessage("[ " + playerName + "] 학생 데이터가 삭제되었습니다.", "success");
showErrorMessage("[ " + playerName + " ] 학생 데이터가 삭제되었습니다.", "success");
onChangePlayerCount();
}).bind(this),