// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Game.Graphics.Containers; using osu.Game.Online.Chat; using osu.Game.Users; using osuTK; namespace osu.Game.Screens.Multi.Match.Components { public class HostInfo : CompositeDrawable { public readonly IBindable Host = new Bindable(); private readonly LinkFlowContainer linkContainer; private readonly UpdateableAvatar avatar; public HostInfo() { AutoSizeAxes = Axes.X; Height = 50; InternalChild = new FillFlowContainer { AutoSizeAxes = Axes.Both, Direction = FillDirection.Horizontal, Spacing = new Vector2(5, 0), Children = new Drawable[] { avatar = new UpdateableAvatar { Size = new Vector2(50) }, new FillFlowContainer { Anchor = Anchor.CentreLeft, Origin = Anchor.CentreLeft, AutoSizeAxes = Axes.Both, Direction = FillDirection.Vertical, Child = linkContainer = new LinkFlowContainer { AutoSizeAxes = Axes.Both } } } }; Host.BindValueChanged(e => updateHost(e.NewValue)); } private void updateHost(User host) { avatar.User = host; if (host != null) { linkContainer.AddText("hosted by"); linkContainer.NewLine(); linkContainer.AddLink(host.Username, null, LinkAction.OpenUserProfile, host.Id.ToString(), "View Profile", s => s.Font = "Exo2.0-BoldItalic"); } } } }