// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

using System.Threading;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Online.Leaderboards;
using osu.Game.Online.Rooms;

namespace osu.Game.Screens.OnlinePlay.Match.Components
{
    public partial class MatchLeaderboard : Leaderboard<MatchLeaderboardScope, APIUserScoreAggregate>
    {
        [Resolved(typeof(Room), nameof(Room.RoomID))]
        private Bindable<long?> roomId { get; set; } = null!;

        [BackgroundDependencyLoader]
        private void load()
        {
            roomId.BindValueChanged(id =>
            {
                if (id.NewValue == null)
                    return;

                SetScores(null);
                RefetchScores();
            }, true);
        }

        protected override bool IsOnlineScope => true;

        protected override APIRequest? FetchScores(CancellationToken cancellationToken)
        {
            if (roomId.Value == null)
                return null;

            var req = new GetRoomLeaderboardRequest(roomId.Value ?? 0);

            req.Success += r => Schedule(() =>
            {
                if (cancellationToken.IsCancellationRequested)
                    return;

                SetScores(r.Leaderboard, r.UserScore);
            });

            return req;
        }

        protected override LeaderboardScore CreateDrawableScore(APIUserScoreAggregate model, int index) => new MatchLeaderboardScore(model, index);

        protected override LeaderboardScore CreateDrawableTopScore(APIUserScoreAggregate model) => new MatchLeaderboardScore(model, model.Position, false);
    }

    public enum MatchLeaderboardScope
    {
        Overall
    }
}