Back to Home

ESO Lua File v101041

ingame/tradinghouse/keyboard/tradinghouse_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
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
--[[
Trading House Manager
--]]
local ZO_TradingHouseManager = ZO_TradingHouse_Shared:Subclass()
function ZO_TradingHouseManager:Initialize(control)
    ZO_TradingHouse_Shared.Initialize(self, control)
    self.initialized = false
    self.titleLabel = control:GetNamedChild("TitleLabel")
    TRADING_HOUSE_SCENE = ZO_InteractScene:New("tradinghouse", SCENE_MANAGER, ZO_TRADING_HOUSE_INTERACTION)
    SYSTEMS:RegisterKeyboardRootScene(ZO_TRADING_HOUSE_SYSTEM_NAME, TRADING_HOUSE_SCENE)
end
do
    local INVENTORY_TYPE_LIST = { INVENTORY_BACKPACK }
    function ZO_TradingHouseManager:InitializeScene()
        local function SceneStateChange(oldState, newState)
            if newState == SCENE_SHOWING then
                PLAYER_INVENTORY:SetContextForInventories("guildTraderTextSearch", INVENTORY_TYPE_LIST)
                TEXT_SEARCH_MANAGER:ActivateTextSearch("guildTraderTextSearch")
                self:UpdateFragments()
            elseif newState == SCENE_HIDING then
                SetPendingItemPost(BAG_BACKPACK, 0, 0)
                ClearMenu()
            elseif newState == SCENE_HIDDEN then
                TEXT_SEARCH_MANAGER:DeactivateTextSearch("guildTraderTextSearch")
                local REMOVE_CONTEXT = nil
                PLAYER_INVENTORY:SetContextForInventories(REMOVE_CONTEXT, INVENTORY_TYPE_LIST)
                self:ClearSearchResults()
                ZO_InventorySlot_RemoveMouseOverKeybinds()
                KEYBIND_STRIP:RemoveKeybindButtonGroup(self.keybindStripDescriptor)
                self.keybindStripDescriptor = nil
            end
        end
        TRADING_HOUSE_SCENE:RegisterCallback("StateChange", SceneStateChange)
    end
end
function ZO_TradingHouseManager:InitializeEvents()
    local function FilterForKeyboardEvents(callback)
        return function(...)
            if not IsInGamepadPreferredMode() then
                callback(...)
            end
        end
    end
    TRADING_HOUSE_SEARCH:RegisterCallback("OnSearchStateChanged", FilterForKeyboardEvents(function(...) self:OnSearchStateChanged(...) end))
    TRADING_HOUSE_SEARCH:RegisterCallback("OnAwaitingResponse", FilterForKeyboardEvents(function(...) self:OnAwaitingResponse(...) end))
    TRADING_HOUSE_SEARCH:RegisterCallback("OnResponseReceived", FilterForKeyboardEvents(function(...) self:OnResponseReceived(...) end))
    TRADING_HOUSE_SEARCH:RegisterCallback("OnSelectedGuildChanged", FilterForKeyboardEvents(function() self:UpdateForGuildChange() end))
    TRADING_HOUSE_SEARCH_HISTORY_KEYBOARD:RegisterCallback("MouseOverRowChanged", function()
        KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
    end)
    local function OnUpdateStatus()
        self:UpdateStatus()
    end
    self.control:RegisterForEvent(EVENT_TRADING_HOUSE_STATUS_RECEIVED, FilterForKeyboardEvents(OnUpdateStatus))
    local function OnOperationTimeout()
        self:OnOperationTimeout()
    end
    self.control:RegisterForEvent(EVENT_TRADING_HOUSE_OPERATION_TIME_OUT, FilterForKeyboardEvents(OnOperationTimeout))
    
    local function OnPendingPostItemUpdated(_, slotId, isPending)
        self:OnPendingPostItemUpdated(slotId, isPending)
    end
    self.control:RegisterForEvent(EVENT_TRADING_HOUSE_PENDING_ITEM_UPDATE, FilterForKeyboardEvents(OnPendingPostItemUpdated))
    local function OnConfirmPendingPurchase(_, pendingPurchaseIndex)
        if pendingPurchaseIndex ~= nil then
            self:ConfirmPendingPurchase(pendingPurchaseIndex)
        end
    end
    self.control:RegisterForEvent(EVENT_TRADING_HOUSE_CONFIRM_ITEM_PURCHASE, FilterForKeyboardEvents(OnConfirmPendingPurchase))
end
function ZO_TradingHouseManager:InitializeKeybindDescriptor()
    local switchGuildsKeybind =
    {
        name = function()
            local selectedGuildId = GetSelectedTradingHouseGuildId()
            if selectedGuildId then
                return GetGuildName(selectedGuildId)
            end
        end,
        keybind = "UI_SHORTCUT_TERTIARY",
        visible = function()
            return GetNumTradingHouseGuilds() > 1
        end,
        enabled = function()
            return TRADING_HOUSE_SEARCH:CanDoCommonOperation()
        end,
        callback = function()
            ZO_Dialogs_ShowDialog("SELECT_TRADING_HOUSE_GUILD")
        end,
    }
    self.browseKeybindStripDescriptor =
    {
        alignment = KEYBIND_STRIP_ALIGN_CENTER,
        -- Do Search
        {
            keybind = "UI_SHORTCUT_SECONDARY",
            name = GetString(SI_TRADING_HOUSE_DO_SEARCH),
            callback = function()
                TRADING_HOUSE_SEARCH:DoSearch()
            end,
        },
        --Switch Guilds
        switchGuildsKeybind,
        
        --Reset Search / Delete Search History Entry
        {
            name = function()
                if TRADING_HOUSE_SEARCH_HISTORY_KEYBOARD:GetMouseOverSearchTable() then
                    return GetString(SI_TRADING_HOUSE_DELETE_SEARCH_HISTORY_ENTRY)
                else
                    return GetString(SI_TRADING_HOUSE_RESET_SEARCH)
                end
            end,
            keybind = "UI_SHORTCUT_NEGATIVE",
            callback = function()
                local mouseOverSearchTable = TRADING_HOUSE_SEARCH_HISTORY_KEYBOARD:GetMouseOverSearchTable()
                if mouseOverSearchTable then
                    TRADING_HOUSE_SEARCH_HISTORY_MANAGER:RemoveSearchTable(mouseOverSearchTable)
                else
                    self:ClearSearchResults()
                    self:ResetSearchTerms()
                    TRADING_HOUSE_SEARCH:ResetAllSearchData()
                    TRADING_HOUSE_SEARCH:CancelPendingSearch()
                end
            end,
        },
        --End Preview
        {
            name = GetString(SI_CRAFTING_EXIT_PREVIEW_MODE),
            keybind = "UI_SHORTCUT_QUATERNARY",
            visible = function()
                return ITEM_PREVIEW_KEYBOARD:IsInteractionCameraPreviewEnabled()
            end,
            callback = function()
                self:TogglePreviewMode()
            end,
        },
    }
    self.sellKeybindStripDescriptor =
    {
        alignment = KEYBIND_STRIP_ALIGN_CENTER,
        -- Post Item
        {
            keybind = "UI_SHORTCUT_SECONDARY",
            name = GetString(SI_TRADING_HOUSE_POST_ITEM),
            callback = function()
                if self:CanPostWithMoneyCheck() then
                    self:PostPendingItem()
                end
            end,
            visible = function()
                return self:CanPost()
            end,
            enabled = function()
                return self:HasEnoughMoneyToPostPendingItem()
            end,
        },
        --Switch Guilds
        switchGuildsKeybind,
    }
    self.listingsKeybindStripDescriptor =
    {
        alignment = KEYBIND_STRIP_ALIGN_CENTER,
        --Switch Guilds
        switchGuildsKeybind,
    }
