30 lines
844 B
Lua
30 lines
844 B
Lua
local CorePackages = game:GetService("CorePackages")
|
|
|
|
local Actions = CorePackages.AppTempCommon.LuaApp.Actions
|
|
local Requests = CorePackages.AppTempCommon.LuaApp.Http.Requests
|
|
|
|
local UsersGetFriendCount = require(Requests.UsersGetFriendCount)
|
|
local SetFriendCount = require(Actions.SetFriendCount)
|
|
|
|
local isNewFriendsEndpointsEnabled = require(CorePackages.AppTempCommon.LuaChat.Flags.isNewFriendsEndpointsEnabled)
|
|
|
|
return function(networkImpl)
|
|
return function(store)
|
|
return UsersGetFriendCount(networkImpl):andThen(function(result)
|
|
local data = result.responseBody
|
|
|
|
if isNewFriendsEndpointsEnabled() then
|
|
if data.count then
|
|
store:dispatch(SetFriendCount(data.count))
|
|
end
|
|
else
|
|
if data.success and data.count then
|
|
store:dispatch(SetFriendCount(data.count))
|
|
end
|
|
end
|
|
|
|
return data.count
|
|
end)
|
|
end
|
|
end
|