Back to Home

ESO Lua File v101041

ingame/lfg/keyboard/zo_activityfindertemplate_keyboard.lua

[◄ back to folders ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
local GROUP_SIZE_ICON_FORMAT = zo_iconFormat("EsoUI/Art/LFG/LFG_icon_groupSize.dds", 32, 32)
ZO_TRIBUTE_REWARD_KEYBOARD_ROW_HEIGHT = 52
------------------
--Initialization--
------------------
ZO_ActivityFinderTemplate_Keyboard = ZO_ActivityFinderTemplate_Shared:Subclass()
function ZO_ActivityFinderTemplate_Keyboard:New(...)
    return ZO_ActivityFinderTemplate_Shared.New(self, ...)
end
function ZO_ActivityFinderTemplate_Keyboard:Initialize(dataManager, categoryData, categoryPriority)
    self.tributeProgressSegmentTemplate = "ZO_TributeFinder_ArrowStatusBarTemplate_Keyboard"
    local control = CreateControlFromVirtual(dataManager:GetName() .. "_Keyboard", GuiRoot, "ZO_ActivityFinderTemplateTopLevel_Keyboard")
    ZO_ActivityFinderTemplate_Shared.Initialize(self, control, dataManager, categoryData, categoryPriority)
    self.rewardsOffsetYDefault = -250
    self.rewardsOffsetYTribute = -300
end
function ZO_ActivityFinderTemplate_Keyboard:GetSystemName()
    return "ActivityFinder_Keyboard"
end
function ZO_ActivityFinderTemplate_Keyboard:InitializeControls()
    self.listSection = self.control:GetNamedChild("ListSection")
    self.lfmPromptSection = self.control:GetNamedChild("LFMPromptSection")
    self.lfmPromptBodyLabel = self.lfmPromptSection:GetNamedChild("Body")
    self.filterControl = self.control:GetNamedChild("Filter")
    self.clubRankControl = self.control:GetNamedChild("ClubRank")
    self.clubRankObject = ZO_TributeClubRank:New(self.clubRankControl)
    self.buttonContainer = self.control:GetNamedChild("ActionButtonContainer")
    self.joinQueueButton = self.buttonContainer:GetNamedChild("QueueButton")
    self.viewRewardsButton = self.buttonContainer:GetNamedChild("ViewRewards")
    self.acceptQuestButton = self.buttonContainer:GetNamedChild("AcceptQuest")
    self.unlockPermanentlyButton = self.buttonContainer:GetNamedChild("UnlockPermanently")
    self.chapterUpgradeButton = self.buttonContainer:GetNamedChild("ChapterUpgrade")
    self.lockReasonLabel = self.control:GetNamedChild("LockReason")
    local function OnLockReasonLabelUpdate()
        if self.lockReasonTextFunction then
            local lockReasonText = self.lockReasonTextFunction()
            if lockReasonText then
                self.lockReasonLabel:SetText(zo_iconTextFormat("EsoUI/Art/Miscellaneous/locked_disabled.dds", 16, 16, lockReasonText))
            else
                self.lockReasonLabel:SetText(zo_iconFormat("EsoUI/Art/Miscellaneous/locked_disabled.dds", 16, 16))
            end
        end
    end
    self.lockReasonLabel:SetHandler("OnUpdate", OnLockReasonLabelUpdate)
    self.shouldHideLockReason = false
    ZO_ActivityFinderTemplate_Shared.InitializeControls(self, "ZO_ActivityFinderTemplateRewardTemplate_Keyboard")
    
end
function ZO_ActivityFinderTemplate_Keyboard:InitializeFilters()
    local filterComboBox = ZO_ComboBox_ObjectFromContainer(self.filterControl)
    filterComboBox:SetSortsItems(false)
    filterComboBox:SetFont("ZoFontWinT1")
    filterComboBox:SetSpacing(4)
    self.filterComboBox = filterComboBox
    self:RefreshFilters()
end
function ZO_ActivityFinderTemplate_Keyboard:InitializeNavigationList()
    self.navigationTree = ZO_Tree:New(self.listSection:GetNamedChild("ScrollChild"), 60, -10, 600)
    local openTexture = "EsoUI/Art/Buttons/tree_open_up.dds"
    local closedTexture = "EsoUI/Art/Buttons/tree_closed_up.dds"
    local overOpenTexture = "EsoUI/Art/Buttons/tree_open_over.dds"
    local overClosedTexture = "EsoUI/Art/Buttons/tree_closed_over.dds"
    local function TreeHeaderSetup(node, control, name, open)
        control.text:SetModifyTextType(MODIFY_TEXT_TYPE_UPPERCASE)
        control.text:SetText(name)
        control.icon:SetTexture(open and openTexture or closedTexture)
        control.iconHighlight:SetTexture(open and overOpenTexture or overClosedTexture)
        local ENABLED = true
        local DISABLE_SCALING = true
        ZO_IconHeader_Setup(control, open, ENABLED, DISABLE_SCALING)
    end
    
    local function TreeEntrySetup(node, control, data, open)
        local isLocked = data:IsLocked()
        control.enabled = not isLocked and not IsCurrentlySearchingForGroup()
        control.check:SetHidden(isLocked)
        control.lockIcon:SetHidden(not isLocked)
        if not isLocked then
            ZO_CheckButton_SetCheckState(control.check, data:IsSelected())
        end
    end
    self.navigationTree:AddTemplate("ZO_ActivityFinderTemplateNavigationHeader_Keyboard", TreeHeaderSetup, nil, nil, nil, 0)
    local function TreeEntryEquality(left, right)
        return left.name == right.name
    end
    self.navigationTree:AddTemplate("ZO_ActivityFinderTemplateNavigationEntry_Keyboard", TreeEntrySetup, nil, TreeEntryEquality)
    self.navigationTree:SetOpenAnimation("ZO_TreeOpenAnimation")
end
function ZO_ActivityFinderTemplate_Keyboard:InitializeFragment()
    local function OnStateChange(oldState, newState)
        if newState == SCENE_FRAGMENT_SHOWN then
            -- refresh the filters first since that can cause the primary controls
            -- to be shown, which we want to hide when we show the LFM prompt
            if self.filtersDirty then
                self:RefreshFilters()
            end
            local isTribute = false
            local isCompetitive = false
            local selectedData = self.filterComboBox:GetSelectedItemData()
            if selectedData then
                local filterData = selectedData.data
                isTribute = filterData.isTribute
                isCompetitive = filterData.isCompetitive
            end
            if isTribute then
                if RequestTributeClubData() == TRIBUTE_PLAYER_INITIALIZATION_STATE_SUCCESS then
                    self:OnTributeClubDataInitialized()
                end
                if isCompetitive and RequestActiveTributeCampaignData() == TRIBUTE_PLAYER_INITIALIZATION_STATE_SUCCESS then
                    self:OnTributeCampaignDataInitialized()
                end
                TriggerTutorial(TUTORIAL_TRIGGER_TRIBUTE_FINDER_OPENED)
            end
            self.clubRankControl:SetHidden(not isTribute)
            local selectedData = self.filterComboBox:GetSelectedItemData()
            if selectedData then
                local filterData = selectedData.data
                self.singularSection:SetHidden(not filterData.singular)
            end
            local shouldShowLFMPrompt, lfmPromptActivityName = self:GetLFMPromptInfo()
            if shouldShowLFMPrompt then
                self.lfmPromptBodyLabel:SetText(zo_strformat(GetString(SI_LFG_FIND_REPLACEMENT_TEXT), lfmPromptActivityName))
                self.lfmPromptSection:SetHidden(false)
                self:HidePrimaryControls()
            end
            self:RefreshView()
        end
    end
    self.fragment = ZO_FadeSceneFragment:New(self.control)
    self.fragment:RegisterCallback("StateChange", OnStateChange)
    self.categoryData.categoryFragment = self.fragment
    GROUP_MENU_KEYBOARD:AddCategory(self.categoryData)
end
function ZO_ActivityFinderTemplate_Keyboard:RegisterEvents()
    ZO_ActivityFinderTemplate_Shared.RegisterEvents(self)
    ZO_ACTIVITY_FINDER_ROOT_MANAGER:RegisterCallback("OnSelectionsChanged", function(...) self:RefreshButtons(...) end)
end
-----------
--Updates--
-----------
function ZO_ActivityFinderTemplate_Keyboard:RefreshView()
    if not self.fragment:IsShowing() then
        return
    end
    local shouldShowLFMPrompt = self:GetLFMPromptInfo()
    if not shouldShowLFMPrompt then
        self:ResetLFMPrompt()
    end
    self.tributeSeasonProgressControl:SetHidden(true)
    self.clubRankObject:Refresh()
    local lockReasonText
    
    self.viewRewardsButton:SetHidden(true)
    self.acceptQuestButton:SetHidden(true)
    self.unlockPermanentlyButton:SetHidden(true)
    self.chapterUpgradeButton:SetHidden(true)
    local selectedData = self.filterComboBox:GetSelectedItemData()
    if selectedData then
        local filterData = selectedData.data
        if filterData.singular then
            ZO_ACTIVITY_FINDER_ROOT_MANAGER:SetLocationSelected(filterData, true)
            self:RefreshRewards(filterData)
            if filterData:IsLocked() then
                lockReasonText = filterData:GetLockReasonText()
                local lockingCollectibleId = filterData:GetFirstLockingCollectible()
                if lockingCollectibleId ~= 0 then
                    local collectibleData = ZO_COLLECTIBLE_DATA_MANAGER:GetCollectibleDataById(lockingCollectibleId)
                    local categoryType = collectibleData:GetCategoryType()
                    if categoryType == COLLECTIBLE_CATEGORY_TYPE_CHAPTER then
                        self.chapterUpgradeButton:SetHidden(false)
                    elseif categoryType == COLLECTIBLE_CATEGORY_TYPE_DLC then
                        self.unlockPermanentlyButton.searchTerm = collectibleData:GetName()
                        self.unlockPermanentlyButton:SetHidden(false)
                    end
                else
                    self.acceptQuestButton.questId = filterData:GetQuestToUnlock()
                    self.acceptQuestButton:SetHidden(self.acceptQuestButton.questId == 0)
                end
            end
            local HIDE_IF_NOT_COMPETITIVE = not filterData.isCompetitive
            self:RefreshTributeSeasonData(HIDE_IF_NOT_COMPETITIVE)
            self.viewRewardsButton:SetHidden(HIDE_IF_NOT_COMPETITIVE)
        else
            self.navigationTree:Reset()
            ZO_ACTIVITY_FINDER_ROOT_MANAGER:RebuildSelections(filterData.activityTypes)
            local modes = self.dataManager:GetFilterModeData()
            local NO_PARENT_NODE = nil
            local NO_OVERRIDE_SOUND = nil
            local HEADER_OPEN = true
            for _, activityType in ipairs(filterData.activityTypes) do
                if ZO_ACTIVITY_FINDER_ROOT_MANAGER:GetNumLocationsByActivity(activityType, modes:GetVisibleEntryTypes()) > 0 then
                    local isLocked = self:GetLevelLockInfoByActivity(activityType)
                    if not isLocked then
                        local locationData = ZO_ACTIVITY_FINDER_ROOT_MANAGER:GetLocationsData(activityType)
                        local headerText = GetString("SI_LFGACTIVITY", activityType)
                        local headerNode = self.navigationTree:AddNode("ZO_ActivityFinderTemplateNavigationHeader_Keyboard", headerText, NO_PARENT_NODE, NO_OVERRIDE_SOUND, HEADER_OPEN)
                        for _, location in ipairs(locationData) do
                            if modes:IsEntryTypeVisible(location:GetEntryType()) and location:IsActive() and not location:ShouldForceFullPanelKeyboard() then
                                self.navigationTree:AddNode("ZO_ActivityFinderTemplateNavigationEntry_Keyboard", location, headerNode)
                            end
                        end
                    end
                end
            end
            self.navigationTree:Commit()
        end
    end
    local globalLockReasonText = self:GetGlobalLockText()
    if globalLockReasonText then
        lockReasonText = globalLockReasonText
    end
    self.shouldHideLockReason = lockReasonText == nil
    if not self.shouldHideLockReason then
        --if the text is a function, that means there's a timer involved that we want to refresh on update
        if type(lockReasonText) == "function" then
            self.lockReasonTextFunction = lockReasonText
        else
            self.lockReasonLabel:SetText(zo_iconTextFormat("EsoUI/Art/Miscellaneous/locked_disabled.dds", 16, 16, lockReasonText))
            self.lockReasonTextFunction = nil
        end
    end
    self.lockReasonLabel:SetHidden(self.shouldHideLockReason)
    self:RefreshButtons()
end
do
    local function IsEntryNotLocked(entry)
        return (not entry.data.singular) or (not entry.data:IsLocked())
    end
    local function ShouldAutoSelectEntry(entry)
        if not entry.data.singular then
            -- don't autoselect list views
            return false
        end
        if entry.data:IsLocked() then
            -- don't autoselect locked locations
            return false
        end
        return true
    end
    function ZO_ActivityFinderTemplate_Keyboard:RefreshFilters()
        if not self.fragment:IsShowing() then
            self.filtersDirty = true
            return
        end
        local function OnFilterChanged(...)
            self:OnFilterChanged(...)
        end
        local previousSelection = self.filterComboBox:GetSelectedItemData()
        local reselectedEntry = nil
        self.filterComboBox:ClearItems()
        local modes = self.dataManager:GetFilterModeData()
        local activityTypes = modes:GetActivityTypes()
        local addListViewSubmenuEntry = false
        -- Add singular panel entries
        for _, activityType in ipairs(activityTypes) do
            if ZO_ACTIVITY_FINDER_ROOT_MANAGER:GetNumLocationsByActivity(activityType, modes:GetVisibleEntryTypes()) > 0 then
                local isActivityLocked = self:GetLevelLockInfoByActivity(activityType)
                if not isActivityLocked then
                    local locationsData = ZO_ACTIVITY_FINDER_ROOT_MANAGER:GetLocationsData(activityType)
                    for _, location in ipairs(locationsData) do
                        if modes:IsEntryTypeVisible(location:GetEntryType()) and location:IsActive() and location:DoesPlayerMeetLevelRequirements() then
                            if location:ShouldForceFullPanelKeyboard() then
                                local entry = self.filterComboBox:CreateItemEntry(location:GetNameKeyboard(), OnFilterChanged)
                                if activityType == LFG_ACTIVITY_TRIBUTE_COMPETITIVE or activityType == LFG_ACTIVITY_TRIBUTE_CASUAL then
                                    location.isTribute = true
                                    if activityType == LFG_ACTIVITY_TRIBUTE_COMPETITIVE then
                                        location.isCompetitive = true
                                    end
                                end
                                location.singular = true
                                entry.data = location
                                if previousSelection and previousSelection.name == entry.name and IsEntryNotLocked(previousSelection) then
                                    reselectedEntry = entry
                                end
                                self.filterComboBox:AddItem(entry, ZO_COMBOBOX_SUPPRESS_UPDATE)
                            else
                                addListViewSubmenuEntry = true
                            end
                        end
                    end
                end
            end
        end
        -- Add list view submenu entry
        if addListViewSubmenuEntry then
            local entry = self.filterComboBox:CreateItemEntry(modes:GetSpecificFilterName(), OnFilterChanged)
            entry.data =
            {
                singular = false,
                isTribute = false,
                isCompetitive = false,
                activityTypes = activityTypes,
            }
            if previousSelection and previousSelection.name == entry.name and IsEntryNotLocked(previousSelection) then
                reselectedEntry = entry
            end
            self.filterComboBox:AddItem(entry, ZO_COMBOBOX_SUPPRESS_UPDATE)
        end
        if reselectedEntry then
            self.filterComboBox:SelectItem(reselectedEntry)
        else
            if not self.filterComboBox:SetSelectedItemByEval(ShouldAutoSelectEntry) then
                self.filterComboBox:SelectFirstItem()
            end
        end
        self.filterControl:SetHidden(self.filterComboBox:GetNumItems() <= 1)
        self.filtersDirty = false
    end
end
function ZO_ActivityFinderTemplate_Keyboard:IsShowingTributeFinder()
    local selectedData = self.filterComboBox:GetSelectedItemData()
    if selectedData then
        local filterData = selectedData.data
        return filterData.isTribute
    end
    return false
end
do
    local optionalButtons = {}
    function ZO_ActivityFinderTemplate_Keyboard:RefreshButtons()
        local isAnyLocationSelected = ZO_ACTIVITY_FINDER_ROOT_MANAGER:IsAnyLocationSelected()
        local isGroupFinderInUse = ZO_GroupFinder_IsGroupFinderInUse()
        local isJoinButtonEnabled = isAnyLocationSelected and not ZO_ACTIVITY_FINDER_ROOT_MANAGER:GetIsCurrentlyInQueue() and not isGroupFinderInUse
        self.joinQueueButton:SetEnabled(isJoinButtonEnabled)
        local acceptQuestButtonShown = not self.acceptQuestButton:IsControlHidden()
        local viewRewardsButtonShown = not self.viewRewardsButton:IsControlHidden()
        local unlockPermanentlyButtonShown = not self.unlockPermanentlyButton:IsControlHidden()
        local chapterUpgradeButtonShown = not self.chapterUpgradeButton:IsControlHidden()
        if acceptQuestButtonShown or viewRewardsButtonShown or unlockPermanentlyButtonShown or chapterUpgradeButtonShown then
            ZO_ClearNumericallyIndexedTable(optionalButtons)
            if chapterUpgradeButtonShown then
                table.insert(optionalButtons, self.chapterUpgradeButton)
            elseif unlockPermanentlyButtonShown then
                table.insert(optionalButtons, self.unlockPermanentlyButton)
            elseif acceptQuestButtonShown then
                self.acceptQuestButton:SetEnabled(not HasQuest(self.acceptQuestButton.questId))
                table.insert(optionalButtons, self.acceptQuestButton)
            end
            if viewRewardsButtonShown then
                self.viewRewardsButton:SetEnabled(HasActiveCampaignStarted())
                table.insert(optionalButtons, self.viewRewardsButton)
            end
            for index, button in ipairs(optionalButtons) do
                local anchorTo = index == 1 and self.joinQueueButton or optionalButtons[index - 1]
                button:SetAnchor(TOPLEFT, anchorTo, TOPRIGHT, 30, 0)
            end
        end
    end
end
----------
--Events--
----------
function ZO_ActivityFinderTemplate_Keyboard:OnFilterChanged(comboBox, entryText, entry)
    ZO_ACTIVITY_FINDER_ROOT_MANAGER:ClearSelections()
    local data = entry.data
    self.singularSection:SetHidden(not data.singular)
    self.listSection:SetHidden(data.singular)
    if data.singular then
        self.titleLabel:SetText(data:GetNameKeyboard())
        self.backgroundTexture:SetTexture(data:GetDescriptionTextureLargeKeyboard())
        if not data.isTribute then
            data:SetGroupSizeRangeText(self.groupSizeRangeLabel, GROUP_SIZE_ICON_FORMAT)
            -- Add game mode text into battlegrounds info
            local hideControls = true
            local setTypeListControl = self.setTypesSectionControl:GetNamedChild("List")
            if data:IsSetEntryType() then
                local setTypesHeaderText = data:GetSetTypesHeaderText()
                local setTypesListText = data:GetSetTypesListText()
                if setTypesHeaderText ~= "" and setTypesListText ~= "" then
                    setTypeListControl:SetText(zo_strformat(SI_BATTLEGROUND_GAME_MODE_FORMATTER_KEYBOARD, setTypesHeaderText, setTypesListText))
                    hideControls = false
                end
            end
            setTypeListControl:SetHidden(hideControls)
        end
        self:RefreshRewards(data)
    end
    self:RefreshView()
end
function ZO_ActivityFinderTemplate_Keyboard:OnActivityFinderStatusUpdate()
    self:RefreshView()
end
function ZO_ActivityFinderTemplate_Keyboard:OnCooldownsUpdate()
    local selectedData = self.filterComboBox:GetSelectedItemData()
    if selectedData then
        local filterData = selectedData.data
        if filterData.singular then
            self:RefreshRewards(filterData)
        end
    end
end
function ZO_ActivityFinderTemplate_Keyboard:OnTributeClubRankDataChanged()
    ZO_ActivityFinderTemplate_Shared.OnTributeClubRankDataChanged(self)
    self.clubRankObject:Refresh()
end
function ZO_ActivityFinderTemplate_Keyboard:OnTributeCampaignDataInitialized()
    ZO_ActivityFinderTemplate_Shared.OnTributeCampaignDataInitialized(self)
    self:RefreshView()
end
function ZO_ActivityFinderTemplate_Keyboard:OnTributeCampaignDataChanged()
    ZO_ActivityFinderTemplate_Shared.OnTributeCampaignDataChanged(self)
    local hideIfNotCompetitive = true
    local selectedData = self.filterComboBox:GetSelectedItemData()
    if selectedData then
        local filterData = selectedData.data
        if filterData.isCompetitive then
            hideIfNotCompetitive = false
        end
    end
    self:RefreshTributeSeasonData(hideIfNotCompetitive)
end
function ZO_ActivityFinderTemplate_Keyboard:ShowPrimaryControls()
    self.filterControl:SetHidden(false)
    self.joinQueueButton:SetHidden(false)
    local filterData = self.filterComboBox:GetSelectedItemData().data
    if filterData.singular then
        self.singularSection:SetHidden(false)
        self.lockReasonLabel:SetHidden(self.shouldHideLockReason)
    else
        self.listSection:SetHidden(false)
    end
end
function ZO_ActivityFinderTemplate_Keyboard:HidePrimaryControls()
    self.singularSection:SetHidden(true)
    self.listSection:SetHidden(true)
    self.filterControl:SetHidden(true)
    self.joinQueueButton:SetHidden(true)
    self.lockReasonLabel:SetHidden(true)
end
function ZO_ActivityFinderTemplate_Keyboard:ResetLFMPrompt()
    if not self.lfmPromptSection:IsHidden() then
        self.lfmPromptSection:SetHidden(true)
        self:ShowPrimaryControls()
    end
end
function ZO_ActivityFinderTemplate_Keyboard:OnHandleLFMPromptResponse()
    if self.fragment:IsShowing() then
        self:ResetLFMPrompt()
    end
end
function ZO_ActivityFinderTemplate_Keyboard:OnViewRewardsButtonClicked()
    ZO_Dialogs_ShowPlatformDialog("TRIBUTE_REWARDS_VIEW")
end
function ZO_ActivityFinderTemplate_Keyboard:OnAcceptQuestButtonClicked()
    -- Can't get here without filterData existing and being singular
    local filterData = self.filterComboBox:GetSelectedItemData().data
end
-------------
--Accessors--
-------------
function ZO_ActivityFinderTemplate_Keyboard:GetFragment()
    return self.fragment
end
----------
--Layout--
----------
function ZO_ActivityFinderTemplate_Keyboard.ShowActivityTooltip(control)
    local data = control.node.data
    local tooltip = ZO_ActivityFinderTemplateTooltip_Keyboard
    InitializeTooltip(tooltip, control, TOPRIGHT, -70, 0, TOPLEFT)
    local tooltipContents = tooltip:GetNamedChild("Contents")
    local groupSizeLabel = tooltipContents:GetNamedChild("GroupSizeLabel")
    data:SetGroupSizeRangeText(groupSizeLabel, GROUP_SIZE_ICON_FORMAT)
    local nameLabel = tooltipContents:GetNamedChild("NameLabel")
    nameLabel:SetText(data.nameKeyboard)
    local artTexture = tooltip:GetNamedChild("ArtTexture")
    artTexture:SetTexture(data.descriptionTextureSmallKeyboard)
    local lockedInfoLabel = tooltipContents:GetNamedChild("LockedInfoLabel")
    if data.isLocked then
        lockedInfoLabel:SetHidden(false)
        lockedInfoLabel:SetColor(ZO_ERROR_COLOR:UnpackRGBA())
        lockedInfoLabel:SetText(zo_iconTextFormat("EsoUI/Art/Miscellaneous/locked_disabled.dds", 16, 16, data.lockReasonText))
    else
        lockedInfoLabel:SetHidden(true)
    end
    local setTypesSectionControl = tooltipContents:GetNamedChild("SetTypesSection")
    ZO_ActivityFinderTemplate_Shared.AppendSetDataToControl(setTypesSectionControl, data)
end
function ZO_ActivityFinderTemplate_Keyboard.HideActivityTooltip()
    ClearTooltip(ZO_ActivityFinderTemplateTooltip_Keyboard)
end
----------------
--Global Hooks--
----------------
    if control.enabled then
        ZO_CheckButton_OnClicked(control.check)
        ZO_ACTIVITY_FINDER_ROOT_MANAGER:ToggleLocationSelected(control.node.data)
    end
end
    if control.enabled then
        control.check:SetShowingHighlight(true)
    end
    ZO_ActivityFinderTemplate_Keyboard.ShowActivityTooltip(control)
end
    if control.enabled then
        ZO_SelectableLabel_OnMouseExit(control.text, false)
        control.check:SetShowingHighlight(false)
    end
    ZO_ActivityFinderTemplate_Keyboard.HideActivityTooltip()
end
    if not IsCurrentlySearchingForGroup() then
        ZO_ACTIVITY_FINDER_ROOT_MANAGER:StartSearch()
    end
end
    local topLevelControl = control:GetParent():GetParent()
    local finderObjectKeyboard = topLevelControl.object
    finderObjectKeyboard:OnViewRewardsButtonClicked()
end
    local topLevelControl = control:GetParent():GetParent()
    local finderObjectKeyboard = topLevelControl.object
    finderObjectKeyboard:OnAcceptQuestButtonClicked()
end
    local searchTerm = zo_strformat(SI_CROWN_STORE_SEARCH_FORMAT_STRING, control.searchTerm)
    ShowMarketAndSearch(searchTerm, MARKET_OPEN_OPERATION_ACTIVITY_FINDER)
end
    control.lockIcon = control:GetNamedChild("LockIcon")
    control.check = control:GetNamedChild("Check")
    control.text = control:GetNamedChild("Text")
    local fontHeight = control.text:GetFontHeight()
    control:SetDimensionConstraints(0, fontHeight, 0, 0)
end