end
function ZO_TradingHouseManager:InitializeMenuBar(control)
    self.menuBar = control:GetNamedChild("MenuBar")
    self.tabLabel = self.menuBar:GetNamedChild("Label")
    local function HandleTabSwitch(tabData)
        self:HandleTabSwitch(tabData)
    end
    local function LayoutSellTabTooltip(tooltip)
        local guildId = GetSelectedTradingHouseGuildId()
        local tooltipText
        if not IsPlayerInGuild(guildId) then
            tooltipText = GetString(SI_TRADING_HOUSE_POSTING_LOCKED_NOT_A_GUILD_MEMBER)
        elseif not DoesGuildHavePrivilege(guildId, GUILD_PRIVILEGE_TRADING_HOUSE) then
            tooltipText = zo_strformat(GetString(SI_TRADING_HOUSE_POSTING_LOCKED_NO_PERMISSION_GUILD), GetNumGuildMembersRequiredForPrivilege(GUILD_PRIVILEGE_TRADING_HOUSE))
        elseif not DoesPlayerHaveGuildPermission(guildId, GUILD_PERMISSION_STORE_SELL) then
            tooltipText = GetString(SI_TRADING_HOUSE_POSTING_LOCKED_NO_PERMISSION_PLAYER)
        else
            tooltipText = GetString(SI_TRADING_HOUSE_MODE_SELL)
        end
        SetTooltipText(tooltip, tooltipText)
    end
    local function LayoutListingTabTooltip(tooltip)
        local guildId = GetSelectedTradingHouseGuildId()
        local tooltipText
        if not IsPlayerInGuild(guildId) then
            tooltipText = GetString(SI_TRADING_HOUSE_POSTING_LOCKED_NOT_A_GUILD_MEMBER)
        else
            tooltipText = GetString(SI_TRADING_HOUSE_MODE_LISTINGS)
        end
        SetTooltipText(tooltip, tooltipText)
    end
    local iconData =
    {
        {
            categoryName = SI_TRADING_HOUSE_MODE_BROWSE,
            descriptor = ZO_TRADING_HOUSE_MODE_BROWSE,
            normal = "EsoUI/Art/TradingHouse/tradinghouse_browse_tabIcon_up.dds",
            pressed = "EsoUI/Art/TradingHouse/tradinghouse_browse_tabIcon_down.dds",
            disabled = "EsoUI/Art/TradingHouse/tradinghouse_browse_tabIcon_disabled.dds",
            highlight = "EsoUI/Art/TradingHouse/tradinghouse_browse_tabIcon_over.dds",
            callback = HandleTabSwitch,
        },
        {
            categoryName = SI_TRADING_HOUSE_MODE_SELL,
            descriptor = ZO_TRADING_HOUSE_MODE_SELL,
            normal = "EsoUI/Art/TradingHouse/tradinghouse_sell_tabIcon_up.dds",
            pressed = "EsoUI/Art/TradingHouse/tradinghouse_sell_tabIcon_down.dds",
            disabled = "EsoUI/Art/TradingHouse/tradinghouse_sell_tabIcon_disabled.dds",
            highlight = "EsoUI/Art/TradingHouse/tradinghouse_sell_tabIcon_over.dds",
            callback = HandleTabSwitch,
            CustomTooltipFunction = LayoutSellTabTooltip,
            alwaysShowTooltip = true,
        },
        {
            categoryName = SI_TRADING_HOUSE_MODE_LISTINGS,
            descriptor = ZO_TRADING_HOUSE_MODE_LISTINGS,
            normal = "EsoUI/Art/TradingHouse/tradinghouse_listings_tabIcon_up.dds",
            pressed = "EsoUI/Art/TradingHouse/tradinghouse_listings_tabIcon_down.dds",
            disabled = "EsoUI/Art/TradingHouse/tradinghouse_listings_tabIcon_disabled.dds",
            highlight = "EsoUI/Art/TradingHouse/tradinghouse_listings_tabIcon_over.dds",
            callback = HandleTabSwitch,
            CustomTooltipFunction = LayoutListingTabTooltip,
            alwaysShowTooltip = true,
        },
    }
    for _, button in ipairs(iconData) do
        ZO_MenuBar_AddButton(self.menuBar, button)
    end
end
function ZO_TradingHouseManager:HandleTabSwitch(tabData)
    local mode = tabData.descriptor
    self:SetCurrentMode(mode)
    self.tabLabel:SetText(GetString(tabData.categoryName))
    local notSellMode = mode ~= ZO_TRADING_HOUSE_MODE_SELL
    local notBrowseMode = mode ~= ZO_TRADING_HOUSE_MODE_BROWSE
    local notListingsMode = mode ~= ZO_TRADING_HOUSE_MODE_LISTINGS
    -- sell mode controls
    self.postItemPane:SetHidden(notSellMode)
    -- search/browse mode controls
    self.browseItemsLeftPane:SetHidden(notBrowseMode)
    self.itemNameSearch:SetHidden(notBrowseMode)
    self.itemNameSearchLabel:SetHidden(notBrowseMode)
    self.searchResultsList:SetHidden(notBrowseMode)
    self.searchSortHeadersControl:SetHidden(notBrowseMode)
    self.nagivationBar:SetHidden(notBrowseMode)
    self.searchResultsMessageContainer:SetHidden(notBrowseMode)
    self.subcategoryTabsControl:SetHidden(notBrowseMode)
    self.featureAreaControl:SetHidden(notBrowseMode)
    -- player listings mode controls
    self.postedItemsList:SetHidden(notListingsMode)
    self.postedItemsHeader:SetHidden(notListingsMode)
    self.noPostedItemsContainer:SetHidden(notListingsMode)
    if mode == ZO_TRADING_HOUSE_MODE_LISTINGS then
        self:RefreshListings()
    end
    if mode == ZO_TRADING_HOUSE_MODE_SELL then
        self:UpdateListingCounts()
    end
    local newKeybindStripDescriptor
    if mode == ZO_TRADING_HOUSE_MODE_BROWSE then
        newKeybindStripDescriptor = self.browseKeybindStripDescriptor
    elseif mode == ZO_TRADING_HOUSE_MODE_SELL then
        newKeybindStripDescriptor = self.sellKeybindStripDescriptor
    else
        newKeybindStripDescriptor = self.listingsKeybindStripDescriptor
    end
    if self.keybindStripDescriptor ~= newKeybindStripDescriptor then
        if self.keybindStripDescriptor then
            KEYBIND_STRIP:RemoveKeybindButtonGroup(self.keybindStripDescriptor)
        end
        self.keybindStripDescriptor = newKeybindStripDescriptor
        KEYBIND_STRIP:AddKeybindButtonGroup(newKeybindStripDescriptor)
    end
    if ITEM_PREVIEW_KEYBOARD:IsInteractionCameraPreviewEnabled() and notBrowseMode then
        self:TogglePreviewMode()
    else
        self:UpdateFragments()
        KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
    end
end
function ZO_TradingHouseManager:UpdateFragments()
    if TRADING_HOUSE_SCENE:IsShowing() then
        if self:IsInSellMode() then
            SCENE_MANAGER:AddFragment(INVENTORY_FRAGMENT)
        else
            SCENE_MANAGER:RemoveFragment(INVENTORY_FRAGMENT)
        end
        if self:IsInListingsMode() then
            SCENE_MANAGER:RemoveFragment(TREE_UNDERLAY_FRAGMENT)
        else
            SCENE_MANAGER:AddFragment(TREE_UNDERLAY_FRAGMENT)
        end
        if self:IsInSearchMode() and not ITEM_PREVIEW_KEYBOARD:IsInteractionCameraPreviewEnabled() then
            SCENE_MANAGER:AddFragment(TRADING_HOUSE_SEARCH_HISTORY_KEYBOARD_FRAGMENT)
        else
            SCENE_MANAGER:RemoveFragment(TRADING_HOUSE_SEARCH_HISTORY_KEYBOARD_FRAGMENT)
        end
    end
