Back to Home

ESO Lua File v101041

ingame/guildfinder/keyboard/guildrecruitment_blacklist_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
------------------
-- Guild Finder --
------------------
ZO_GUILD_RECRUITMENT_BLACKLIST_KEYBOARD_NAME_COLUMN_SIZE = 550
ZO_GUILD_RECRUITMENT_BLACKLIST_KEYBOARD_ENTRY_HEIGHT = 32
ZO_GuildRecruitment_Blacklist_Keyboard = ZO_Object.MultiSubclass(ZO_GuildRecruitment_Blacklist_Shared, ZO_GuildFinder_Panel_Shared, ZO_SortFilterList)
function ZO_GuildRecruitment_Blacklist_Keyboard:New(...)
    return ZO_GuildRecruitment_Blacklist_Shared.New(self, ...)
end
function ZO_GuildRecruitment_Blacklist_Keyboard:Initialize(control)
    local function SetupRow(control, data)
        self:SetupRow(control, data)
    end
    ZO_GuildRecruitment_Blacklist_Shared.Initialize(self, control)
    ZO_GuildFinder_Panel_Shared.Initialize(self, control)
    ZO_SortFilterList.Initialize(self, control)
    ZO_ScrollList_AddDataType(self.list, ZO_GUILD_RECRUITMENT_BLACKLIST_ENTRY_TYPE, "ZO_GuildRecruitment_Blacklist_Row_Keyboard", ZO_GUILD_RECRUITMENT_BLACKLIST_KEYBOARD_ENTRY_HEIGHT, SetupRow)
    ZO_ScrollList_EnableHighlight(self.list, "ZO_ThinListHighlight")
    self:SetEmptyText(GetString(SI_GUILD_RECRUITMENT_BLACKLIST_EMPTY_LIST_TEXT))
    self.sortFunction = function(listEntry1, listEntry2) return self:CompareGuildBlacklistedPlayers(listEntry1, listEntry2) end
    self.sortHeaderGroup:SelectHeaderByKey("name")
end
function ZO_GuildRecruitment_Blacklist_Keyboard:InitializeKeybindDescriptors()
    self.keybindStripDescriptor =
    {
        alignment = KEYBIND_STRIP_ALIGN_CENTER,
        -- Add Player
        {
            name = GetString(SI_GUILD_RECRUITMENT_BLACKLIST_PLAYER_ACTION_TEXT),
            keybind = "UI_SHORTCUT_PRIMARY",
            enabled = function()
                if GetNumGuildBlacklistEntries(self.guildId) >= MAX_GUILD_BLACKLISTED_PLAYERS then
                    return false, GetString("SI_GUILDBLACKLISTRESPONSE", GUILD_BLACKLIST_RESPONSE_BLACKLIST_FULL)
                end
                return true
            end,
            callback = function()
                local data =
                {
                    guildId = self.guildId,
                }
                ZO_Dialogs_ShowPlatformDialog("GUILD_ADD_PLAYER_TO_BLACKLIST", data)
            end,
        },
    }
end
function ZO_GuildRecruitment_Blacklist_Keyboard:FilterScrollList()
    ZO_GuildRecruitment_Blacklist_Shared.FilterScrollList(self)
end
function ZO_GuildRecruitment_Blacklist_Keyboard:CompareGuildBlacklistedPlayers(listEntry1, listEntry2)
    return ZO_TableOrderingFunction(listEntry1.data, listEntry2.data, self.currentSortKey, ZO_GUILD_RECRUITMENT_BLACKLIST_ENTRY_SORT_KEYS, self.currentSortOrder)
end
function ZO_GuildRecruitment_Blacklist_Keyboard:SortScrollList()
    if self.currentSortKey ~= nil and self.currentSortOrder ~= nil then
        local scrollData = ZO_ScrollList_GetDataList(self.list)
        table.sort(scrollData, self.sortFunction)
    end
end
function ZO_GuildRecruitment_Blacklist_Keyboard:SetupRow(control, data)
    ZO_SortFilterList.SetupRow(self, control, data)
    ZO_GuildRecruitment_Blacklist_Shared.SetupRow(self, control, data)
    local noteControl = control:GetNamedChild("Note")
    noteControl:SetHidden(data.note == "")
