mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:57:24 +08:00
87 lines
2.9 KiB
C#
87 lines
2.9 KiB
C#
// 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 osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.UserInterface;
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
using osu.Framework.Logging;
|
|
using osu.Game.Online.API;
|
|
using osu.Game.Online.API.Requests;
|
|
using osu.Game.Resources.Localisation.Web;
|
|
|
|
namespace osu.Game.Beatmaps.Drawables.Cards.Buttons
|
|
{
|
|
public class FavouriteButton : BeatmapCardIconButton, IHasCurrentValue<BeatmapSetFavouriteState>
|
|
{
|
|
private readonly BindableWithCurrent<BeatmapSetFavouriteState> current;
|
|
|
|
public Bindable<BeatmapSetFavouriteState> Current
|
|
{
|
|
get => current.Current;
|
|
set => current.Current = value;
|
|
}
|
|
|
|
private readonly APIBeatmapSet beatmapSet;
|
|
|
|
private PostBeatmapFavouriteRequest favouriteRequest;
|
|
|
|
[Resolved]
|
|
private IAPIProvider api { get; set; }
|
|
|
|
public FavouriteButton(APIBeatmapSet beatmapSet)
|
|
{
|
|
current = new BindableWithCurrent<BeatmapSetFavouriteState>(new BeatmapSetFavouriteState(beatmapSet.HasFavourited, beatmapSet.FavouriteCount));
|
|
this.beatmapSet = beatmapSet;
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
Action = toggleFavouriteStatus;
|
|
current.BindValueChanged(_ => updateState(), true);
|
|
}
|
|
|
|
private void toggleFavouriteStatus()
|
|
{
|
|
var actionType = current.Value.Favourited ? BeatmapFavouriteAction.UnFavourite : BeatmapFavouriteAction.Favourite;
|
|
|
|
favouriteRequest?.Cancel();
|
|
favouriteRequest = new PostBeatmapFavouriteRequest(beatmapSet.OnlineID, actionType);
|
|
|
|
Enabled.Value = false;
|
|
favouriteRequest.Success += () =>
|
|
{
|
|
bool favourited = actionType == BeatmapFavouriteAction.Favourite;
|
|
|
|
current.Value = new BeatmapSetFavouriteState(favourited, current.Value.FavouriteCount + (favourited ? 1 : -1));
|
|
|
|
Enabled.Value = true;
|
|
};
|
|
favouriteRequest.Failure += e =>
|
|
{
|
|
Logger.Error(e, $"Failed to {actionType.ToString().ToLower()} beatmap: {e.Message}");
|
|
Enabled.Value = true;
|
|
};
|
|
|
|
api.Queue(favouriteRequest);
|
|
}
|
|
|
|
private void updateState()
|
|
{
|
|
if (current.Value.Favourited)
|
|
{
|
|
Icon.Icon = FontAwesome.Solid.Heart;
|
|
TooltipText = BeatmapsetsStrings.ShowDetailsUnfavourite;
|
|
}
|
|
else
|
|
{
|
|
Icon.Icon = FontAwesome.Regular.Heart;
|
|
TooltipText = BeatmapsetsStrings.ShowDetailsFavourite;
|
|
}
|
|
}
|
|
}
|
|
}
|