1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 18:07:24 +08:00
osu-lazer/osu.Game/Overlays/Comments/DrawableComment.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

616 lines
27 KiB
C#
Raw Normal View History

// 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 osu.Framework.Graphics.Containers;
using osu.Framework.Graphics;
using osu.Game.Graphics;
using osu.Framework.Graphics.Sprites;
using osuTK;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Users.Drawables;
using osu.Game.Graphics.Containers;
2019-10-09 00:09:02 +08:00
using osu.Framework.Graphics.Cursor;
2019-10-09 00:18:46 +08:00
using osu.Framework.Bindables;
2019-10-09 16:07:56 +08:00
using System.Linq;
2019-11-25 10:30:55 +08:00
using osu.Game.Graphics.Sprites;
using osu.Framework.Allocation;
using System.Collections.Generic;
using System;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Extensions.IEnumerableExtensions;
using System.Collections.Specialized;
using System.Diagnostics;
using osu.Framework.Extensions.LocalisationExtensions;
using osu.Framework.Localisation;
2023-01-18 22:30:34 +08:00
using osu.Framework.Logging;
2022-10-14 03:18:26 +08:00
using osu.Framework.Platform;
using osu.Game.Graphics.UserInterface;
2022-09-27 23:23:15 +08:00
using osu.Game.Online.API;
2022-09-27 23:33:16 +08:00
using osu.Game.Online.API.Requests;
2020-07-11 13:01:11 +08:00
using osu.Game.Overlays.Comments.Buttons;
2022-09-27 23:33:16 +08:00
using osu.Game.Overlays.Dialog;
2022-10-17 00:57:21 +08:00
using osu.Game.Overlays.OSD;
2021-08-08 18:21:29 +08:00
using osu.Game.Resources.Localisation.Web;
namespace osu.Game.Overlays.Comments
{
[Cached]
public partial class DrawableComment : CompositeDrawable
{
private const int avatar_size = 40;
2019-10-09 17:18:49 +08:00
2022-10-08 22:11:09 +08:00
public Action<DrawableComment, int> RepliesRequested = null!;
public readonly Comment Comment;
2019-10-09 17:18:49 +08:00
public readonly BindableBool ShowDeleted = new BindableBool();
public readonly Bindable<CommentsSortCriteria> Sort = new Bindable<CommentsSortCriteria>();
2020-02-13 07:37:41 +08:00
private readonly Dictionary<long, Comment> loadedReplies = new Dictionary<long, Comment>();
2019-10-08 21:00:34 +08:00
2020-02-13 07:47:13 +08:00
public readonly BindableList<DrawableComment> Replies = new BindableList<DrawableComment>();
2019-10-15 05:32:21 +08:00
private readonly BindableBool childrenExpanded = new BindableBool(true);
2019-10-08 21:00:34 +08:00
private int currentPage;
/// <summary>
/// Local field for tracking comment state. Initialized from Comment.IsDeleted, may change when deleting was requested by user.
/// </summary>
public bool WasDeleted { get; protected set; }
/// <summary>
/// Tracks this comment's level of nesting. 0 means that this comment has no parents.
/// </summary>
public int Level { get; private set; }
2022-10-08 22:11:09 +08:00
private FillFlowContainer childCommentsVisibilityContainer = null!;
private FillFlowContainer childCommentsContainer = null!;
private LoadRepliesButton loadRepliesButton = null!;
private ShowMoreRepliesButton showMoreButton = null!;
private ShowRepliesButton showRepliesButton = null!;
private ChevronButton chevronButton = null!;
private LinkFlowContainer actionsContainer = null!;
private LoadingSpinner actionsLoading = null!;
private DeletedCommentsCounter deletedCommentsCounter = null!;
private OsuSpriteText deletedLabel = null!;
private GridContainer content = null!;
private VotePill votePill = null!;
2023-01-19 01:50:07 +08:00
private Container<CommentEditor> replyEditorContainer = null!;
private Container repliesButtonContainer = null!;
2023-01-18 07:10:02 +08:00
[Resolved]
2022-10-08 22:11:09 +08:00
private IDialogOverlay? dialogOverlay { get; set; }
2022-09-28 03:46:23 +08:00
[Resolved]
2022-10-08 22:11:09 +08:00
private IAPIProvider api { get; set; } = null!;
2022-09-28 03:46:23 +08:00
2022-10-14 03:18:26 +08:00
[Resolved]
private GameHost host { get; set; } = null!;
2023-01-18 07:10:02 +08:00
[Resolved]
2022-10-17 00:57:21 +08:00
private OnScreenDisplay? onScreenDisplay { get; set; }
2022-10-14 21:26:25 +08:00
public DrawableComment(Comment comment)
{
Comment = comment;
}
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colourProvider, DrawableComment? parentComment)
{
LinkFlowContainer username;
2019-10-09 16:32:17 +08:00
FillFlowContainer info;
CommentMarkdownContainer message;
2019-10-09 17:18:49 +08:00
Level = parentComment?.Level + 1 ?? 0;
float childrenPadding = Level < 6 ? 20 : 5;
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
InternalChildren = new Drawable[]
{
2020-07-28 07:36:25 +08:00
new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
2020-07-28 07:36:25 +08:00
Padding = getPadding(Comment.IsTopLevel),
Child = new FillFlowContainer
{
2020-07-28 07:36:25 +08:00
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Children = new Drawable[]
2019-10-08 20:39:03 +08:00
{
2020-07-28 07:36:25 +08:00
content = new GridContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
ColumnDimensions = new[]
{
2020-07-28 07:36:25 +08:00
new Dimension(GridSizeMode.Absolute, size: avatar_size + 10),
new Dimension(),
},
RowDimensions = new[]
{
new Dimension(GridSizeMode.AutoSize)
},
Content = new[]
{
new Drawable[]
2019-10-09 00:56:43 +08:00
{
2020-07-28 07:36:25 +08:00
new Container
2019-10-09 00:56:43 +08:00
{
2020-07-28 07:36:25 +08:00
Size = new Vector2(avatar_size),
Children = new Drawable[]
{
new UpdateableAvatar(Comment.User)
{
Size = new Vector2(avatar_size),
Masking = true,
CornerRadius = avatar_size / 2f,
CornerExponent = 2,
},
2020-07-28 07:36:25 +08:00
votePill = new VotePill(Comment)
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreRight,
Margin = new MarginPadding
{
Right = 5
}
}
}
},
new FillFlowContainer
2019-10-08 20:39:03 +08:00
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
2020-07-28 07:36:25 +08:00
Direction = FillDirection.Vertical,
Spacing = new Vector2(0, 4),
Margin = new MarginPadding
{
Vertical = 2
},
Children = new Drawable[]
2019-10-09 00:09:02 +08:00
{
new FillFlowContainer
2019-10-09 16:07:56 +08:00
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
2020-07-28 07:36:25 +08:00
Spacing = new Vector2(10, 0),
Children = new[]
{
2020-07-28 07:36:25 +08:00
username = new LinkFlowContainer(s => s.Font = OsuFont.GetFont(size: 14, weight: FontWeight.Bold))
{
2020-07-28 07:36:25 +08:00
AutoSizeAxes = Axes.Both
},
Comment.Pinned ? new PinnedCommentNotice() : Empty(),
new ParentUsername(Comment),
deletedLabel = new OsuSpriteText
{
Alpha = 0f,
2020-07-28 07:36:25 +08:00
Font = OsuFont.GetFont(size: 14, weight: FontWeight.Bold),
Text = CommentsStrings.Deleted
}
}
},
message = new CommentMarkdownContainer
2019-10-10 16:43:45 +08:00
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
DocumentMargin = new MarginPadding(0),
DocumentPadding = new MarginPadding(0),
},
2022-09-27 23:23:15 +08:00
new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
2020-07-28 07:36:25 +08:00
Direction = FillDirection.Horizontal,
Spacing = new Vector2(10, 0),
Children = new Drawable[]
{
2022-09-27 23:23:15 +08:00
info = new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(10, 0),
Children = new Drawable[]
{
new DrawableDate(Comment.CreatedAt, 12, false)
{
Colour = colourProvider.Foreground1
}
}
},
actionsContainer = new LinkFlowContainer(s => s.Font = OsuFont.GetFont(size: 12, weight: FontWeight.Bold))
{
Name = @"Actions buttons",
2022-09-27 23:23:15 +08:00
AutoSizeAxes = Axes.Both,
},
actionsLoading = new LoadingSpinner
{
Size = new Vector2(12f),
Anchor = Anchor.TopLeft,
Origin = Anchor.TopLeft
2020-07-28 07:36:25 +08:00
}
}
},
2023-01-19 01:50:07 +08:00
replyEditorContainer = new Container<CommentEditor>
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Padding = new MarginPadding { Top = 10 },
Alpha = 0,
2023-01-19 01:50:07 +08:00
},
repliesButtonContainer = new Container
2020-07-28 07:36:25 +08:00
{
AutoSizeAxes = Axes.Both,
Alpha = 0,
2020-07-28 07:36:25 +08:00
Children = new Drawable[]
{
2020-07-11 13:01:11 +08:00
showRepliesButton = new ShowRepliesButton(Comment.RepliesCount)
{
Expanded = { BindTarget = childrenExpanded }
},
2020-07-11 13:01:11 +08:00
loadRepliesButton = new LoadRepliesButton
{
Action = () => RepliesRequested(this, ++currentPage)
}
}
}
2019-10-09 17:18:49 +08:00
}
}
2019-10-08 21:00:34 +08:00
}
}
2020-07-28 07:36:25 +08:00
},
childCommentsVisibilityContainer = new FillFlowContainer
2019-10-10 16:43:45 +08:00
{
2023-01-19 01:50:07 +08:00
Name = @"Children comments",
2020-07-28 07:36:25 +08:00
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Padding = new MarginPadding { Left = childrenPadding },
2020-07-28 07:36:25 +08:00
Children = new Drawable[]
{
2020-07-28 07:36:25 +08:00
childCommentsContainer = new FillFlowContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical
},
deletedCommentsCounter = new DeletedCommentsCounter
{
ShowDeleted = { BindTarget = ShowDeleted },
Margin = new MarginPadding
{
Top = 10
}
},
showMoreButton = new ShowMoreRepliesButton
2020-07-28 07:36:25 +08:00
{
Action = () => RepliesRequested(this, ++currentPage)
}
}
2020-07-28 07:36:25 +08:00
},
}
}
},
2020-07-28 05:29:17 +08:00
new Container
{
2020-07-28 05:29:17 +08:00
Size = new Vector2(70, 40),
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
2020-07-28 05:29:17 +08:00
Margin = new MarginPadding { Horizontal = 5 },
Child = chevronButton = new ChevronButton
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Expanded = { BindTarget = childrenExpanded },
Alpha = 0
}
}
};
if (Comment.UserId.HasValue)
username.AddUserLink(Comment.User);
2019-10-14 21:43:43 +08:00
else
2022-10-08 22:11:09 +08:00
username.AddText(Comment.LegacyName!);
2019-10-08 20:39:03 +08:00
2022-09-28 03:45:05 +08:00
if (Comment.EditedAt.HasValue && Comment.EditedUser != null)
2019-10-09 16:32:17 +08:00
{
var font = OsuFont.GetFont(size: 12, weight: FontWeight.Regular);
var colour = colourProvider.Foreground1;
info.Add(new FillFlowContainer
2019-10-09 16:32:17 +08:00
{
AutoSizeAxes = Axes.Both,
Children = new Drawable[]
{
new OsuSpriteText
{
Font = font,
Text = "edited ",
Colour = colour
},
new DrawableDate(Comment.EditedAt.Value)
{
Font = font,
Colour = colour
},
new OsuSpriteText
{
Font = font,
Text = $@" by {Comment.EditedUser.Username}",
Colour = colour
},
}
2019-10-09 16:32:17 +08:00
});
}
if (Comment.HasMessage)
message.Text = Comment.Message;
WasDeleted = Comment.IsDeleted;
if (WasDeleted)
makeDeleted();
2019-10-09 17:18:49 +08:00
2022-11-29 12:01:52 +08:00
actionsContainer.AddLink(CommonStrings.ButtonsPermalink, copyUrl);
actionsContainer.AddArbitraryDrawable(Empty().With(d => d.Width = 10));
2023-01-19 01:50:07 +08:00
actionsContainer.AddLink(CommonStrings.ButtonsReply.ToLower(), toggleReply);
actionsContainer.AddArbitraryDrawable(Empty().With(d => d.Width = 10));
2022-10-14 03:18:26 +08:00
2022-09-27 23:23:15 +08:00
if (Comment.UserId.HasValue && Comment.UserId.Value == api.LocalUser.Value.Id)
actionsContainer.AddLink(CommonStrings.ButtonsDelete.ToLower(), deleteComment);
2022-10-14 20:52:09 +08:00
else
actionsContainer.AddArbitraryDrawable(new CommentReportButton(Comment));
2022-09-27 23:23:15 +08:00
if (Comment.IsTopLevel)
2019-10-09 17:18:49 +08:00
{
AddInternal(new Box
2019-10-09 17:18:49 +08:00
{
Anchor = Anchor.BottomCentre,
Origin = Anchor.BottomCentre,
RelativeSizeAxes = Axes.X,
Height = 1.5f,
Colour = OsuColour.Gray(0.1f)
2019-10-09 17:18:49 +08:00
});
}
2020-02-13 07:47:13 +08:00
if (Replies.Any())
onRepliesAdded(Replies);
Replies.CollectionChanged += (_, args) =>
{
switch (args.Action)
{
case NotifyCollectionChangedAction.Add:
Debug.Assert(args.NewItems != null);
onRepliesAdded(args.NewItems.Cast<DrawableComment>());
break;
default:
throw new NotSupportedException(@"You can only add replies to this list. Other actions are not supported.");
}
};
2019-10-09 00:18:46 +08:00
}
2019-10-08 21:00:34 +08:00
/// <summary>
/// Transforms some comment's components to show it as deleted. Invoked both from loading and deleting.
/// </summary>
private void makeDeleted()
{
2022-10-12 14:43:05 +08:00
deletedLabel.Show();
content.FadeColour(OsuColour.Gray(0.5f));
votePill.Hide();
actionsContainer.Expire();
}
/// <summary>
/// Invokes comment deletion with confirmation.
/// </summary>
private void deleteComment()
{
2022-10-08 22:11:09 +08:00
if (dialogOverlay == null)
deleteCommentRequest();
else
dialogOverlay.Push(new ConfirmDialog("Do you really want to delete your comment?", deleteCommentRequest));
}
/// <summary>
/// Invokes comment deletion directly.
/// </summary>
2022-10-08 22:11:09 +08:00
private void deleteCommentRequest()
{
actionsContainer.Hide();
actionsLoading.Show();
var request = new CommentDeleteRequest(Comment.Id);
request.Success += _ => Schedule(() =>
{
2022-10-08 22:11:09 +08:00
actionsLoading.Hide();
makeDeleted();
WasDeleted = true;
if (!ShowDeleted.Value)
Hide();
});
2023-01-18 22:30:34 +08:00
request.Failure += e => Schedule(() =>
2022-10-08 22:11:09 +08:00
{
2023-01-18 22:30:34 +08:00
Logger.Error(e, "Failed to delete comment");
2022-10-08 22:11:09 +08:00
actionsLoading.Hide();
actionsContainer.Show();
});
2022-10-08 22:11:09 +08:00
api.Queue(request);
}
2022-10-14 03:18:26 +08:00
private void copyUrl()
{
2022-10-17 01:20:34 +08:00
host.GetClipboard()?.SetText($@"{api.APIEndpointUrl}/comments/{Comment.Id}");
2022-10-14 03:18:26 +08:00
onScreenDisplay?.Display(new CopyUrlToast());
}
2023-01-19 01:50:07 +08:00
private void toggleReply()
{
if (replyEditorContainer.Count == 0)
{
replyEditorContainer.Show();
2023-01-19 01:50:07 +08:00
replyEditorContainer.Add(new ReplyCommentEditor(Comment)
{
OnPost = comments =>
{
Comment.RepliesCount += comments.Length;
showRepliesButton.Count = Comment.RepliesCount;
Replies.AddRange(comments);
}
});
}
else
{
replyEditorContainer.Clear(true);
replyEditorContainer.Hide();
2023-01-19 01:50:07 +08:00
}
}
2019-10-09 00:18:46 +08:00
protected override void LoadComplete()
{
2019-10-15 16:30:50 +08:00
ShowDeleted.BindValueChanged(show =>
{
if (WasDeleted)
2019-10-15 16:30:50 +08:00
this.FadeTo(show.NewValue ? 1 : 0);
}, true);
2019-10-15 05:32:21 +08:00
childrenExpanded.BindValueChanged(expanded => childCommentsVisibilityContainer.FadeTo(expanded.NewValue ? 1 : 0), true);
updateButtonsState();
2019-10-09 00:18:46 +08:00
base.LoadComplete();
}
2020-02-13 07:47:13 +08:00
private void onRepliesAdded(IEnumerable<DrawableComment> replies)
{
var page = createRepliesPage(replies);
if (LoadState == LoadState.Loading)
{
addRepliesPage(page, replies);
return;
}
LoadComponentAsync(page, loaded => addRepliesPage(loaded, replies));
}
private void addRepliesPage(FillFlowContainer<DrawableComment> page, IEnumerable<DrawableComment> replies)
{
childCommentsContainer.Add(page);
var newReplies = replies.Select(reply => reply.Comment);
2020-02-13 07:37:41 +08:00
newReplies.ForEach(reply => loadedReplies.Add(reply.Id, reply));
deletedCommentsCounter.Count.Value += newReplies.Count(reply => reply.IsDeleted);
updateButtonsState();
}
private FillFlowContainer<DrawableComment> createRepliesPage(IEnumerable<DrawableComment> replies) => new FillFlowContainer<DrawableComment>
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Children = replies.ToList()
};
private void updateButtonsState()
{
2021-12-10 13:04:31 +08:00
int loadedRepliesCount = loadedReplies.Count;
bool hasUnloadedReplies = loadedRepliesCount != Comment.RepliesCount;
showRepliesButton.FadeTo(loadedRepliesCount != 0 ? 1 : 0);
2021-12-10 13:04:31 +08:00
loadRepliesButton.FadeTo(hasUnloadedReplies && loadedRepliesCount == 0 ? 1 : 0);
repliesButtonContainer.FadeTo(showRepliesButton.IsPresent || loadRepliesButton.IsPresent ? 1 : 0);
2021-12-10 13:04:31 +08:00
showMoreButton.FadeTo(hasUnloadedReplies && loadedRepliesCount > 0 ? 1 : 0);
if (Comment.IsTopLevel)
2021-12-10 13:04:31 +08:00
chevronButton.FadeTo(loadedRepliesCount != 0 ? 1 : 0);
showMoreButton.IsLoading = loadRepliesButton.IsLoading = false;
}
2020-07-28 07:36:25 +08:00
private MarginPadding getPadding(bool isTopLevel)
{
if (isTopLevel)
{
return new MarginPadding
{
Horizontal = 70,
Vertical = 15
};
}
return new MarginPadding
{
Top = 10
};
}
private partial class PinnedCommentNotice : FillFlowContainer
{
public PinnedCommentNotice()
{
AutoSizeAxes = Axes.Both;
Direction = FillDirection.Horizontal;
Spacing = new Vector2(2, 0);
Children = new Drawable[]
{
new SpriteIcon
{
Icon = FontAwesome.Solid.Thumbtack,
Size = new Vector2(14),
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
},
new OsuSpriteText
{
Font = OsuFont.GetFont(size: 14, weight: FontWeight.Bold),
Text = CommentsStrings.Pinned,
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
}
};
}
}
2019-10-09 00:09:02 +08:00
private partial class ParentUsername : FillFlowContainer, IHasTooltip
{
public LocalisableString TooltipText => getParentMessage();
2019-10-09 00:09:02 +08:00
2022-10-08 22:11:09 +08:00
private readonly Comment? parentComment;
2019-10-09 00:09:02 +08:00
public ParentUsername(Comment comment)
{
parentComment = comment.ParentComment;
2019-10-09 00:09:02 +08:00
AutoSizeAxes = Axes.Both;
Direction = FillDirection.Horizontal;
2019-10-14 22:33:14 +08:00
Spacing = new Vector2(3, 0);
2019-10-09 00:09:02 +08:00
Alpha = comment.ParentId == null ? 0 : 1;
Children = new Drawable[]
{
new SpriteIcon
{
Icon = FontAwesome.Solid.Reply,
Size = new Vector2(14),
},
2019-11-25 10:30:55 +08:00
new OsuSpriteText
2019-10-09 00:09:02 +08:00
{
Font = OsuFont.GetFont(size: 14, weight: FontWeight.Bold, italics: true),
2022-10-08 22:11:09 +08:00
Text = parentComment?.User?.Username ?? parentComment?.LegacyName!
2019-10-09 00:09:02 +08:00
}
};
}
2022-11-29 12:02:02 +08:00
private LocalisableString getParentMessage()
{
if (parentComment == null)
return string.Empty;
2022-11-29 12:02:02 +08:00
return parentComment.HasMessage ? parentComment.Message : parentComment.IsDeleted ? CommentsStrings.Deleted : string.Empty;
}
2019-10-09 00:09:02 +08:00
}
}
}