1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-15 11:14:06 +08:00
Files
osu-lazer/osu.Game/Users/ConfirmBlockActionDialog.cs
T
2025-06-13 14:52:56 +02:00

60 lines
2.0 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 System;
using osu.Framework.Allocation;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Localisation;
using osu.Game.Localisation;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Overlays;
using osu.Game.Overlays.Dialog;
using osu.Game.Overlays.Notifications;
namespace osu.Game.Users
{
public partial class ConfirmBlockActionDialog : DangerousActionDialog
{
private readonly APIUser user;
[Resolved]
private IAPIProvider api { get; set; } = null!;
[Resolved]
private NotificationOverlay? notifications { get; set; }
private ConfirmBlockActionDialog(APIUser user, LocalisableString text, Action<ConfirmBlockActionDialog> action)
{
this.user = user;
BodyText = text;
DangerousAction = () => action(this);
}
public static ConfirmBlockActionDialog Block(APIUser user) => new ConfirmBlockActionDialog(user, ContextMenuStrings.ConfirmBlockUser(user.Username), d => d.toggleBlock(true));
public static ConfirmBlockActionDialog Unblock(APIUser user) => new ConfirmBlockActionDialog(user, ContextMenuStrings.ConfirmUnblockUser(user.Username), d => d.toggleBlock(false));
private void toggleBlock(bool block)
{
APIRequest req = block ? new BlockUserRequest(user.OnlineID) : new UnblockUserRequest(user.OnlineID);
req.Success += () =>
{
api.UpdateLocalBlocks();
};
req.Failure += e =>
{
notifications?.Post(new SimpleNotification
{
Text = e.Message,
Icon = FontAwesome.Solid.Times,
});
};
api.Queue(req);
}
}
}