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 |
GROUP_FINDER_APPLICATIONS_LIST_ENTRY_SORT_KEYS =
{
--Sort keys correspond to functions from ZO_GroupFinderPendingApplicationData
[ "GetDisplayName" ] = { } ,
[ "GetCharacterName" ] = { } ,
[ "GetClassId" ] = { tiebreaker = "GetDisplayName" } ,
[ "GetChampionPoints" ] = { tiebreaker = "GetDisplayName" , isNumeric = true } ,
[ "GetLevel" ] = { tiebreaker = "GetChampionPoints" , isNumeric = true } ,
[ "GetRole" ] = { tiebreaker = "GetDisplayName" } ,
[ "GetEndTimeSeconds" ] = { tiebreaker = "GetDisplayName" , isNumeric = true } ,
}
end
--TODO GroupFinder: Verify which additional events we need to listen for
EVENT_MANAGER : RegisterForEvent ( "GroupFinder_ApplicationsList_Manager" , EVENT_GROUP_FINDER_CREATE_GROUP_LISTING_RESULT , function ( ) self : RefreshApplicationsData ( ) end )
EVENT_MANAGER : RegisterForEvent ( "GroupFinder_ApplicationsList_Manager" , EVENT_GROUP_FINDER_REMOVE_GROUP_LISTING_RESULT , function ( ) self : RefreshApplicationsData ( ) end )
EVENT_MANAGER : RegisterForEvent ( "GroupFinder_ApplicationsList_Manager" , EVENT_GROUP_FINDER_UPDATE_APPLICATIONS , function ( ) self : RefreshApplicationsData ( ) end )
EVENT_MANAGER : RegisterForEvent ( "GroupFinder_ApplicationsList_Manager" , EVENT_PLAYER_ACTIVATED , function ( ) self : RefreshApplicationsData ( ) end )
end
do
end
--If we haven't created a group listing we shouldn't have any application data
end
end
end
end
if optionalSortFunction then
return sortedApplicationsData
else
end
end
|