1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 05:27:23 +08:00
osu-lazer/osu.Game/Overlays/UserProfileOverlay.cs

200 lines
6.0 KiB
C#
Raw Normal View History

2020-01-30 04:37:51 +08:00
// 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.
2018-04-13 17:19:50 +08:00
2019-11-28 21:41:29 +08:00
using System;
2018-04-13 17:19:50 +08:00
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
2019-06-22 06:11:04 +08:00
using osu.Framework.Graphics.Containers;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.UserInterface;
using osu.Game.Graphics.Containers;
using osu.Game.Online.API.Requests;
using osu.Game.Overlays.Profile;
using osu.Game.Overlays.Profile.Sections;
using osu.Game.Users;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Overlays
{
2019-05-14 13:18:06 +08:00
public class UserProfileOverlay : FullscreenOverlay
2018-04-13 17:19:50 +08:00
{
private ProfileSection lastSection;
private ProfileSection[] sections;
private GetUserRequest userReq;
protected ProfileHeader Header;
2019-06-22 06:11:04 +08:00
private ProfileSectionsContainer sectionsContainer;
2018-04-13 17:19:50 +08:00
private ProfileTabControl tabs;
2018-12-22 23:51:24 +08:00
public const float CONTENT_X_MARGIN = 70;
2018-04-13 17:19:50 +08:00
2020-01-24 17:24:35 +08:00
public UserProfileOverlay()
2020-01-30 11:36:47 +08:00
: base(OverlayColourScheme.Pink)
2020-01-24 17:24:35 +08:00
{
}
public void ShowUser(long userId) => ShowUser(new User { Id = userId });
2018-04-13 17:19:50 +08:00
public void ShowUser(User user, bool fetchOnline = true)
{
if (user == User.SYSTEM_USER)
return;
Show();
2019-03-10 06:58:14 +08:00
if (user.Id == Header?.User.Value?.Id)
return;
2018-04-13 17:19:50 +08:00
userReq?.Cancel();
Clear();
lastSection = null;
2019-09-27 14:46:11 +08:00
sections = !user.IsBot
? new ProfileSection[]
2019-09-27 14:32:46 +08:00
{
//new AboutSection(),
new RecentSection(),
new RanksSection(),
//new MedalsSection(),
new HistoricalSection(),
new BeatmapsSection(),
new KudosuSection()
2019-09-27 14:46:11 +08:00
}
2019-11-28 21:41:29 +08:00
: Array.Empty<ProfileSection>();
2018-04-13 17:19:50 +08:00
tabs = new ProfileTabControl
{
RelativeSizeAxes = Axes.X,
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
2020-01-31 02:26:42 +08:00
Height = 34
2018-04-13 17:19:50 +08:00
};
Add(new Box
{
RelativeSizeAxes = Axes.Both,
2020-01-30 11:50:15 +08:00
Colour = ColourProvider.Background6
2018-04-13 17:19:50 +08:00
});
2019-06-22 06:11:04 +08:00
Add(sectionsContainer = new ProfileSectionsContainer
2018-04-13 17:19:50 +08:00
{
2018-12-22 23:51:24 +08:00
ExpandableHeader = Header = new ProfileHeader(),
2018-04-13 17:19:50 +08:00
FixedHeader = tabs,
HeaderBackground = new Box
{
2020-01-30 04:37:51 +08:00
// this is only visible as the ProfileTabControl background
2020-01-30 11:50:15 +08:00
Colour = ColourProvider.Background5,
2018-04-13 17:19:50 +08:00
RelativeSizeAxes = Axes.Both
},
2018-04-13 17:19:50 +08:00
});
sectionsContainer.SelectedSection.ValueChanged += section =>
2018-04-13 17:19:50 +08:00
{
if (lastSection != section.NewValue)
2018-04-13 17:19:50 +08:00
{
lastSection = section.NewValue;
2018-04-13 17:19:50 +08:00
tabs.Current.Value = lastSection;
}
};
tabs.Current.ValueChanged += section =>
2018-04-13 17:19:50 +08:00
{
if (lastSection == null)
{
lastSection = sectionsContainer.Children.FirstOrDefault();
if (lastSection != null)
tabs.Current.Value = lastSection;
return;
}
2019-02-28 12:31:40 +08:00
if (lastSection != section.NewValue)
2018-04-13 17:19:50 +08:00
{
lastSection = section.NewValue;
2018-04-13 17:19:50 +08:00
sectionsContainer.ScrollTo(lastSection);
}
};
if (fetchOnline)
{
userReq = new GetUserRequest(user.Id);
userReq.Success += userLoadComplete;
2019-05-14 13:18:06 +08:00
API.Queue(userReq);
2018-04-13 17:19:50 +08:00
}
else
{
userReq = null;
userLoadComplete(user);
}
sectionsContainer.ScrollToTop();
}
private void userLoadComplete(User user)
{
2019-03-10 06:58:14 +08:00
Header.User.Value = user;
2018-04-13 17:19:50 +08:00
if (user.ProfileOrder != null)
{
foreach (string id in user.ProfileOrder)
{
var sec = sections.FirstOrDefault(s => s.Identifier == id);
2019-04-01 11:16:05 +08:00
2018-04-13 17:19:50 +08:00
if (sec != null)
{
sec.User.Value = user;
sectionsContainer.Add(sec);
tabs.AddItem(sec);
}
}
}
}
private class ProfileTabControl : OverlayTabControl<ProfileSection>
2018-04-13 17:19:50 +08:00
{
public ProfileTabControl()
{
TabContainer.RelativeSizeAxes &= ~Axes.X;
TabContainer.AutoSizeAxes |= Axes.X;
TabContainer.Anchor |= Anchor.x1;
TabContainer.Origin |= Anchor.x1;
}
protected override TabItem<ProfileSection> CreateTabItem(ProfileSection value) => new ProfileTabItem(value)
{
AccentColour = AccentColour
};
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
2020-01-30 04:35:17 +08:00
private void load(OverlayColourProvider colourProvider)
{
2020-01-30 04:35:17 +08:00
AccentColour = colourProvider.Highlight1;
}
2018-04-13 17:19:50 +08:00
private class ProfileTabItem : OverlayTabItem
2018-04-13 17:19:50 +08:00
{
2019-02-28 12:31:40 +08:00
public ProfileTabItem(ProfileSection value)
: base(value)
2018-04-13 17:19:50 +08:00
{
Text.Text = value.Title;
}
}
}
2019-06-22 06:11:04 +08:00
private class ProfileSectionsContainer : SectionsContainer<ProfileSection>
{
public ProfileSectionsContainer()
2018-04-13 17:19:50 +08:00
{
2019-06-22 06:11:04 +08:00
RelativeSizeAxes = Axes.Both;
2018-04-13 17:19:50 +08:00
}
2019-06-22 06:11:04 +08:00
2019-06-23 22:08:18 +08:00
protected override FlowContainer<ProfileSection> CreateScrollContentContainer() => new FillFlowContainer<ProfileSection>
2019-06-22 06:11:04 +08:00
{
Direction = FillDirection.Vertical,
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Spacing = new Vector2(0, 20),
};
2018-04-13 17:19:50 +08:00
}
}
}