PGRData/Script/matrix/xui/xuiarenateam/xuiarenateamcommon/XUiGridArenaTeamApply.lua

89 lines
No EOL
2.6 KiB
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

local XUiGridArenaTeamApply = XClass(nil, "XUiGridArenaTeamApply")
function XUiGridArenaTeamApply:Ctor(ui)
self.GameObject = ui.gameObject
self.Transform = ui.transform
XTool.InitUiObject(self)
self:AutoAddListener()
end
function XUiGridArenaTeamApply:RegisterClickEvent(uiNode, func)
if func == nil then
XLog.Error("XUiGridArenaTeamApply:RegisterClickEvent函数参数错误参数func不能为空")
return
end
if type(func) ~= "function" then
XLog.Error("XUiGridArenaTeamApply:RegisterClickEvent函数错误, 参数func需要是function类型, func的类型是" .. type(func))
end
local listener = function(...)
func(self, ...)
end
CsXUiHelper.RegisterClickEvent(uiNode, listener)
end
function XUiGridArenaTeamApply:AutoAddListener()
self:RegisterClickEvent(self.BtnRefuse, self.OnBtnRefuseClick)
self:RegisterClickEvent(self.BtnAccept, self.OnBtnAcceptClick)
self:RegisterClickEvent(self.BtnHead, self.OnBtnHeadClick)
end
function XUiGridArenaTeamApply:OnBtnHeadClick()
if not self.Data or self.Data.Id == XPlayer.Id then
return
end
XDataCenter.PersonalInfoManager.ReqShowInfoPanel(self.Data.Id)
end
function XUiGridArenaTeamApply:OnBtnRefuseClick()
if not self.Data then
return
end
if self.IsInTeam then
if XDataCenter.ArenaManager.CheckSelfIsCaptain() then
XDataCenter.ArenaManager.RequestRefuseApply(self.Data.Id)
end
else
XDataCenter.ArenaManager.RequestRefuseInvite(self.Data.Id)
end
end
function XUiGridArenaTeamApply:OnBtnAcceptClick()
if not self.Data then
return
end
if self.IsInTeam then
if XDataCenter.ArenaManager.CheckSelfIsCaptain() then
XDataCenter.ArenaManager.RequestAcceptApply(self.Data.Id)
end
else
XDataCenter.ArenaManager.RequestAcceptInvite(self.Data.Id)
end
end
function XUiGridArenaTeamApply:ResetData(data, rootUi)
self.Data = data
self.RootUi = rootUi
self:Refresh()
end
function XUiGridArenaTeamApply:Refresh()
if not self.Data then
return
end
self.IsInTeam = XDataCenter.ArenaManager.GetTeamId() > 0
self.TxtApplyOfPlayer.gameObject:SetActive(self.IsInTeam)
self.TxtApplyOfTeam.gameObject:SetActive(not self.IsInTeam)
self.TxtNickname.text = XDataCenter.SocialManager.GetPlayerRemark(self.Data.Id, self.Data.Name)
self.TxtPlayerLevel.text = self.Data.Level
XUiPLayerHead.InitPortrait(self.Data.CurrHeadPortraitId, self.Data.CurrHeadFrameId, self.Head)
end
return XUiGridArenaTeamApply