mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 10:47:28 +08:00
105 lines
3.6 KiB
C#
105 lines
3.6 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.Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
|
using osu.Game.Resources.Localisation.Web;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Overlays.Comments
|
|
{
|
|
public class ReportCommentPopover : OsuPopover
|
|
{
|
|
private readonly Action<CommentReportReason, string> action;
|
|
private OsuEnumDropdown<CommentReportReason> reason = null!;
|
|
private OsuTextBox info = null!;
|
|
private ShakeContainer shaker = null!;
|
|
|
|
public ReportCommentPopover(Action<CommentReportReason, string> action)
|
|
{
|
|
this.action = action;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
Child = new FillFlowContainer
|
|
{
|
|
Direction = FillDirection.Vertical,
|
|
Width = 500,
|
|
AutoSizeAxes = Axes.Y,
|
|
Spacing = new Vector2(7),
|
|
Children = new Drawable[]
|
|
{
|
|
new OsuSpriteText
|
|
{
|
|
Origin = Anchor.TopCentre,
|
|
Anchor = Anchor.TopCentre,
|
|
Text = UsersStrings.ReportReason,
|
|
Font = OsuFont.Torus.With(size: 20),
|
|
},
|
|
reason = new OsuEnumDropdown<CommentReportReason>
|
|
{
|
|
RelativeSizeAxes = Axes.X
|
|
},
|
|
new OsuSpriteText
|
|
{
|
|
Origin = Anchor.TopCentre,
|
|
Anchor = Anchor.TopCentre,
|
|
Text = UsersStrings.ReportComments,
|
|
Font = OsuFont.Torus.With(size: 20),
|
|
},
|
|
info = new OsuTextBox
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
PlaceholderText = UsersStrings.ReportPlaceholder
|
|
},
|
|
new Container
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Child = shaker = new ShakeContainer
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Child = new RoundedButton
|
|
{
|
|
Origin = Anchor.TopCentre,
|
|
Anchor = Anchor.TopCentre,
|
|
Width = 200,
|
|
BackgroundColour = colours.Red3,
|
|
Text = UsersStrings.ReportActionsSend,
|
|
Action = send,
|
|
Margin = new MarginPadding { Bottom = 5, Top = 10 },
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
private void send()
|
|
{
|
|
string infoValue = info.Current.Value;
|
|
var reasonValue = reason.Current.Value;
|
|
|
|
if (string.IsNullOrWhiteSpace(infoValue))
|
|
{
|
|
shaker.Shake();
|
|
return;
|
|
}
|
|
|
|
this.HidePopover();
|
|
action.Invoke(reasonValue, infoValue);
|
|
}
|
|
}
|
|
}
|