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.

485 lines
21 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.
2022-06-17 15:37:17 +08:00
#nullable disable
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 osu.Framework.Localisation;
2022-09-27 23:23:15 +08:00
using osu.Framework.Logging;
using osu.Game.Online.API;
2020-07-11 13:01:11 +08:00
using osu.Game.Overlays.Comments.Buttons;
2021-08-08 18:21:29 +08:00
using osu.Game.Resources.Localisation.Web;
namespace osu.Game.Overlays.Comments
{
public class DrawableComment : CompositeDrawable
{
private const int avatar_size = 40;
2019-10-09 17:18:49 +08:00
public Action<DrawableComment, int> RepliesRequested;
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;
private FillFlowContainer childCommentsVisibilityContainer;
private FillFlowContainer childCommentsContainer;
2020-07-11 13:01:11 +08:00
private LoadRepliesButton loadRepliesButton;
private ShowMoreRepliesButton showMoreButton;
2020-07-11 13:01:11 +08:00
private ShowRepliesButton showRepliesButton;
private ChevronButton chevronButton;
private DeletedCommentsCounter deletedCommentsCounter;
public DrawableComment(Comment comment)
{
Comment = comment;
}
[BackgroundDependencyLoader]
2022-09-27 23:23:15 +08:00
private void load(OverlayColourProvider colourProvider, IAPIProvider api)
{
LinkFlowContainer username;
2019-10-09 16:32:17 +08:00
FillFlowContainer info;
2022-09-27 23:23:15 +08:00
LinkFlowContainer actions;
CommentMarkdownContainer message;
2019-10-09 17:18:49 +08:00
GridContainer content;
VotePill votePill;
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),
new OsuSpriteText
{
Alpha = Comment.IsDeleted ? 1 : 0,
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),
2022-09-27 23:23:15 +08:00
Children = new[]
{
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
}
}
},
actions = new LinkFlowContainer(s => s.Font = OsuFont.GetFont(size: 12, weight: FontWeight.Bold))
{
2022-09-27 23:23:15 +08:00
AutoSizeAxes = Axes.Both,
Spacing = new Vector2(10, 0)
2020-07-28 07:36:25 +08:00
}
}
},
new Container
{
AutoSizeAxes = Axes.Both,
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
{
2020-07-28 07:36:25 +08:00
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Padding = new MarginPadding { Left = 20 },
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
username.AddText(Comment.LegacyName);
2019-10-08 20:39:03 +08:00
if (Comment.EditedAt.HasValue)
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;
if (Comment.IsDeleted)
2019-10-08 20:39:03 +08:00
{
2019-10-09 17:18:49 +08:00
content.FadeColour(OsuColour.Gray(0.5f));
votePill.Hide();
}
2022-09-27 23:23:15 +08:00
if (Comment.UserId.HasValue && Comment.UserId.Value == api.LocalUser.Value.Id)
{
actions.AddLink("Delete", () => Logger.Log("Attempt to delete a comment", level: LogLevel.Important));
}
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:
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
2019-10-09 00:18:46 +08:00
protected override void LoadComplete()
{
2019-10-15 16:30:50 +08:00
ShowDeleted.BindValueChanged(show =>
{
if (Comment.IsDeleted)
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:37:41 +08:00
public bool ContainsReply(long replyId) => loadedReplies.ContainsKey(replyId);
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;
2021-12-10 13:04:31 +08:00
loadRepliesButton.FadeTo(hasUnloadedReplies && loadedRepliesCount == 0 ? 1 : 0);
showMoreButton.FadeTo(hasUnloadedReplies && loadedRepliesCount > 0 ? 1 : 0);
showRepliesButton.FadeTo(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 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 class ParentUsername : FillFlowContainer, IHasTooltip
{
public LocalisableString TooltipText => getParentMessage();
2019-10-09 00:09:02 +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),
Text = parentComment?.User?.Username ?? parentComment?.LegacyName
2019-10-09 00:09:02 +08:00
}
};
}
private string getParentMessage()
{
if (parentComment == null)
return string.Empty;
return parentComment.HasMessage ? parentComment.Message : parentComment.IsDeleted ? "deleted" : string.Empty;
}
2019-10-09 00:09:02 +08:00
}
}
}