PGRData/Script/matrix/xui/xuifuben/resourcecollection/XUiGridResourceCollection.lua

71 lines
2.7 KiB
Lua
Raw Normal View History

2024-09-01 22:49:41 +02:00
local XUiGridResourceCollection = XClass(nil, "XUiGridResourceCollection")
local IsThisTransformPlayAnim = false
function XUiGridResourceCollection:Ctor(ui)
self.GameObject = ui.gameObject
self.Transform = ui.transform
self:SetHasPlay(false)
XTool.InitUiObject(self)
end
function XUiGridResourceCollection:PlayEnableAnime(index) --该index是当前使用的grid中的序号不是总grid里的动态列表组件上的属性的index,etc:共10个gird若只显示最后5个且该格子是第10个的话参数Index就是5
if self:GetHasPlay() then
return
end
if XDataCenter.GuideManager.CheckIsInGuide() then
return
end
local rect = self.UseGrid:GetComponent("RectTransform")
local beforePlayPosY = rect.anchoredPosition.y
local canvasGroup = self.UseGrid:GetComponent("CanvasGroup")
canvasGroup.alpha = 0
XScheduleManager.ScheduleOnce(function()
if not XTool.UObjIsNil(self.Transform) and self.GameObject.activeInHierarchy then
self.Transform:Find("Animation/GridEnable"):PlayTimelineAnimation(function ()
canvasGroup.alpha = 1
rect.anchoredPosition = Vector2(rect.anchoredPosition.x, beforePlayPosY) -- 播放完的回调也强设一遍目标值
end)
self:SetHasPlay(true)
end
end, (index - 1) * 95)
end
function XUiGridResourceCollection:SetAlphaZero()
local canvasGroup = self.Transform:Find("Grid"):GetComponent("CanvasGroup")
canvasGroup.alpha = 0
end
function XUiGridResourceCollection:SetHasPlay(flag)
IsThisTransformPlayAnim = flag
end
function XUiGridResourceCollection:GetHasPlay()
return IsThisTransformPlayAnim
end
function XUiGridResourceCollection:UpdateGrid(chapterViewModel, index, currUseMinIndex)
currUseMinIndex = currUseMinIndex or 1
self:PlayEnableAnime(index - (currUseMinIndex - 1))
self.RImgBg:SetRawImage(chapterViewModel:GetExtralData().Bg)
self.RImgIcon:SetRawImage(chapterViewModel:GetIcon())
self.TxtName.text = chapterViewModel:GetName()
self.TxtRemainOpen.text = ""
self.TxtDes.text = chapterViewModel:GetConfig().Desc
self.PanelLock.gameObject:SetActive(chapterViewModel:GetIsLocked())
-- self.TxtLock.text = CS.XTextManager.GetText("NotUnlock")
self.TxtLock.text = chapterViewModel:GetLockTip()
local tmpText, IsAllDay = chapterViewModel:GetOpenDayString()
if IsAllDay then
self.TxtRemainOpen.text = tmpText
else
self.TxtRemainOpen.text = CS.XTextManager.GetText("FubenDailyOpenRemark", tmpText)
end
self.PanelNewEffectShop.gameObject:SetActiveEx(chapterViewModel:CheckHasTimeLimitTag())
end
return XUiGridResourceCollection