1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 07:47:27 +08:00
osu-lazer/osu.Game/Overlays/BeatmapSet/Buttons/FavouriteButton.cs

93 lines
3.0 KiB
C#
Raw Normal View History

// 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.
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2019-10-07 20:41:05 +08:00
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Sprites;
2019-07-22 19:35:18 +08:00
using osu.Game.Beatmaps;
2019-10-07 20:36:23 +08:00
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;
using osu.Game.Overlays.Notifications;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays.BeatmapSet.Buttons
2018-04-13 17:19:50 +08:00
{
2019-10-07 20:41:05 +08:00
public class FavouriteButton : HeaderButton, IHasTooltip
2018-04-13 17:19:50 +08:00
{
2019-07-22 19:35:18 +08:00
public readonly Bindable<BeatmapSetInfo> BeatmapSet = new Bindable<BeatmapSetInfo>();
2018-04-13 17:19:50 +08:00
2019-07-22 21:14:09 +08:00
private readonly Bindable<bool> favourited = new Bindable<bool>();
2019-10-07 20:36:23 +08:00
private PostBeatmapFavouriteRequest request;
private DimmedLoadingLayer loading;
2019-10-07 20:41:05 +08:00
public string TooltipText => (favourited.Value ? "Unfavourite" : "Favourite") + " this beatmapset";
[BackgroundDependencyLoader(true)]
private void load(IAPIProvider api, NotificationOverlay notifications)
2018-04-13 17:19:50 +08:00
{
SpriteIcon icon;
AddRange(new Drawable[]
{
icon = new SpriteIcon
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2019-04-02 18:55:24 +08:00
Icon = FontAwesome.Regular.Heart,
2018-04-13 17:19:50 +08:00
Size = new Vector2(18),
Shadow = false,
},
2019-10-07 20:36:23 +08:00
loading = new DimmedLoadingLayer(),
2018-04-13 17:19:50 +08:00
});
2019-07-22 19:35:18 +08:00
BeatmapSet.BindValueChanged(setInfo =>
{
if (setInfo.NewValue?.OnlineInfo?.HasFavourited == null)
return;
favourited.Value = setInfo.NewValue.OnlineInfo.HasFavourited;
});
favourited.ValueChanged += favourited =>
2018-04-13 17:19:50 +08:00
{
2019-10-07 20:36:23 +08:00
loading.Hide();
2019-10-07 20:41:05 +08:00
icon.Icon = favourited.NewValue ? FontAwesome.Solid.Heart : FontAwesome.Regular.Heart;
2018-04-13 17:19:50 +08:00
};
2019-10-07 20:36:23 +08:00
Action = () =>
{
if (loading.State.Value == Visibility.Visible)
return;
loading.Show();
request?.Cancel();
request = new PostBeatmapFavouriteRequest(BeatmapSet.Value?.OnlineBeatmapSetID ?? 0, favourited.Value ? BeatmapFavouriteAction.UnFavourite : BeatmapFavouriteAction.Favourite);
request.Success += () => favourited.Value = !favourited.Value;
request.Failure += exception =>
{
2019-11-12 18:34:20 +08:00
notifications.Post(new SimpleNotification
{
2019-11-12 18:34:20 +08:00
Text = exception.Message,
Icon = FontAwesome.Solid.Times,
});
loading.Hide();
};
2019-10-07 20:36:23 +08:00
api.Queue(request);
};
2018-04-13 17:19:50 +08:00
}
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
Width = DrawHeight;
}
}
}