end
function ZO_GuildRecruitment_Blacklist_Keyboard:Row_OnMouseEnter(control)
    ZO_SortFilterList.Row_OnMouseEnter(self, control)
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
end
function ZO_GuildRecruitment_Blacklist_Keyboard:Row_OnMouseExit(control)
    ZO_SortFilterList.Row_OnMouseExit(self, control)
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
end
function ZO_GuildRecruitment_Blacklist_Keyboard:Row_OnMouseUp(control, button, upInside)
    if button == MOUSE_BUTTON_INDEX_RIGHT and upInside then
        ClearMenu()
        local data = ZO_ScrollList_GetData(control)
        if data then
            if DoesPlayerHaveGuildPermission(self.guildId, GUILD_PERMISSION_MANAGE_BLACKLIST) then
                local dialogData = 
                {
                    displayName = data.name,
                    index = data.index,
                    note = data.note,
                    changedCallback = function(displayName, note)
                        local blacklistResult = SetGuildBlacklistNote(self.guildId, data.index, note)
                        if not ZO_GuildRecruitment_Manager.IsBlacklistResultSuccessful(blacklistResult) then
                            ZO_Dialogs_ShowPlatformDialog("GUILD_FINDER_BLACKLIST_FAILED", nil, { mainTextParams = { blacklistResult } })
                        end
                    end
                }
                AddMenuItem(GetString(SI_SOCIAL_MENU_EDIT_NOTE), function() ZO_Dialogs_ShowDialog("EDIT_NOTE", dialogData) end)
                self:ShowMenu(control)
            end
        end
    end
end
function ZO_GuildRecruitment_Blacklist_Keyboard:Row_Remove_OnMouseEnter(control)
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
end
function ZO_GuildRecruitment_Blacklist_Keyboard:Row_Remove_OnMouseExit(control)
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
end
function ZO_GuildRecruitment_Blacklist_Keyboard:Row_Remove_OnClicked(control)
    local data = ZO_ScrollList_GetData(control)
    if data then
        local blacklistResult = RemoveFromGuildBlacklist(data.guildId, data.index)
        if not ZO_GuildRecruitment_Manager.IsBlacklistResultSuccessful(blacklistResult) then
            ZO_Dialogs_ShowPlatformDialog("GUILD_FINDER_BLACKLIST_FAILED", nil, { mainTextParams = { blacklistResult } })
        end
    end
end
function ZO_GuildRecruitment_Blacklist_Keyboard:Row_Note_OnMouseEnter(control)
    local parentControl = control:GetParent()
    local data = ZO_ScrollList_GetData(parentControl)
    self.currentData = data
    if data then
        InitializeTooltip(InformationTooltip, control, RIGHT, -2, 0)
        SetTooltipText(InformationTooltip, data.note)
    end
end
function ZO_GuildRecruitment_Blacklist_Keyboard:Row_Note_OnMouseExit(control)
    ClearTooltip(InformationTooltip)
    self.currentData = nil
    KEYBIND_STRIP:UpdateKeybindButtonGroup(self.keybindStripDescriptor)
end
function ZO_GuildRecruitment_Blacklist_Keyboard:Row_Note_OnClicked(control)
    local parentControl = control:GetParent()
    local data = ZO_ScrollList_GetData(parentControl)
    if data then
        local dialogData = 
        {
            displayName = data.name,
            index = data.index,
            note = data.note,
            changedCallback = function(displayName, note)
                local blacklistResult = SetGuildBlacklistNote(self.guildId, data.index, note)
                if not ZO_GuildRecruitment_Manager.IsBlacklistResultSuccessful(blacklistResult) then
                    ZO_Dialogs_ShowPlatformDialog("GUILD_FINDER_BLACKLIST_FAILED", nil, { mainTextParams = { blacklistResult } })
                end
            end
        }
        ZO_Dialogs_ShowDialog("EDIT_NOTE", dialogData)
    end
end
function ZO_GuildRecruitment_Blacklist_Keyboard:OnShowing()
    ZO_GuildRecruitment_Blacklist_Shared.OnShowing(self)
    KEYBIND_STRIP:AddKeybindButtonGroup(self.keybindStripDescriptor)
end
function ZO_GuildRecruitment_Blacklist_Keyboard:OnHidden()
    KEYBIND_STRIP:RemoveKeybindButtonGroup(self.keybindStripDescriptor)
end
function ZO_GuildRecruitment_Blacklist_Keyboard:ShowCategory()
    ZO_GuildFinder_Panel_Shared.ShowCategory(self)
    if self:GetFragment():IsShowing() then
        ZO_GuildRecruitment_Blacklist_Shared.OnShowing(self)
    end
    KEYBIND_STRIP:AddKeybindButtonGroup(self.keybindStripDescriptor)
end
function ZO_GuildRecruitment_Blacklist_Keyboard:HideCategory()
    ZO_GuildFinder_Panel_Shared.HideCategory(self)
    KEYBIND_STRIP:RemoveKeybindButtonGroup(self.keybindStripDescriptor)
