mirror of
https://github.com/osukey/osukey.git
synced 2025-05-29 09:27:18 +09:00
abstract ReportPopover
This commit is contained in:
parent
b37f1cce3f
commit
ffa32307c3
114
osu.Game/Graphics/UserInterfaceV2/ReportPopover.cs
Normal file
114
osu.Game/Graphics/UserInterfaceV2/ReportPopover.cs
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
// 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.Framework.Graphics.Sprites;
|
||||||
|
using osu.Framework.Localisation;
|
||||||
|
using osu.Game.Graphics.Containers;
|
||||||
|
using osu.Game.Graphics.Sprites;
|
||||||
|
using osu.Game.Graphics.UserInterface;
|
||||||
|
using osu.Game.Resources.Localisation.Web;
|
||||||
|
using osuTK;
|
||||||
|
|
||||||
|
namespace osu.Game.Graphics.UserInterfaceV2
|
||||||
|
{
|
||||||
|
public abstract partial class ReportPopover<T> : OsuPopover
|
||||||
|
where T : struct, Enum
|
||||||
|
{
|
||||||
|
public Action<T, string>? Action;
|
||||||
|
|
||||||
|
private OsuEnumDropdown<T> reasonDropdown = null!;
|
||||||
|
private OsuTextBox commentsTextBox = null!;
|
||||||
|
private RoundedButton submitButton = null!;
|
||||||
|
|
||||||
|
public bool CanSubmitEmptyReason = false;
|
||||||
|
public LocalisableString Header;
|
||||||
|
|
||||||
|
protected ReportPopover(LocalisableString headerString)
|
||||||
|
{
|
||||||
|
Header = headerString;
|
||||||
|
}
|
||||||
|
|
||||||
|
[BackgroundDependencyLoader]
|
||||||
|
private void load(OsuColour colours)
|
||||||
|
{
|
||||||
|
Child = new ReverseChildIDFillFlowContainer<Drawable>
|
||||||
|
{
|
||||||
|
Direction = FillDirection.Vertical,
|
||||||
|
Width = 500,
|
||||||
|
AutoSizeAxes = Axes.Y,
|
||||||
|
Spacing = new Vector2(7),
|
||||||
|
Children = new Drawable[]
|
||||||
|
{
|
||||||
|
new SpriteIcon
|
||||||
|
{
|
||||||
|
Origin = Anchor.TopCentre,
|
||||||
|
Anchor = Anchor.TopCentre,
|
||||||
|
Icon = FontAwesome.Solid.ExclamationTriangle,
|
||||||
|
Size = new Vector2(36),
|
||||||
|
},
|
||||||
|
new OsuSpriteText
|
||||||
|
{
|
||||||
|
Origin = Anchor.TopCentre,
|
||||||
|
Anchor = Anchor.TopCentre,
|
||||||
|
Text = Header,
|
||||||
|
Font = OsuFont.Torus.With(size: 25),
|
||||||
|
Margin = new MarginPadding { Bottom = 10 }
|
||||||
|
},
|
||||||
|
new OsuSpriteText
|
||||||
|
{
|
||||||
|
Origin = Anchor.TopCentre,
|
||||||
|
Anchor = Anchor.TopCentre,
|
||||||
|
Text = UsersStrings.ReportReason,
|
||||||
|
},
|
||||||
|
new Container
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.X,
|
||||||
|
Height = 40,
|
||||||
|
Child = reasonDropdown = new OsuEnumDropdown<T>
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.X
|
||||||
|
}
|
||||||
|
},
|
||||||
|
new OsuSpriteText
|
||||||
|
{
|
||||||
|
Origin = Anchor.TopCentre,
|
||||||
|
Anchor = Anchor.TopCentre,
|
||||||
|
Text = UsersStrings.ReportComments,
|
||||||
|
},
|
||||||
|
commentsTextBox = new OsuTextBox
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.X,
|
||||||
|
PlaceholderText = UsersStrings.ReportPlaceholder,
|
||||||
|
},
|
||||||
|
submitButton = new RoundedButton
|
||||||
|
{
|
||||||
|
Origin = Anchor.TopCentre,
|
||||||
|
Anchor = Anchor.TopCentre,
|
||||||
|
Width = 200,
|
||||||
|
BackgroundColour = colours.Red3,
|
||||||
|
Text = UsersStrings.ReportActionsSend,
|
||||||
|
Action = () =>
|
||||||
|
{
|
||||||
|
Action?.Invoke(reasonDropdown.Current.Value, commentsTextBox.Text);
|
||||||
|
this.HidePopover();
|
||||||
|
},
|
||||||
|
Margin = new MarginPadding { Bottom = 5, Top = 10 },
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
if (!CanSubmitEmptyReason)
|
||||||
|
{
|
||||||
|
commentsTextBox.Current.BindValueChanged(e =>
|
||||||
|
{
|
||||||
|
submitButton.Enabled.Value = !string.IsNullOrWhiteSpace(e.NewValue);
|
||||||
|
}, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,106 +1,18 @@
|
|||||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
// 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.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
using System;
|
|
||||||
using osu.Framework.Allocation;
|
|
||||||
using osu.Framework.Audio;
|
|
||||||
using osu.Framework.Extensions;
|
|
||||||
using osu.Framework.Graphics;
|
|
||||||
using osu.Framework.Graphics.Containers;
|
|
||||||
using osu.Framework.Graphics.Sprites;
|
|
||||||
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.Graphics.UserInterfaceV2;
|
||||||
using osu.Game.Online.API.Requests.Responses;
|
using osu.Game.Online.API.Requests.Responses;
|
||||||
using osu.Game.Resources.Localisation.Web;
|
using osu.Game.Resources.Localisation.Web;
|
||||||
using osuTK;
|
|
||||||
|
|
||||||
namespace osu.Game.Overlays.Chat
|
namespace osu.Game.Overlays.Chat
|
||||||
{
|
{
|
||||||
public partial class ReportChatPopover : OsuPopover
|
public partial class ReportChatPopover : ReportPopover<ChatReportReason>
|
||||||
{
|
{
|
||||||
public Action<ChatReportReason, string>? Action;
|
|
||||||
|
|
||||||
private readonly APIUser? user;
|
|
||||||
|
|
||||||
private OsuEnumDropdown<ChatReportReason> reasonDropdown = null!;
|
|
||||||
private OsuTextBox commentsTextBox = null!;
|
|
||||||
|
|
||||||
public ReportChatPopover(APIUser? user)
|
public ReportChatPopover(APIUser? user)
|
||||||
|
: base(ReportStrings.UserTitle(user?.Username ?? @"Someone"))
|
||||||
{
|
{
|
||||||
this.user = user;
|
CanSubmitEmptyReason = true;
|
||||||
}
|
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
|
||||||
private void load(OsuColour colours, AudioManager audio)
|
|
||||||
{
|
|
||||||
Child = new ReverseChildIDFillFlowContainer<Drawable>
|
|
||||||
{
|
|
||||||
Direction = FillDirection.Vertical,
|
|
||||||
Width = 500,
|
|
||||||
AutoSizeAxes = Axes.Y,
|
|
||||||
Spacing = new Vector2(7),
|
|
||||||
Children = new Drawable[]
|
|
||||||
{
|
|
||||||
new SpriteIcon
|
|
||||||
{
|
|
||||||
Origin = Anchor.TopCentre,
|
|
||||||
Anchor = Anchor.TopCentre,
|
|
||||||
Icon = FontAwesome.Solid.ExclamationTriangle,
|
|
||||||
Size = new Vector2(36),
|
|
||||||
},
|
|
||||||
new OsuSpriteText
|
|
||||||
{
|
|
||||||
Origin = Anchor.TopCentre,
|
|
||||||
Anchor = Anchor.TopCentre,
|
|
||||||
Text = ReportStrings.UserTitle(user?.Username ?? @"Someone"),
|
|
||||||
Font = OsuFont.Torus.With(size: 25),
|
|
||||||
Margin = new MarginPadding { Bottom = 10 }
|
|
||||||
},
|
|
||||||
new OsuSpriteText
|
|
||||||
{
|
|
||||||
Origin = Anchor.TopCentre,
|
|
||||||
Anchor = Anchor.TopCentre,
|
|
||||||
Text = UsersStrings.ReportReason,
|
|
||||||
},
|
|
||||||
new Container
|
|
||||||
{
|
|
||||||
RelativeSizeAxes = Axes.X,
|
|
||||||
Height = 40,
|
|
||||||
Child = reasonDropdown = new OsuEnumDropdown<ChatReportReason>
|
|
||||||
{
|
|
||||||
RelativeSizeAxes = Axes.X
|
|
||||||
}
|
|
||||||
},
|
|
||||||
new OsuSpriteText
|
|
||||||
{
|
|
||||||
Origin = Anchor.TopCentre,
|
|
||||||
Anchor = Anchor.TopCentre,
|
|
||||||
Text = UsersStrings.ReportComments,
|
|
||||||
},
|
|
||||||
commentsTextBox = new OsuTextBox
|
|
||||||
{
|
|
||||||
RelativeSizeAxes = Axes.X,
|
|
||||||
PlaceholderText = UsersStrings.ReportPlaceholder,
|
|
||||||
},
|
|
||||||
new RoundedButton
|
|
||||||
{
|
|
||||||
Origin = Anchor.TopCentre,
|
|
||||||
Anchor = Anchor.TopCentre,
|
|
||||||
Width = 200,
|
|
||||||
BackgroundColour = colours.Red3,
|
|
||||||
Text = UsersStrings.ReportActionsSend,
|
|
||||||
Action = () =>
|
|
||||||
{
|
|
||||||
Action?.Invoke(reasonDropdown.Current.Value, commentsTextBox.Text);
|
|
||||||
this.HidePopover();
|
|
||||||
},
|
|
||||||
Margin = new MarginPadding { Bottom = 5, Top = 10 },
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,111 +1,17 @@
|
|||||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
// 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.
|
// 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.Framework.Graphics.Sprites;
|
|
||||||
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.Graphics.UserInterfaceV2;
|
||||||
using osu.Game.Online.API.Requests.Responses;
|
using osu.Game.Online.API.Requests.Responses;
|
||||||
using osu.Game.Resources.Localisation.Web;
|
using osu.Game.Resources.Localisation.Web;
|
||||||
using osuTK;
|
|
||||||
|
|
||||||
namespace osu.Game.Overlays.Comments
|
namespace osu.Game.Overlays.Comments
|
||||||
{
|
{
|
||||||
public partial class ReportCommentPopover : OsuPopover
|
public partial class ReportCommentPopover : ReportPopover<CommentReportReason>
|
||||||
{
|
{
|
||||||
public Action<CommentReportReason, string>? Action;
|
|
||||||
|
|
||||||
private readonly Comment? comment;
|
|
||||||
|
|
||||||
private OsuEnumDropdown<CommentReportReason> reasonDropdown = null!;
|
|
||||||
private OsuTextBox commentsTextBox = null!;
|
|
||||||
private RoundedButton submitButton = null!;
|
|
||||||
|
|
||||||
public ReportCommentPopover(Comment? comment)
|
public ReportCommentPopover(Comment? comment)
|
||||||
|
: base(ReportStrings.CommentTitle(comment?.User?.Username ?? comment?.LegacyName ?? @"Someone"))
|
||||||
{
|
{
|
||||||
this.comment = comment;
|
|
||||||
}
|
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
|
||||||
private void load(OsuColour colours)
|
|
||||||
{
|
|
||||||
Child = new ReverseChildIDFillFlowContainer<Drawable>
|
|
||||||
{
|
|
||||||
Direction = FillDirection.Vertical,
|
|
||||||
Width = 500,
|
|
||||||
AutoSizeAxes = Axes.Y,
|
|
||||||
Spacing = new Vector2(7),
|
|
||||||
Children = new Drawable[]
|
|
||||||
{
|
|
||||||
new SpriteIcon
|
|
||||||
{
|
|
||||||
Origin = Anchor.TopCentre,
|
|
||||||
Anchor = Anchor.TopCentre,
|
|
||||||
Icon = FontAwesome.Solid.ExclamationTriangle,
|
|
||||||
Size = new Vector2(36),
|
|
||||||
},
|
|
||||||
new OsuSpriteText
|
|
||||||
{
|
|
||||||
Origin = Anchor.TopCentre,
|
|
||||||
Anchor = Anchor.TopCentre,
|
|
||||||
Text = ReportStrings.CommentTitle(comment?.User?.Username ?? comment?.LegacyName ?? @"Someone"),
|
|
||||||
Font = OsuFont.Torus.With(size: 25),
|
|
||||||
Margin = new MarginPadding { Bottom = 10 }
|
|
||||||
},
|
|
||||||
new OsuSpriteText
|
|
||||||
{
|
|
||||||
Origin = Anchor.TopCentre,
|
|
||||||
Anchor = Anchor.TopCentre,
|
|
||||||
Text = UsersStrings.ReportReason,
|
|
||||||
},
|
|
||||||
new Container
|
|
||||||
{
|
|
||||||
RelativeSizeAxes = Axes.X,
|
|
||||||
Height = 40,
|
|
||||||
Child = reasonDropdown = new OsuEnumDropdown<CommentReportReason>
|
|
||||||
{
|
|
||||||
RelativeSizeAxes = Axes.X
|
|
||||||
}
|
|
||||||
},
|
|
||||||
new OsuSpriteText
|
|
||||||
{
|
|
||||||
Origin = Anchor.TopCentre,
|
|
||||||
Anchor = Anchor.TopCentre,
|
|
||||||
Text = UsersStrings.ReportComments,
|
|
||||||
},
|
|
||||||
commentsTextBox = new OsuTextBox
|
|
||||||
{
|
|
||||||
RelativeSizeAxes = Axes.X,
|
|
||||||
PlaceholderText = UsersStrings.ReportPlaceholder,
|
|
||||||
},
|
|
||||||
submitButton = new RoundedButton
|
|
||||||
{
|
|
||||||
Origin = Anchor.TopCentre,
|
|
||||||
Anchor = Anchor.TopCentre,
|
|
||||||
Width = 200,
|
|
||||||
BackgroundColour = colours.Red3,
|
|
||||||
Text = UsersStrings.ReportActionsSend,
|
|
||||||
Action = () =>
|
|
||||||
{
|
|
||||||
Action?.Invoke(reasonDropdown.Current.Value, commentsTextBox.Text);
|
|
||||||
this.HidePopover();
|
|
||||||
},
|
|
||||||
Margin = new MarginPadding { Bottom = 5, Top = 10 },
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
commentsTextBox.Current.BindValueChanged(e =>
|
|
||||||
{
|
|
||||||
submitButton.Enabled.Value = !string.IsNullOrWhiteSpace(e.NewValue);
|
|
||||||
}, true);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user