1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 09:47:22 +08:00

117 lines
3.7 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 18:19:50 +09:00
2019-11-12 21:38:08 +09:00
using System.Diagnostics;
2018-04-13 18:19:50 +09:00
using osu.Framework.Allocation;
2019-02-21 19:04:31 +09:00
using osu.Framework.Bindables;
2018-04-13 18:19:50 +09:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2019-10-07 15:41:05 +03:00
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Sprites;
2019-07-22 14:35:18 +03:00
using osu.Game.Beatmaps;
2019-10-07 15:36:23 +03:00
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;
using osu.Game.Overlays.Notifications;
2019-11-13 12:13:33 +09:00
using osu.Game.Users;
2018-11-20 16:51:59 +09:00
using osuTK;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Overlays.BeatmapSet.Buttons
2018-04-13 18:19:50 +09:00
{
2019-10-07 15:41:05 +03:00
public class FavouriteButton : HeaderButton, IHasTooltip
2018-04-13 18:19:50 +09:00
{
2019-07-22 14:35:18 +03:00
public readonly Bindable<BeatmapSetInfo> BeatmapSet = new Bindable<BeatmapSetInfo>();
2018-04-13 18:19:50 +09:00
2019-11-12 21:38:08 +09:00
private readonly BindableBool favourited = new BindableBool();
2019-07-22 22:14:09 +09:00
2019-10-07 15:36:23 +03:00
private PostBeatmapFavouriteRequest request;
private DimmedLoadingLayer loading;
2019-11-13 12:13:33 +09:00
private readonly Bindable<User> localUser = new Bindable<User>();
public string TooltipText
{
get
{
if (!Enabled.Value) return string.Empty;
return (favourited.Value ? "Unfavourite" : "Favourite") + " this beatmapset";
}
}
2019-10-07 15:41:05 +03:00
[BackgroundDependencyLoader(true)]
private void load(IAPIProvider api, NotificationOverlay notifications)
2018-04-13 18:19:50 +09:00
{
SpriteIcon icon;
2019-11-13 12:13:33 +09:00
2018-04-13 18:19:50 +09:00
AddRange(new Drawable[]
{
icon = new SpriteIcon
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2019-04-02 19:55:24 +09:00
Icon = FontAwesome.Regular.Heart,
2018-04-13 18:19:50 +09:00
Size = new Vector2(18),
Shadow = false,
},
loading = new DimmedLoadingLayer(0.8f, 0.5f),
2018-04-13 18:19:50 +09:00
});
2019-10-07 15:36:23 +03:00
Action = () =>
{
if (loading.State.Value == Visibility.Visible)
return;
2019-11-13 00:00:08 +03:00
// guaranteed by disabled state above.
2019-11-12 21:38:08 +09:00
Debug.Assert(BeatmapSet.Value.OnlineBeatmapSetID != null);
2019-10-07 15:36:23 +03:00
loading.Show();
request?.Cancel();
2019-11-12 21:38:08 +09:00
request = new PostBeatmapFavouriteRequest(BeatmapSet.Value.OnlineBeatmapSetID.Value, favourited.Value ? BeatmapFavouriteAction.UnFavourite : BeatmapFavouriteAction.Favourite);
request.Success += () =>
{
favourited.Toggle();
loading.Hide();
};
request.Failure += e =>
{
notifications?.Post(new SimpleNotification
{
2019-11-12 21:38:08 +09:00
Text = e.Message,
2019-11-12 19:34:20 +09:00
Icon = FontAwesome.Solid.Times,
});
2019-11-12 21:38:08 +09:00
2019-11-12 19:34:20 +09:00
loading.Hide();
};
2019-11-12 21:38:08 +09:00
2019-10-07 15:36:23 +03:00
api.Queue(request);
};
2019-11-13 12:13:33 +09:00
favourited.ValueChanged += favourited => icon.Icon = favourited.NewValue ? FontAwesome.Solid.Heart : FontAwesome.Regular.Heart;
localUser.BindTo(api.LocalUser);
localUser.BindValueChanged(_ => updateEnabled());
// must be run after setting the Action to ensure correct enabled state (setting an Action forces a button to be enabled).
BeatmapSet.BindValueChanged(setInfo =>
{
updateEnabled();
favourited.Value = setInfo.NewValue?.OnlineInfo?.HasFavourited ?? false;
}, true);
2018-04-13 18:19:50 +09:00
}
2019-11-13 12:13:33 +09:00
private void updateEnabled() => Enabled.Value = !(localUser.Value is GuestUser) && BeatmapSet.Value?.OnlineBeatmapSetID > 0;
2018-04-13 18:19:50 +09:00
protected override void UpdateAfterChildren()
{
base.UpdateAfterChildren();
Width = DrawHeight;
}
}
}