end
-- XML Functions
-----------------
    GUILD_RECRUITMENT_BLACKLIST_KEYBOARD:Row_OnMouseEnter(control)
end
    GUILD_RECRUITMENT_BLACKLIST_KEYBOARD:Row_OnMouseExit(control)
end
    GUILD_RECRUITMENT_BLACKLIST_KEYBOARD:Row_OnMouseUp(control, button, upInside)
end
    GUILD_RECRUITMENT_BLACKLIST_KEYBOARD:Row_Remove_OnMouseEnter(control)
end
    GUILD_RECRUITMENT_BLACKLIST_KEYBOARD:Row_Remove_OnMouseExit(control)
end
    GUILD_RECRUITMENT_BLACKLIST_KEYBOARD:Row_Remove_OnClicked(control)
end
    GUILD_RECRUITMENT_BLACKLIST_KEYBOARD:Row_Note_OnMouseEnter(control)
end
    GUILD_RECRUITMENT_BLACKLIST_KEYBOARD:Row_Note_OnMouseExit(control)
end
    GUILD_RECRUITMENT_BLACKLIST_KEYBOARD:Row_Note_OnClicked(control)
end
    GUILD_RECRUITMENT_BLACKLIST_KEYBOARD = ZO_GuildRecruitment_Blacklist_Keyboard:New(control)
end
    local function UpdateAddRestrictions(nameEditControl)
        local blacklistDisplayName = nameEditControl:GetText()
        local confirmButton = self:GetNamedChild("Confirm")
        local confirmButtonState = BSTATE_NORMAL
        local confirmButtonStateLocked = false
        local result = IsGuildBlacklistAccountNameValid(self.data.guildId, blacklistDisplayName)
        local errorText
        if not ZO_GuildRecruitment_Manager.IsBlacklistResultSuccessful(result) then
            confirmButtonState = BSTATE_DISABLED
            confirmButtonStateLocked = true
            if result ~= GUILD_BLACKLIST_RESPONSE_DISPLAY_NAME_EMPTY then
                errorText = zo_strformat(GetString("SI_GUILDBLACKLISTRESPONSE", result), blacklistDisplayName)
            end
        end
        confirmButton:SetState(confirmButtonState, confirmButtonLocked)
        if errorText then
            InitializeTooltip(InformationTooltip, nameEditControl, RIGHT, -35, 0)
            SetTooltipText(InformationTooltip, errorText, ZO_ERROR_COLOR:UnpackRGB())
        else
            ClearTooltip(InformationTooltip)
        end
    end
    local nameEdit = self:GetNamedChild("NameEdit")
    ZO_PreHookHandler(nameEdit, "OnTextChanged", function(editControl)
        UpdateAddRestrictions(editControl)
    end)
    ZO_Dialogs_RegisterCustomDialog("GUILD_ADD_PLAYER_TO_BLACKLIST",
    {
        title =
        {
            text = SI_GUILD_RECRUITMENT_BLACKLIST_ADD_PLAYER_DIALOG_TITLE,
        },
        mainText =
        {
            text = SI_GUILD_RECRUITMENT_BLACKLIST_ADD_PLAYER_DIALOG_DESCRIPTION,
        },
        canQueue = true,
        customControl = self,
        setup = function(dialog)
            local nameEditControl = dialog:GetNamedChild("NameEdit")
            nameEditControl:SetText("")
            dialog:GetNamedChild("NoteEdit"):SetText("")
            UpdateAddRestrictions(nameEditControl)
        end,
        buttons =
        {
            -- Yes Button
            {
                control = self:GetNamedChild("Confirm"),
                keybind = "DIALOG_PRIMARY",
                text = GetString(SI_YES),
                callback = function(dialog)
                    local nameControl = dialog:GetNamedChild("NameEdit")
                    local name = nameControl:GetText()
                    local noteControl = dialog:GetNamedChild("NoteEdit")
                    local note = noteControl:GetText()
                    local blacklistResult = AddToGuildBlacklistByDisplayName(dialog.data.guildId, name, note)
                    if not ZO_GuildRecruitment_Manager.IsAddedToBlacklistSuccessful(blacklistResult) then
                        ZO_Dialogs_ShowPlatformDialog("GUILD_FINDER_BLACKLIST_FAILED", nil, { mainTextParams = { blacklistResult } })
                    end
                end,
            },
            -- No Button
            {
                control = self:GetNamedChild("Cancel"),
                keybind = "DIALOG_NEGATIVE",
                text = GetString(SI_NO),
            },
        },
        finishedCallback = function()
            ClearTooltipImmediately(InformationTooltip)
        end,
    })
end