end
function ZO_TradingHouseManager:HasValidPendingItemPost()
    return self.pendingItemSlot ~= nil
end
function ZO_TradingHouseManager:HasEnoughMoneyToPostPendingItem()
    return self:HasValidPendingItemPost() and self.pendingSaleIsValid
end
function ZO_TradingHouseManager:CanPost()
    return TRADING_HOUSE_SEARCH:CanDoCommonOperation() and self:IsInSellMode()
end
function ZO_TradingHouseManager:CanPostWithMoneyCheck()
    return TRADING_HOUSE_SEARCH:CanDoCommonOperation() and self:IsInSellMode() and self:HasEnoughMoneyToPostPendingItem()
end
function ZO_TradingHouseManager:InitializePostItem(control)
    self.postItemPane = control:GetNamedChild("PostItemPane")
    self.pendingItemBG = self.postItemPane:GetNamedChild("PendingBG")
    self.pendingItemName = self.postItemPane:GetNamedChild("FormInfoName")
    self.pendingItem = self.postItemPane:GetNamedChild("FormInfoItem")
    self.currentListings = self.postItemPane:GetNamedChild("FormInfoListingCount")
    self.invoice = self.postItemPane:GetNamedChild("FormInvoice")
    self.invoiceSellPrice = self.invoice:GetNamedChild("SellPriceAmount")
    self.invoiceListingFee = self.invoice:GetNamedChild("ListingFeePrice")
    self.invoiceTheirCut = self.invoice:GetNamedChild("TheirCutPrice")
    self.invoiceProfit = self.invoice:GetNamedChild("ProfitAmount")
    self:OnPendingPostItemUpdated(0, false)
end
function ZO_TradingHouseManager:InitializeBrowseItems(control)
    self.browseItemsLeftPane = control:GetNamedChild("BrowseItemsLeftPane")
    self.itemNameSearch = control:GetNamedChild("ItemNameSearch")
    self.itemNameSearchLabel = control:GetNamedChild("ItemNameSearchLabel")
    self.itemNameSearchAutoComplete = control:GetNamedChild("ItemNameSearchAutoComplete")
    self.itemPane = control:GetNamedChild("BrowseItemsRightPane")
    self.subcategoryTabsControl = control:GetNamedChild("SubcategoryTabs")
    self.nagivationBar = control:GetNamedChild("SearchControls")
    self.featureAreaControl = self.itemPane:GetNamedChild("FeatureArea")
    self.searchSortHeadersControl = self.itemPane:GetNamedChild("SearchSortBy")
    self.searchResultsList = self.itemPane:GetNamedChild("SearchResults")
    self.searchResultsMessageContainer = self.itemPane:GetNamedChild("SearchResultsMessageContainer")
    self.searchResultsMessageLabel = self.searchResultsMessageContainer:GetNamedChild("Message")
end
function ZO_TradingHouseManager:InitializeSearchSortHeaders(control)
    local sortHeaders = ZO_SortHeaderGroup:New(self.searchSortHeadersControl, true)
    self.searchSortHeaders = sortHeaders
    local function OnSortHeaderClicked(key, order)
        TRADING_HOUSE_SEARCH:ChangeSort(key, order)
    end
    sortHeaders:RegisterCallback(ZO_SortHeaderGroup.HEADER_CLICKED, OnSortHeaderClicked)
    sortHeaders:AddHeadersFromContainer()
    local DONT_FORCE_RESELECT = nil
    local sortKey, sortOrder = TRADING_HOUSE_SEARCH:GetSortOptions()
    sortHeaders:SelectHeaderByKey(sortKey, ZO_SortHeaderGroup.SUPPRESS_CALLBACKS, DONT_FORCE_RESELECT, sortOrder)
end
function ZO_TradingHouseManager:InitializeSearchNavigationBar(control)
    self.resultCount = self.nagivationBar:GetNamedChild("ResultCount")
    self.previousPage = self.nagivationBar:GetNamedChild("PreviousPage")
    self.nextPage = self.nagivationBar:GetNamedChild("NextPage")
    self.pageNumberLabel = self.nagivationBar:GetNamedChild("PageNumber")
    local moneyControl = self.nagivationBar:GetNamedChild("Money")
    local function UpdateMoney()
        self.playerMoney[CURT_MONEY] = GetCurrencyAmount(CURT_MONEY, CURRENCY_LOCATION_CHARACTER)
        ZO_CurrencyControl_SetSimpleCurrency(moneyControl, CURT_MONEY, self.playerMoney[CURT_MONEY], ZO_KEYBOARD_CURRENCY_OPTIONS)
    end
    moneyControl:RegisterForEvent(EVENT_MONEY_UPDATE, UpdateMoney)
    UpdateMoney()
    local function UpdateAlliancePoints()
        self.playerMoney[CURT_ALLIANCE_POINTS] = GetCurrencyAmount(CURT_ALLIANCE_POINTS, CURRENCY_LOCATION_CHARACTER)
    end
    moneyControl:RegisterForEvent(EVENT_ALLIANCE_POINT_UPDATE, UpdateAlliancePoints)
    self.previousPage:SetHandler("OnClicked", function() TRADING_HOUSE_SEARCH:SearchPreviousPage() end)
    self.nextPage:SetHandler("OnClicked", function() TRADING_HOUSE_SEARCH:SearchNextPage() end)
end
function ZO_TradingHouseManager:ToggleLevelRangeMode()
    if self.levelRangeFilterType == TRADING_HOUSE_FILTER_TYPE_LEVEL then
        self.levelRangeFilterType = TRADING_HOUSE_FILTER_TYPE_CHAMPION_POINTS
        self.levelRangeToggle:SetState(BSTATE_PRESSED, true)
        self.levelRangeLabel:SetText(GetString(SI_TRADING_HOUSE_BROWSE_CHAMPION_POINTS_RANGE_LABEL))
    else
        self.levelRangeFilterType = TRADING_HOUSE_FILTER_TYPE_LEVEL
        self.levelRangeToggle:SetState(BSTATE_NORMAL, false)
        self.levelRangeLabel:SetText(GetString(SI_TRADING_HOUSE_BROWSE_LEVEL_RANGE_LABEL))
    end
end
function ZO_TradingHouseManager:InitializeSearchTerms()
    local globalFeatureArea = self.browseItemsLeftPane:GetNamedChild("GlobalFeatureArea")
    -- Name Search
    local nameSearchFeature = ZO_TradingHouse_CreateKeyboardFeature("NameSearch")
    nameSearchFeature:AttachToControl(self.itemNameSearch, self.itemNameSearchAutoComplete)
    self.itemNameSearchLabel:SetText(nameSearchFeature:GetDisplayName())
    -- Category List
    local categoryListControl = self.browseItemsLeftPane:GetNamedChild("CategoryListContainer")
    local subCategoryTabsControl = self.subcategoryTabsControl
    local featuresParentControl = self.featureAreaControl
    local searchCategoryFeature = ZO_TradingHouse_CreateKeyboardFeature("SearchCategory")
    searchCategoryFeature:AttachToControl(categoryListControl, subCategoryTabsControl, featuresParentControl)
    -- Quality dropdown
    local qualityFeature = ZO_TradingHouse_CreateKeyboardFeature("Quality")
    qualityFeature:AttachToControl(globalFeatureArea:GetNamedChild("Quality"))
    -- Price range
    local priceRangeFeature = ZO_TradingHouse_CreateKeyboardFeature("PriceRange")
    priceRangeFeature:AttachToControl(globalFeatureArea:GetNamedChild("PriceRange"))
    self.features =
    {
        nameSearchFeature = nameSearchFeature,
        searchCategoryFeature = searchCategoryFeature,
        qualityFeature = qualityFeature,
        priceRangeFeature = priceRangeFeature,
    }
