mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 10:47:24 +08:00
64 lines
1.9 KiB
C#
64 lines
1.9 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 osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Online.API;
|
|
using osu.Game.Online.Chat;
|
|
using osu.Game.Resources.Localisation.Web;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Overlays.Profile.Header.Components
|
|
{
|
|
public partial class MessageUserButton : ProfileHeaderButton
|
|
{
|
|
public readonly Bindable<UserProfileData?> UserProfileData = new Bindable<UserProfileData?>();
|
|
|
|
public override LocalisableString TooltipText => UsersStrings.CardSendMessage;
|
|
|
|
[Resolved]
|
|
private ChannelManager? channelManager { get; set; }
|
|
|
|
[Resolved]
|
|
private UserProfileOverlay? userOverlay { get; set; }
|
|
|
|
[Resolved]
|
|
private ChatOverlay? chatOverlay { get; set; }
|
|
|
|
[Resolved]
|
|
private IAPIProvider apiProvider { get; set; } = null!;
|
|
|
|
public MessageUserButton()
|
|
{
|
|
Content.Alpha = 0;
|
|
|
|
Child = new SpriteIcon
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
Icon = FontAwesome.Solid.Envelope,
|
|
FillMode = FillMode.Fit,
|
|
Size = new Vector2(50, 14)
|
|
};
|
|
|
|
Action = () =>
|
|
{
|
|
if (!Content.IsPresent) return;
|
|
|
|
channelManager?.OpenPrivateChannel(UserProfileData.Value?.User);
|
|
userOverlay?.Hide();
|
|
chatOverlay?.Show();
|
|
};
|
|
|
|
UserProfileData.ValueChanged += e =>
|
|
{
|
|
var user = e.NewValue?.User;
|
|
Content.Alpha = user != null && !user.PMFriendsOnly && apiProvider.LocalUser.Value.Id != user.Id ? 1 : 0;
|
|
};
|
|
}
|
|
}
|
|
}
|