osu/osu.Game/Overlays/Rankings/SpotlightSelector.cs

166 lines
5.5 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.Allocation;
2020-01-10 14:30:51 +00:00
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
2020-01-10 14:30:51 +00:00
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;
using osu.Game.Online.API.Requests.Responses;
2020-01-10 14:30:51 +00:00
using osuTK;
using System;
namespace osu.Game.Overlays.Rankings
{
public class SpotlightSelector : Container
{
private readonly Box background;
2020-01-10 13:41:17 +00:00
private readonly SpotlightsDropdown dropdown;
private readonly DimmedLoadingLayer loading;
[Resolved]
private IAPIProvider api { get; set; }
2020-01-10 14:30:51 +00:00
public readonly Bindable<APISpotlight> SelectedSpotlight = new Bindable<APISpotlight>();
2020-01-10 17:46:35 +00:00
private readonly InfoColumn startDateColumn;
private readonly InfoColumn endDateColumn;
2020-01-10 14:30:51 +00:00
public SpotlightSelector()
{
RelativeSizeAxes = Axes.X;
2020-01-10 14:30:51 +00:00
Height = 100;
Children = new Drawable[]
{
background = new Box
{
RelativeSizeAxes = Axes.Both,
},
2020-01-10 14:30:51 +00:00
new Container
{
2020-01-10 14:30:51 +00:00
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Horizontal = UserProfileOverlay.CONTENT_X_MARGIN, Vertical = 10 },
Children = new Drawable[]
{
dropdown = new SpotlightsDropdown
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
RelativeSizeAxes = Axes.X,
Current = SelectedSpotlight,
Depth = -float.MaxValue
},
new FillFlowContainer
{
Anchor = Anchor.BottomRight,
Origin = Anchor.BottomRight,
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(15, 0),
Children = new Drawable[]
{
2020-01-10 17:46:35 +00:00
startDateColumn = new InfoColumn(@"Start Date"),
endDateColumn = new InfoColumn(@"End Date"),
2020-01-10 14:30:51 +00:00
}
}
}
},
loading = new DimmedLoadingLayer(),
};
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
background.Colour = colours.GreySeafoam;
2020-01-10 14:30:51 +00:00
}
protected override void LoadComplete()
{
base.LoadComplete();
SelectedSpotlight.BindValueChanged(onSelectionChanged);
}
public void FetchSpotlights()
{
loading.Show();
var request = new GetSpotlightsRequest();
request.Success += response =>
{
dropdown.Items = response.Spotlights;
loading.Hide();
};
api.Queue(request);
}
2020-01-10 13:41:17 +00:00
2020-01-10 14:30:51 +00:00
private void onSelectionChanged(ValueChangedEvent<APISpotlight> spotlight)
{
startDateColumn.Value = dateToString(spotlight.NewValue.StartDate);
endDateColumn.Value = dateToString(spotlight.NewValue.EndDate);
}
2020-01-10 17:46:35 +00:00
private string dateToString(DateTimeOffset date) => date.ToString("yyyy-MM-dd");
2020-01-10 14:30:51 +00:00
2020-01-10 17:46:35 +00:00
private class InfoColumn : FillFlowContainer
2020-01-10 14:30:51 +00:00
{
public string Value
{
set => valueText.Text = value;
}
private readonly OsuSpriteText valueText;
2020-01-10 17:46:35 +00:00
public InfoColumn(string name)
2020-01-10 14:30:51 +00:00
{
AutoSizeAxes = Axes.Both;
Direction = FillDirection.Vertical;
Children = new Drawable[]
{
new OsuSpriteText
{
Text = name,
Font = OsuFont.GetFont(size: 10),
},
new Container
{
AutoSizeAxes = Axes.X,
Height = 20,
Child = valueText = new OsuSpriteText
{
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
Font = OsuFont.GetFont(size: 18, weight: FontWeight.Light),
}
}
};
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
valueText.Colour = colours.GreySeafoamLighter;
}
}
2020-01-10 13:41:17 +00:00
private class SpotlightsDropdown : OsuDropdown<APISpotlight>
{
2020-01-10 14:30:51 +00:00
private DropdownMenu menu;
protected override DropdownMenu CreateMenu() => menu = base.CreateMenu().With(m => m.MaxHeight = 400);
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
menu.BackgroundColour = colours.Gray1;
AccentColour = colours.GreySeafoamDarker;
}
2020-01-10 13:41:17 +00:00
}
}
}