mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:07:52 +08:00
Tidy up various implementation details
This commit is contained in:
parent
b932e4d986
commit
be15d07b17
@ -24,11 +24,12 @@ namespace osu.Game.Graphics.UserInterfaceV2
|
||||
private OsuEnumDropdown<T> reasonDropdown = null!;
|
||||
private OsuTextBox commentsTextBox = null!;
|
||||
private RoundedButton submitButton = null!;
|
||||
public LocalisableString Header;
|
||||
|
||||
private readonly LocalisableString header;
|
||||
|
||||
protected ReportPopover(LocalisableString headerString)
|
||||
{
|
||||
Header = headerString;
|
||||
header = headerString;
|
||||
}
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
@ -53,7 +54,7 @@ namespace osu.Game.Graphics.UserInterfaceV2
|
||||
{
|
||||
Origin = Anchor.TopCentre,
|
||||
Anchor = Anchor.TopCentre,
|
||||
Text = Header,
|
||||
Text = header,
|
||||
Font = OsuFont.Torus.With(size: 25),
|
||||
Margin = new MarginPadding { Bottom = 10 }
|
||||
},
|
||||
|
@ -180,6 +180,11 @@ namespace osu.Game.Overlays.Chat
|
||||
}
|
||||
}
|
||||
|
||||
public Popover GetPopover() => new ReportChatPopover(user)
|
||||
{
|
||||
Action = report
|
||||
};
|
||||
|
||||
private void report(ChatReportReason reason, string comments)
|
||||
{
|
||||
var request = new ChatReportRequest(messageId, reason, comments);
|
||||
@ -260,10 +265,5 @@ namespace osu.Game.Overlays.Chat
|
||||
Color4Extensions.FromHex("812a96"),
|
||||
Color4Extensions.FromHex("992861"),
|
||||
};
|
||||
|
||||
public Popover GetPopover() => new ReportChatPopover(user)
|
||||
{
|
||||
Action = report
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -57,6 +57,11 @@ namespace osu.Game.Overlays.Comments
|
||||
link.AddLink(ReportStrings.CommentButton.ToLower(), this.ShowPopover);
|
||||
}
|
||||
|
||||
public Popover GetPopover() => new ReportCommentPopover(comment)
|
||||
{
|
||||
Action = report
|
||||
};
|
||||
|
||||
private void report(CommentReportReason reason, string comments)
|
||||
{
|
||||
var request = new CommentReportRequest(comment.Id, reason, comments);
|
||||
@ -83,10 +88,5 @@ namespace osu.Game.Overlays.Comments
|
||||
|
||||
api.Queue(request);
|
||||
}
|
||||
|
||||
public Popover GetPopover() => new ReportCommentPopover(comment)
|
||||
{
|
||||
Action = report
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user