end
local SEARCH_RESULTS_DATA_TYPE = 1
local ITEM_LISTINGS_DATA_TYPE = 2
local GUILD_SPECIFIC_ITEM_DATA_TYPE = 3
local ITEM_RESULT_CURRENCY_OPTIONS =
{
    showTooltips = false,
    font = "ZoFontGameShadow",
    iconSide = RIGHT,
}
function ZO_TradingHouseManager:InitializeSearchResults(control)
    self.searchResultsControlsList = {}
    self.searchResultsInfoList = {}
    local function SetupBaseSearchResultRow(rowControl, result)
        self.searchResultsControlsList[#self.searchResultsControlsList + 1] = rowControl
        self.searchResultsInfoList[#self.searchResultsInfoList + 1] = result
        local nameControl = rowControl:GetNamedChild("Name")
        nameControl:SetText(ZO_TradingHouse_GetItemDataFormattedName(result))
        -- result.quality is deprecated, included here for addon backwards compatibility
        local displayQuality = result.displayQuality or result.quality
        local r, g, b = GetInterfaceColor(INTERFACE_COLOR_TYPE_ITEM_QUALITY_COLORS, displayQuality)
        nameControl:SetColor(r, g, b, 1)
        local traitInformationControl = GetControl(rowControl, "TraitInfo")
        traitInformationControl:ClearIcons()
        if not result.isGuildSpecificItem then
            local traitInformation = GetItemTraitInformationFromItemLink(result.itemLink)
            if traitInformation ~= ITEM_TRAIT_INFORMATION_NONE then
                traitInformationControl:AddIcon(ZO_GetPlatformTraitInformationIcon(traitInformation))
                traitInformationControl:Show()
            end
        end
        local sellPricePerUnitControl = rowControl:GetNamedChild("SellPricePerUnit")
        ZO_CurrencyControl_SetSimpleCurrency(sellPricePerUnitControl, result.currencyType, result.purchasePricePerUnit, ITEM_RESULT_CURRENCY_OPTIONS, nil, false)
        local sellPriceControl = rowControl:GetNamedChild("SellPrice")
        ZO_CurrencyControl_SetSimpleCurrency(sellPriceControl, result.currencyType, result.purchasePrice, ITEM_RESULT_CURRENCY_OPTIONS, nil, self.playerMoney[result.currencyType] < result.purchasePrice)
        local resultControl = rowControl:GetNamedChild("Button")
        ZO_Inventory_SetupSlot(resultControl, result.stackCount, result.icon)
        -- Cached for verification when the player tries to purchase this
        resultControl.sellerName = result.sellerName
        resultControl.purchasePrice = result.purchasePrice
        resultControl.currencyType = result.currencyType
        return resultControl
    end
    local function SetupSearchResultRow(rowControl, result)
        local resultControl = SetupBaseSearchResultRow(rowControl, result)
        local timeRemainingControl = GetControl(rowControl, "TimeRemaining")
        local timeRemainingString = ZO_TradingHouse_GetItemDataFormattedTime(result)
        timeRemainingControl:SetText(timeRemainingString)
        ZO_Inventory_BindSlot(resultControl, SLOT_TYPE_TRADING_HOUSE_ITEM_RESULT, result.slotIndex)
    end
    local function SetupGuildSpecificItemRow(rowControl, result)
        local resultControl = SetupBaseSearchResultRow(rowControl, result)
        ZO_Inventory_BindSlot(resultControl, SLOT_TYPE_GUILD_SPECIFIC_ITEM, result.slotIndex)
    end
    ZO_ScrollList_Initialize(self.searchResultsList)
    ZO_ScrollList_AddDataType(self.searchResultsList, SEARCH_RESULTS_DATA_TYPE, "ZO_TradingHouseSearchResult", 52, SetupSearchResultRow, nil, nil, ZO_InventorySlot_OnPoolReset)
    ZO_ScrollList_AddDataType(self.searchResultsList, GUILD_SPECIFIC_ITEM_DATA_TYPE, "ZO_TradingHouseSearchResult", 52, SetupGuildSpecificItemRow, nil, nil, ZO_InventorySlot_OnPoolReset)
    ZO_ScrollList_AddResizeOnScreenResize(self.searchResultsList)
end
function ZO_TradingHouseManager:InitializeListings(control)
    self.postedItemsHeader = control:GetNamedChild("PostedItemsHeader")
    local postedItemsList = control:GetNamedChild("PostedItemsList")
    self.postedItemsList = postedItemsList
    self.noPostedItemsContainer = control:GetNamedChild("PostedItemsNoItemsContainer")
    self.noPostedItemsLabel = self.noPostedItemsContainer:GetNamedChild("NoItems")
    local function CancelListing(cancelButton)
        local postedItem = cancelButton:GetParent():GetNamedChild("Button")
        local listingIndex = ZO_Inventory_GetSlotIndex(postedItem)
        self:ShowCancelListingConfirmation(listingIndex)
    end
    local function SetupPostedItemRow(rowControl, postedItem)
        local index = postedItem.slotIndex
        local nameControl = rowControl:GetNamedChild("Name")
        nameControl:SetText(zo_strformat(SI_TOOLTIP_ITEM_NAME, postedItem.name))
        -- postedItem.quality is deprecated, included here for addon backwards compatibility
        local displayQuality = postedItem.displayQuality or postedItem.quality
        local r, g, b = GetInterfaceColor(INTERFACE_COLOR_TYPE_ITEM_QUALITY_COLORS, displayQuality)
        nameControl:SetColor(r, g, b, 1)
        local timeRemainingControl = rowControl:GetNamedChild("TimeRemaining")
        timeRemainingControl:SetText(zo_strformat(SI_TRADING_HOUSE_BROWSE_ITEM_REMAINING_TIME, ZO_FormatTime(postedItem.timeRemaining, TIME_FORMAT_STYLE_SHOW_LARGEST_UNIT_DESCRIPTIVE, TIME_FORMAT_PRECISION_SECONDS, TIME_FORMAT_DIRECTION_DESCENDING)))
        local sellPriceControl = rowControl:GetNamedChild("SellPrice")
        ZO_CurrencyControl_SetSimpleCurrency(sellPriceControl, CURT_MONEY, postedItem.purchasePrice, ITEM_RESULT_CURRENCY_OPTIONS)
        local postedItemControl = rowControl:GetNamedChild("Button")
        ZO_Inventory_BindSlot(postedItemControl, SLOT_TYPE_TRADING_HOUSE_ITEM_LISTING, index)
        ZO_Inventory_SetupSlot(postedItemControl, postedItem.stackCount, postedItem.icon)
        local cancelButton = rowControl:GetNamedChild("CancelSale")
        cancelButton:SetHandler("OnClicked", CancelListing)
    end
    ZO_ScrollList_Initialize(postedItemsList)
    ZO_ScrollList_AddDataType(postedItemsList, ITEM_LISTINGS_DATA_TYPE, "ZO_TradingHouseItemListing", 52, SetupPostedItemRow, nil, nil, ZO_InventorySlot_OnPoolReset)
    ZO_ScrollList_AddResizeOnScreenResize(postedItemsList)
end
function ZO_TradingHouseManager:RebuildListingsScrollList()
    local list = self.postedItemsList
    local scrollData = ZO_ScrollList_GetDataList(list)
    for i = 1, GetNumTradingHouseListings() do
        local itemData = ZO_TradingHouse_CreateListingItemData(i)
        if itemData then
            scrollData[#scrollData + 1] = ZO_ScrollList_CreateDataEntry(ITEM_LISTINGS_DATA_TYPE, itemData)
        end
    end
    self.noPostedItemsLabel:SetHidden(#scrollData > 0)
end
function ZO_TradingHouseManager:OnPendingPostItemUpdated(slotId, isPending)
    self.pendingSaleIsValid = false
    if isPending then
        self.pendingItemSlot = slotId
        self:SetupPendingPost(slotId)
    else
        self.pendingItemSlot = nil
        self:ClearPendingPost()
    end
end
function ZO_TradingHouseManager:OnPostSuccess()
    -- convenience wrapper for clearing out the pending item and updating the post count
end
function ZO_TradingHouseManager:UpdateListingCounts()
    local currentListings, maxListings = GetTradingHouseListingCounts()
    if currentListings < maxListings then
        self.currentListings:SetText(zo_strformat(SI_TRADING_HOUSE_LISTING_COUNT, currentListings, maxListings))
    else
        self.currentListings:SetText(zo_strformat(SI_TRADING_HOUSE_LISTING_COUNT_FULL, currentListings, maxListings))
    end
end
local INVOICE_CURRENCY_OPTIONS =
{
    showTooltips = false,
    font = "ZoFontWinT1",
}
function ZO_TradingHouseManager:SetInvoicePriceColors(color)
    local r, g, b = color:UnpackRGB()
    self.invoiceListingFee:SetColor(r, g, b)
    self.invoiceTheirCut:SetColor(r, g, b)
    self.invoiceProfit:SetColor(r, g, b)
end
-- Only called from the CURRENCY_INPUT control callback chain
function ZO_TradingHouseManager:SetPendingPostPrice(sellPrice)
    sellPrice = tonumber(sellPrice) or 0
    self.invoiceSellPrice.sellPrice = sellPrice
    ZO_CurrencyControl_SetSimpleCurrency(self.invoiceSellPrice, CURT_MONEY, sellPrice, INVOICE_CURRENCY_OPTIONS)
    self:SetInvoicePriceColors(ZO_DEFAULT_ENABLED_COLOR)
    if self.pendingItemSlot then
        local listingFee, tradingHouseCut, profit = GetTradingHousePostPriceInfo(sellPrice)
        ZO_CurrencyControl_SetSimpleCurrency(self.invoiceListingFee, CURT_MONEY, listingFee, INVOICE_CURRENCY_OPTIONS)
        ZO_CurrencyControl_SetSimpleCurrency(self.invoiceTheirCut, CURT_MONEY, tradingHouseCut, INVOICE_CURRENCY_OPTIONS)
        ZO_CurrencyControl_SetSimpleCurrency(self.invoiceProfit, CURT_MONEY, profit, INVOICE_CURRENCY_OPTIONS)
        -- verify the user has enough cash
        if (GetCurrencyAmount(CURT_MONEY, CURRENCY_LOCATION_CHARACTER) - listingFee) >= 0 then
            self.pendingSaleIsValid = true
        else
            self.pendingSaleIsValid = false
            self:SetInvoicePriceColors(ZO_ERROR_COLOR)
        end
    else
        self.invoiceListingFee:SetText("0")
        self.invoiceTheirCut:SetText("0")
        self.invoiceProfit:SetText("0")
    end
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
end
function ZO_TradingHouseManager:GetPendingPostPrice()
    return self.invoiceSellPrice.sellPrice
end
function ZO_TradingHouseManager:SetupPendingPost()
    if self.pendingItemSlot then
        local icon, stackCount = GetItemInfo(BAG_BACKPACK, self.pendingItemSlot)
        ZO_Inventory_BindSlot(self.pendingItem, SLOT_TYPE_TRADING_HOUSE_POST_ITEM, self.pendingItemSlot, BAG_BACKPACK)
        ZO_ItemSlot_SetupSlot(self.pendingItem, stackCount, icon)
        self.pendingItemName:SetText(zo_strformat(SI_TOOLTIP_ITEM_NAME, GetItemName(BAG_BACKPACK, self.pendingItemSlot)))
        self.pendingItemBG:SetHidden(false)
        self.invoice:SetHidden(false)
        local initialPostPrice = ZO_TradingHouse_CalculateItemSuggestedPostPrice(BAG_BACKPACK, self.pendingItemSlot)
        self:SetPendingPostPrice(initialPostPrice)
        ZO_InventorySlot_HandleInventoryUpdate(self.pendingItem)
    end
end
function ZO_TradingHouseManager:ClearPendingPost()
    ZO_Inventory_BindSlot(self.pendingItem, SLOT_TYPE_TRADING_HOUSE_POST_ITEM)
    ZO_ItemSlot_SetupSlot(self.pendingItem, 0, "EsoUI/Art/TradingHouse/tradinghouse_emptySellSlot_icon.dds")
    self.pendingItemName:SetText(GetString(SI_TRADING_HOUSE_SELECT_AN_ITEM_TO_SELL))
    self.pendingItemBG:SetHidden(true)
    self.invoice:SetHidden(true)
    SetPendingItemPost(BAG_BACKPACK, 0, 0)
end
function ZO_TradingHouseManager:PostPendingItem()
    if self.pendingItemSlot and self.pendingSaleIsValid then
        local stackCount = ZO_InventorySlot_GetStackCount(self.pendingItem)
        local desiredPrice = self.invoiceSellPrice.sellPrice or 0
        RequestPostItemOnTradingHouse(BAG_BACKPACK, self.pendingItemSlot, stackCount, desiredPrice)
    end
end
function ZO_TradingHouseManager:RefreshListings()
    if HasTradingHouseListings() then
        self:RebuildListingsScrollList()
    else
        self:ClearListedItems()
        if TRADING_HOUSE_SEARCH:CanDoCommonOperation() then
            self.requestListings = false
            RequestTradingHouseListings()
        else
            -- only queue the request if we are not currently waiting for a listings response
            if not TRADING_HOUSE_SEARCH:IsWaitingForResponseType(TRADING_HOUSE_RESULT_LISTINGS_PENDING) then
                self.requestListings = true
            end
        end
    end
end
function ZO_TradingHouseManager:OnSearchStateChanged(searchState, searchOutcome)
    if searchState == TRADING_HOUSE_SEARCH_STATE_NONE then
        self.previousPage:SetHidden(true)
        self.nextPage:SetHidden(true)
        self.searchResultsMessageLabel:SetHidden(true)
        self.resultCount:SetHidden(true)
        self.pageNumberLabel:SetHidden(true)
    elseif searchState == TRADING_HOUSE_SEARCH_STATE_WAITING then
        --Update the page number while we're waiting for it to load (page number is 0 based). The page number label may not have been shown yet since we don't show it until the initial search completes, but
        --we update it here for when it does show.
        local targetPage = TRADING_HOUSE_SEARCH:GetTargetPage() or 0
        self.pageNumberLabel:SetText(targetPage + 1)
        
        --Clear the result count label until we know the number of results
        self.resultCount:SetText(zo_strformat(SI_TRADING_HOUSE_RESULT_COUNT, ""))
        
        self:ShowSearchResultMessage(GetString("SI_TRADINGHOUSESEARCHSTATE", searchState))
    elseif searchState == TRADING_HOUSE_SEARCH_STATE_COMPLETE then
        if searchOutcome == TRADING_HOUSE_SEARCH_OUTCOME_HAS_RESULTS then
            self.searchResultsMessageLabel:SetHidden(true)
            self:RebuildSearchResultsPage()
            ZO_ScrollList_ResetToTop(self.searchResultsList)
        else
            self.resultCount:SetText(zo_strformat(SI_TRADING_HOUSE_RESULT_COUNT, 0))
            self:ShowSearchResultMessage(GetString("SI_TRADINGHOUSESEARCHOUTCOME", searchOutcome))
        end
    end
end
function ZO_TradingHouseManager:OnAwaitingResponse(responseType)
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
end
function ZO_TradingHouseManager:OnResponseReceived(responseType, result)
    local success = result == TRADING_HOUSE_RESULT_SUCCESS
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
    if responseType == TRADING_HOUSE_RESULT_POST_PENDING then
        if success then
            self:OnPostSuccess()
            self:RefreshListings()
        end
    elseif responseType == TRADING_HOUSE_RESULT_SEARCH_PENDING then
        if success then
            -- Hide the fictional "awaiting search results" animation?
        end
    elseif responseType == TRADING_HOUSE_RESULT_PURCHASE_PENDING then
        if success then
            self:OnPurchaseSuccess()
        end
    elseif responseType == TRADING_HOUSE_RESULT_LISTINGS_PENDING then
        if success then
            self:RefreshListings()
            self.requestListings = false -- make sure that we don't request again right after we get an answer.
        end
    elseif responseType == TRADING_HOUSE_RESULT_CANCEL_SALE_PENDING then
        if success then
            -- Refresh all listings when the cancel goes through
            -- This doesn't need to ensure that the listings were received because the interface to cancel a listing requires that
            -- the listings have been received from the server.
            self:RefreshListings()
        end
    end
    if self.requestListings then
        self:RefreshListings()
    end
end
function ZO_TradingHouseManager:ShowSearchResultMessage(messageText)
    local list = self.searchResultsList
    self.previousPage:SetEnabled(false)
    self.nextPage:SetEnabled(false)
    self.searchResultsMessageLabel:SetHidden(false)
    self.searchResultsMessageLabel:SetText(messageText)
end
function ZO_TradingHouseManager:RebuildSearchResultsPage(isInitialResults)
    local list = self.searchResultsList
    local scrollData = ZO_ScrollList_GetDataList(list)
    local showingGuildSpecificItems = TRADING_HOUSE_SEARCH:ShouldShowGuildSpecificItems() or isInitialResults
    local numItemsOnPage = 0
    if showingGuildSpecificItems then
        for i = 1, GetNumGuildSpecificItems() do
            local result = self:CreateGuildSpecificItemData(i, GetGuildSpecificItemInfo)
            if result then
                scrollData[#scrollData + 1] = ZO_ScrollList_CreateDataEntry(GUILD_SPECIFIC_ITEM_DATA_TYPE, result)
                numItemsOnPage = numItemsOnPage + 1
            end
        end
    else
        for i = 1, TRADING_HOUSE_SEARCH:GetNumItemsOnPage() do
            local result = ZO_TradingHouse_CreateSearchResultItemData(i)
            if result then
                scrollData[#scrollData + 1] = ZO_ScrollList_CreateDataEntry(SEARCH_RESULTS_DATA_TYPE, result)
                numItemsOnPage = numItemsOnPage + 1
            end
        end
    end
    if showingGuildSpecificItems then
        --Don't show the search stats or controls for the guild specific items
        self.pageNumberLabel:SetHidden(true)
        self.resultCount:SetHidden(true)
        self.previousPage:SetHidden(true)
        self.nextPage:SetHidden(true)
    else
        self.previousPage:SetHidden(false)
        self.nextPage:SetHidden(false)
        local hasPreviousPage = TRADING_HOUSE_SEARCH:HasPreviousPage()
        local hasNextPage = TRADING_HOUSE_SEARCH:HasNextPage()
        self.previousPage:SetEnabled(hasPreviousPage)
        self.nextPage:SetEnabled(hasNextPage)
        --The page number is set above while waiting for results, but we don't show it until the first results arrive.
        self.pageNumberLabel:SetHidden(false)
        self.resultCount:SetHidden(false)
        self.resultCount:SetText(zo_strformat(SI_TRADING_HOUSE_RESULT_COUNT, numItemsOnPage))
    end
end
function ZO_TradingHouseManager:OnPurchaseSuccess()
end
function ZO_TradingHouseManager:ClearSearchResults()
    ZO_ScrollList_Clear(self.searchResultsList)
    ZO_ScrollList_Commit(self.searchResultsList)
    self.previousPage:SetHidden(true)
    self.nextPage:SetHidden(true)
    self.searchResultsMessageLabel:SetHidden(true)
    self.resultCount:SetHidden(true)
    self.pageNumberLabel:SetHidden(true)
end
function ZO_TradingHouseManager:ClearListedItems()
    ZO_ScrollList_Clear(self.postedItemsList)
    ZO_ScrollList_Commit(self.postedItemsList)
    self.noPostedItemsLabel:SetHidden(false)
end
function ZO_TradingHouseManager:ResetSearchTerms()
    for _, feature in pairs(self.features) do
        feature:ResetSearch()
    end
end
function ZO_TradingHouseManager:OpenTradingHouse()
    if not self.initialized then
        self:RunInitialSetup(self.control)
        self.initialized = true
    end
    self:SetCurrentMode(ZO_TRADING_HOUSE_MODE_BROWSE)
    TRADING_HOUSE_SEARCH:AssociateWithSearchFeatures(self.features)
    self.currentDisplayName = GetDisplayName()
end
function ZO_TradingHouseManager:CloseTradingHouse()
    SYSTEMS:HideScene(ZO_TRADING_HOUSE_SYSTEM_NAME)
    if self.initialized then
        self.currentDisplayName = nil
        self:SetCurrentMode(nil)
        ZO_MenuBar_ClearSelection(self.menuBar)
    end
    TRADING_HOUSE_SEARCH:DisassociateWithSearchFeatures()
end
function ZO_TradingHouseManager:TogglePreviewMode()
    ITEM_PREVIEW_KEYBOARD:ToggleInteractionCameraPreview(FRAME_TARGET_STANDARD_RIGHT_PANEL_FRAGMENT, FRAME_PLAYER_ON_SCENE_HIDDEN_FRAGMENT, RIGHT_BG_EMPTY_WORLD_ITEM_PREVIEW_OPTIONS_FRAGMENT)
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
end
function ZO_TradingHouseManager:PreviewSearchResult(tradingHouseIndex)
    if not ITEM_PREVIEW_KEYBOARD:IsInteractionCameraPreviewEnabled() then
        self:TogglePreviewMode()
    end
    ITEM_PREVIEW_KEYBOARD:ClearPreviewCollection()
    ITEM_PREVIEW_KEYBOARD:PreviewTradingHouseSearchResult(tradingHouseIndex)
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
end
--Override
function ZO_TradingHouseManager:SearchForItemLink(itemLink)
    if TRADING_HOUSE_SCENE:IsShowing() then
        TRADING_HOUSE_SEARCH:LoadSearchItem(itemLink)
        --Changing to browse will add the quaternary bind for preview so we need to get rid of the quaternary bind for search before that
        ZO_MenuBar_SelectDescriptor(self.menuBar, ZO_TRADING_HOUSE_MODE_BROWSE)
        TRADING_HOUSE_SEARCH:DoSearch()
    end
end
-- Select Active Guild for Trading House Dialog
----------------------
local function SelectTradingHouseGuildDialogInitialize(dialogControl, tradingHouseManager)
    local function SelectTradingHouseGuild(selectedGuildId)
        if selectedGuildId then
            SelectTradingHouseGuildId(selectedGuildId)
        end
    end
    local dialog = ZO_SelectGuildDialog:New(dialogControl, "SELECT_TRADING_HOUSE_GUILD", SelectTradingHouseGuild)
    dialog:SetTitle(SI_PROMPT_TITLE_SELECT_GUILD_STORE)
    dialog:SetPrompt(GetString(SI_SELECT_GUILD_STORE_INSTRUCTIONS))
end
function ZO_TradingHouseManager:UpdateStatus()
    if not self.changeGuildDialog then
        self.changeGuildDialog = ZO_SelectTradingHouseGuildDialog
        SelectTradingHouseGuildDialogInitialize(self.changeGuildDialog, self)
    end
end
function ZO_TradingHouseManager:OnOperationTimeout()
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
end
function ZO_TradingHouseManager:UpdateForGuildChange()
    local guildId = GetSelectedTradingHouseGuildId()
    if not IsPlayerInGuild(guildId) then
        -- Player is using a Guild Trader
        self:UpdateListingCounts()
        self:ClearListedItems()
        self:ClearPendingPost()
        self:ClearSearchResults()
        ZO_MenuBar_SelectDescriptor(self.menuBar, ZO_TRADING_HOUSE_MODE_BROWSE)
        ZO_MenuBar_SetDescriptorEnabled(self.menuBar, ZO_TRADING_HOUSE_MODE_SELL, false)
        ZO_MenuBar_SetDescriptorEnabled(self.menuBar, ZO_TRADING_HOUSE_MODE_LISTINGS, false)
    else
        -- Player is using a regular Guild Store
        local canSell = CanSellOnTradingHouse(guildId)
        self:UpdateListingCounts()
        if self:GetCurrentMode() == ZO_TRADING_HOUSE_MODE_LISTINGS then
            self:RefreshListings()
        end
        self:ClearPendingPost()
        self:ClearSearchResults()
        local IS_INITIAL_RESULTS = true
        self:RebuildSearchResultsPage(IS_INITIAL_RESULTS)
        KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
        if self:IsInSellMode() and not canSell then
            ZO_MenuBar_SelectDescriptor(self.menuBar, ZO_TRADING_HOUSE_MODE_BROWSE)
        end
        ZO_MenuBar_SetDescriptorEnabled(self.menuBar, ZO_TRADING_HOUSE_MODE_SELL, canSell)
        ZO_MenuBar_SetDescriptorEnabled(self.menuBar, ZO_TRADING_HOUSE_MODE_LISTINGS, true)
    end
    local _, guildName = GetCurrentTradingHouseGuildDetails()
    if guildName ~= "" then
        self.titleLabel:SetText(guildName)
    else
        self.titleLabel:SetText(GetString(SI_WINDOW_TITLE_TRADING_HOUSE))
    end
end
-- Utility to show a confirmation for some kind of trading house item (listing or search result)
local function SetupTradingHouseItemDialog(dialogControl, itemInfoFn, slotIndex, slotType, costLabelStringId)
    -- Item data is set up on the dialog control before the dialog is shown
    local icon, itemName, displayQuality, stackCount, _, _, purchasePrice, currencyType = itemInfoFn(slotIndex)
    local nameControl = dialogControl:GetNamedChild("ItemName")
    nameControl:SetText(zo_strformat(SI_TOOLTIP_ITEM_NAME, itemName))
    local r, g, b = GetInterfaceColor(INTERFACE_COLOR_TYPE_ITEM_QUALITY_COLORS, displayQuality)
    nameControl:SetColor(r, g, b, 1)
    local itemControl = dialogControl:GetNamedChild("Item")
    ZO_Inventory_BindSlot(itemControl, slotType, slotIndex)
    ZO_Inventory_SetupSlot(itemControl, stackCount, icon)
    local costControl = dialogControl:GetNamedChild("Cost")
    costControl:SetHidden(costLabelStringId == nil)
    if costLabelStringId then
        costControl:SetText(zo_strformat(costLabelStringId, ZO_Currency_FormatKeyboard(currencyType, purchasePrice, ZO_CURRENCY_FORMAT_WHITE_AMOUNT_ICON)))
    end
end
-- Confirm Item Purchase Dialog
local function PurchaseItemDialogInitialize(dialogControl, tradingHouseManager)
    ZO_Dialogs_RegisterCustomDialog("CONFIRM_TRADING_HOUSE_PURCHASE",
    {
        customControl = dialogControl,
        setup = function(self) SetupTradingHouseItemDialog(self, GetTradingHouseSearchResultItemInfo, self.purchaseIndex, SLOT_TYPE_TRADING_HOUSE_ITEM_RESULT, SI_TRADING_HOUSE_PURCHASE_ITEM_AMOUNT) end,
        title =
        {
            text = SI_TRADING_HOUSE_PURCHASE_ITEM_DIALOG_TITLE,
        },
        buttons =
        {
            [1] =
            {
                control =   GetControl(dialogControl, "Accept"),
                text =      SI_TRADING_HOUSE_PURCHASE_ITEM_DIALOG_CONFIRM,
                callback =  function(dialog)
                                ConfirmPendingItemPurchase()
                            end,
            },
            [2] =
            {
                control =   GetControl(dialogControl, "Cancel"),
                text =      SI_TRADING_HOUSE_PURCHASE_ITEM_DIALOG_CANCEL,
                callback =  function(dialog)
                                ClearPendingItemPurchase()
                            end,
            }
        }
    })
end
function ZO_TradingHouseManager:ConfirmPendingPurchase(pendingPurchaseIndex)
    if not self.purchaseDialog then
        self.purchaseDialog = ZO_TradingHousePurchaseItemDialog
        PurchaseItemDialogInitialize(self.purchaseDialog, self)
    end
    self.purchaseDialog.purchaseIndex = pendingPurchaseIndex
    ZO_Dialogs_ShowDialog("CONFIRM_TRADING_HOUSE_PURCHASE")
end
-- Confirm Guild Specific Item Purchase Dialog
local function PurchaseGuildSpecificItemDialogInitialize(dialogControl, tradingHouseManager)
    ZO_Dialogs_RegisterCustomDialog("CONFIRM_TRADING_HOUSE_GUILD_SPECIFIC_PURCHASE",
    {
        customControl = dialogControl,
        setup = function(self) SetupTradingHouseItemDialog(self, GetGuildSpecificItemInfo, self.guildSpecificItemIndex, SLOT_TYPE_GUILD_SPECIFIC_ITEM, SI_TRADING_HOUSE_PURCHASE_ITEM_AMOUNT) end,
        title =
        {
            text = SI_TRADING_HOUSE_PURCHASE_ITEM_DIALOG_TITLE,
        },
        buttons =
        {
            [1] =
            {
                control =   GetControl(dialogControl, "Accept"),
                text =      SI_TRADING_HOUSE_PURCHASE_ITEM_DIALOG_CONFIRM,
                callback =  function(dialog)
                                BuyGuildSpecificItem(dialog.guildSpecificItemIndex)
                                tradingHouseManager:HandleGuildSpecificPurchase(dialog.guildSpecificItemIndex)
                            end,
            },
            [2] =
            {
                control =   GetControl(dialogControl, "Cancel"),
                text =      SI_TRADING_HOUSE_PURCHASE_ITEM_DIALOG_CANCEL,
                callback =  function(dialog)
                                -- Do nothing
                            end,
            }
        }
    })
end
function ZO_TradingHouseManager:ConfirmPendingGuildSpecificPurchase(guildSpecificItemIndex)
    if not self.purchaseGuildSpecificDialog then
        self.purchaseGuildSpecificDialog = ZO_TradingHousePurchaseItemDialog
        PurchaseGuildSpecificItemDialogInitialize(self.purchaseGuildSpecificDialog, self)
    end
    self.purchaseGuildSpecificDialog.guildSpecificItemIndex = guildSpecificItemIndex
    ZO_Dialogs_ShowDialog("CONFIRM_TRADING_HOUSE_GUILD_SPECIFIC_PURCHASE")
end
function ZO_TradingHouseManager:HandleGuildSpecificPurchase(guildSpecificItemIndex)
    local purchasedItemValue = self.searchResultsInfoList[guildSpecificItemIndex].purchasePrice
    for i = 1, #self.searchResultsControlsList do
    
        local purchasePrice = self.searchResultsInfoList[i].purchasePrice
        local currencyType = self.searchResultsInfoList[i].currencyType
        local sellPriceControl = GetControl(self.searchResultsControlsList[i], "SellPrice")
        ZO_CurrencyControl_SetSimpleCurrency(sellPriceControl, currencyType, purchasePrice, ITEM_RESULT_CURRENCY_OPTIONS, nil, self.playerMoney[currencyType] - purchasedItemValue < purchasePrice)
    end
end
-- Cancel Listing Confirmation Dialog
local function CancelListingDialogInitialize(dialogControl, tradingHouseManager)
    ZO_Dialogs_RegisterCustomDialog("CONFIRM_TRADING_HOUSE_CANCEL_LISTING",
    {
        customControl = dialogControl,
        setup = function(self) SetupTradingHouseItemDialog(self, GetTradingHouseListingItemInfo, self.listingIndex, SLOT_TYPE_TRADING_HOUSE_ITEM_LISTING) end,
        title =
        {
            text = SI_TRADING_HOUSE_CANCEL_LISTING_DIALOG_TITLE,
        },
        buttons =
        {
            [1] =
            {
                control =   GetControl(dialogControl, "Accept"),
                text =      SI_TRADING_HOUSE_CANCEL_LISTING_DIALOG_CONFIRM,
                callback =  function(dialog)
                                CancelTradingHouseListing(dialog.listingIndex)
                                dialog.listingIndex = nil
                            end,
            },
            [2] =
            {
                control =   GetControl(dialogControl, "Cancel"),
                text =      SI_TRADING_HOUSE_CANCEL_LISTING_DIALOG_CANCEL,
                callback =  function(dialog)
                                dialog.listingIndex = nil
                            end,
            }
        }
    })
    -- Update the text on the cancel dialog (since it inherited from the purchase item dialog)
    dialogControl:GetNamedChild("Description"):SetText(GetString(SI_TRADING_HOUSE_CANCEL_LISTING_DIALOG_DESCRIPTION))
end
function ZO_TradingHouseManager:ShowCancelListingConfirmation(listingIndex)
    if not self.cancelListingDialog then
        self.cancelListingDialog = ZO_TradingHouseCancelListingDialog
        CancelListingDialogInitialize(self.cancelListingDialog, self)
    end
    self.cancelListingDialog.listingIndex = listingIndex
    ZO_Dialogs_ShowDialog("CONFIRM_TRADING_HOUSE_CANCEL_LISTING")
end
--[[
End of Dialog Section
--]]
function ZO_TradingHouseManager:CanBuyItem(inventorySlot)
    if not TRADING_HOUSE_SEARCH:IsAtTradingHouse() then
        return false
    end
    if inventorySlot.sellerName == self.currentDisplayName then
        return false
    end
    return true
end
function ZO_TradingHouseManager:VerifyBuyItemAndShowErrors(inventorySlot)
    if inventorySlot.purchasePrice > self.playerMoney[inventorySlot.currencyType] then
        ZO_AlertNoSuppression(UI_ALERT_CATEGORY_ALERT, SOUNDS.PLAYER_ACTION_INSUFFICIENT_GOLD, SI_TRADING_HOUSE_ERROR_NOT_ENOUGH_GOLD)
        return false
    end
    return true
end
function ZO_TradingHouseManager:RunInitialSetup(control)
    self.playerMoney = {}
end
local function SetPostPriceCallback(moneyInput, gold, eventType)
    local tradingHouse = moneyInput:GetContext()
    if eventType == "confirm" then
        tradingHouse:SetPendingPostPrice(gold)
        tradingHouse.invoiceSellPrice:SetHidden(false)
    elseif eventType == "cancel" then
        tradingHouse.invoiceSellPrice:SetHidden(false)
    end
end
function ZO_TradingHouseManager:BeginSetPendingPostPrice(anchorTo)
    if self:HasValidPendingItemPost() then
        self.invoiceSellPrice:SetHidden(true)
        CURRENCY_INPUT:SetContext(self)
        CURRENCY_INPUT:Show(SetPostPriceCallback, false, self:GetPendingPostPrice(), CURT_MONEY, anchorTo, 20)
    end
end
--[[ Globals ]]--
ZO_TRADING_HOUSE_SEARCH_RESULT_ITEM_ICON_MAX_WIDTH = 60 -- this is larger than the item icon to allow the icon to scale up
ZO_TRADING_HOUSE_SEARCH_RESULT_ITEM_NAME_WIDTH = 240
ZO_TRADING_HOUSE_SEARCH_RESULT_TRAIT_COLUMN_WIDTH = 42 -- this is larger than the trait icon to create a right margin
ZO_TRADING_HOUSE_SEARCH_RESULT_ITEM_NAME_WITHOUT_TRAIT_COLUMN_WIDTH = ZO_TRADING_HOUSE_SEARCH_RESULT_ITEM_NAME_WIDTH - ZO_TRADING_HOUSE_SEARCH_RESULT_TRAIT_COLUMN_WIDTH
ZO_TRADING_HOUSE_SEARCH_RESULT_TIME_LEFT_WIDTH = 60
ZO_TRADING_HOUSE_SEARCH_RESULT_UNIT_PRICE_WIDTH = 120
ZO_TRADING_HOUSE_SEARCH_RESULT_PRICE_WIDTH = 130
local function GetTradingHouseIndexForPreviewFromSlot(storeEntrySlot)
    local inventorySlot = ZO_InventorySlot_GetInventorySlotComponents(storeEntrySlot)
    local slotType = ZO_InventorySlot_GetType(inventorySlot)
    if slotType == SLOT_TYPE_TRADING_HOUSE_ITEM_RESULT then
        local tradingHouseIndex = ZO_Inventory_GetSlotIndex(inventorySlot)
        local itemLink = GetTradingHouseSearchResultItemLink(tradingHouseIndex)
        if CanItemLinkBePreviewed(itemLink) then
            return tradingHouseIndex
        end
    end
    return nil
end
function ZO_TradingHouse_OnSearchResultClicked(searchResultSlot, button)
    -- left button for an inventory slot click will only try and drag and drop, but that
    -- should be handled for us by the OnReceiveDrag handler, so if we left click
    -- we'll do our custom behavior
    if button ~= MOUSE_BUTTON_INDEX_LEFT then
        ZO_InventorySlot_OnSlotClicked(searchResultSlot, button)
    else
        local tradingHouseIndex = GetTradingHouseIndexForPreviewFromSlot(searchResultSlot)
        if tradingHouseIndex ~= nil then
            TRADING_HOUSE:PreviewSearchResult(tradingHouseIndex)
        end
    end
end
function ZO_TradingHouse_OnSearchResultMouseEnter(searchResultSlot)
    ZO_InventorySlot_OnMouseEnter(searchResultSlot)
    local tradingHouseIndex = GetTradingHouseIndexForPreviewFromSlot(searchResultSlot)
    local cursor = MOUSE_CURSOR_DO_NOT_CARE
    if tradingHouseIndex ~= nil then
        cursor = MOUSE_CURSOR_PREVIEW
    end
    WINDOW_MANAGER:SetMouseCursor(cursor)
end
function ZO_TradingHouse_OnSearchResultMouseExit(searchResultSlot)
    ZO_InventorySlot_OnMouseExit(searchResultSlot)
    WINDOW_MANAGER:SetMouseCursor(MOUSE_CURSOR_DO_NOT_CARE)
end
    ZO_InventorySlot_SetHighlightHidden(listPart, false)
    local slotData = control:GetParent().dataEntry.data
    if slotData.isGuildSpecificItem then
        return
    end
    local traitInformation = GetItemTraitInformationFromItemLink(slotData.itemLink)
    if traitInformation ~= ITEM_TRAIT_INFORMATION_NONE then
        local itemTrait = GetItemLinkTraitInfo(slotData.itemLink)
        local traitName = GetString("SI_ITEMTRAITTYPE", itemTrait)
        local traitInformationString = GetString("SI_ITEMTRAITINFORMATION", traitInformation)
        InitializeTooltip(InformationTooltip, control, TOPRIGHT, -10, 0, TOPLEFT)
        InformationTooltip:AddLine(zo_strformat(SI_INVENTORY_TRAIT_STATUS_TOOLTIP, traitName, ZO_SELECTED_TEXT:Colorize(traitInformationString)), "", ZO_NORMAL_TEXT:UnpackRGB())
    end
end
    ClearTooltip(InformationTooltip)
    ZO_InventorySlot_SetHighlightHidden(listPart, true)
end
    TRADING_HOUSE = ZO_TradingHouseManager:New(self)
    SYSTEMS:RegisterKeyboardObject(ZO_TRADING_HOUSE_SYSTEM_NAME, TRADING_HOUSE)
end