mirror of
https://github.com/ppy/osu.git
synced 2024-11-15 20:37:26 +08:00
e91c8fb4bd
Closes https://github.com/ppy/osu/issues/30052. Compare: -83816dbe24/resources/js/components/comment-editor.tsx (L54-L60)
-83816dbe24/resources/js/components/comment-editor.tsx (L47-L52)
71 lines
2.4 KiB
C#
71 lines
2.4 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 System.Collections.Generic;
|
|
using System.Linq;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Localisation;
|
|
using osu.Framework.Logging;
|
|
using osu.Game.Online.API.Requests;
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
using osu.Game.Resources.Localisation.Web;
|
|
|
|
namespace osu.Game.Overlays.Comments
|
|
{
|
|
public partial class ReplyCommentEditor : CancellableCommentEditor
|
|
{
|
|
[Resolved]
|
|
private CommentsContainer commentsContainer { get; set; } = null!;
|
|
|
|
private readonly Comment parentComment;
|
|
|
|
public Action<DrawableComment[]>? OnPost;
|
|
|
|
protected override LocalisableString FooterText => default;
|
|
|
|
protected override LocalisableString GetButtonText(bool isLoggedIn) =>
|
|
isLoggedIn ? CommonStrings.ButtonsReply : CommentsStrings.GuestButtonReply;
|
|
|
|
protected override LocalisableString GetPlaceholderText() => CommentsStrings.PlaceholderReply;
|
|
|
|
public ReplyCommentEditor(Comment parent, IEnumerable<CommentableMeta> meta)
|
|
{
|
|
parentComment = parent;
|
|
CommentableMeta.Value = meta.SingleOrDefault(m => m.Id == parent.CommentableId && m.Type == parent.CommentableType);
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
if (!TextBox.ReadOnly)
|
|
GetContainingFocusManager()!.ChangeFocus(TextBox);
|
|
}
|
|
|
|
protected override void OnCommit(string text)
|
|
{
|
|
ShowLoadingSpinner = true;
|
|
CommentPostRequest req = new CommentPostRequest(commentsContainer.Type.Value, commentsContainer.Id.Value, text, parentComment.Id);
|
|
req.Failure += e => Schedule(() =>
|
|
{
|
|
ShowLoadingSpinner = false;
|
|
Logger.Error(e, "Posting reply comment failed.");
|
|
});
|
|
req.Success += cb => Schedule(processPostedComments, cb);
|
|
API.Queue(req);
|
|
}
|
|
|
|
private void processPostedComments(CommentBundle cb)
|
|
{
|
|
foreach (var comment in cb.Comments)
|
|
comment.ParentComment = parentComment;
|
|
|
|
var drawables = cb.Comments.Select(c => commentsContainer.GetDrawableComment(c, cb.CommentableMeta)).ToArray();
|
|
OnPost?.Invoke(drawables);
|
|
|
|
OnCancel!.Invoke();
|
|
}
|
|
}
|
|
}
|