1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 10:07:28 +08:00
osu-lazer/osu.Game/Overlays/News/Sidebar/MonthSection.cs

190 lines
6.2 KiB
C#
Raw Normal View History

2021-05-10 13:47:00 +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.
using System;
using osu.Framework.Bindables;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics;
using osu.Game.Online.API.Requests.Responses;
using osu.Game.Graphics.Containers;
using osuTK;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics;
using System.Linq;
using System.Collections.Generic;
using osu.Framework.Allocation;
using osu.Framework.Graphics.Sprites;
using System.Diagnostics;
2021-05-10 13:47:00 +08:00
namespace osu.Game.Overlays.News.Sidebar
{
2021-05-17 15:02:21 +08:00
public class MonthSection : CompositeDrawable
2021-05-10 13:47:00 +08:00
{
2021-05-11 19:43:23 +08:00
private const int animation_duration = 250;
2021-05-10 13:47:00 +08:00
public readonly BindableBool IsOpen = new BindableBool();
2021-05-17 15:02:21 +08:00
public MonthSection(int month, int year, IEnumerable<APINewsPost> posts)
2021-05-10 13:47:00 +08:00
{
Debug.Assert(posts.All(p => p.PublishedAt.Month == month && p.PublishedAt.Year == year));
2021-05-11 21:51:59 +08:00
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
2021-05-11 19:43:23 +08:00
Masking = true;
2021-05-10 13:47:00 +08:00
InternalChild = new FillFlowContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
new DropdownHeader(month, year)
2021-05-10 13:47:00 +08:00
{
IsOpen = { BindTarget = IsOpen }
},
new PostsContainer
2021-05-10 13:47:00 +08:00
{
IsOpen = { BindTarget = IsOpen },
2021-05-10 13:47:00 +08:00
Children = posts.Select(p => new PostButton(p)).ToArray()
}
}
};
}
private class DropdownHeader : OsuClickableContainer
2021-05-11 19:43:23 +08:00
{
public readonly BindableBool IsOpen = new BindableBool();
2021-05-10 13:47:00 +08:00
private readonly SpriteIcon icon;
public DropdownHeader(int month, int year)
2021-05-10 13:47:00 +08:00
{
var date = new DateTime(year, month, 1);
RelativeSizeAxes = Axes.X;
Height = 15;
2021-05-10 13:47:00 +08:00
Action = IsOpen.Toggle;
Children = new Drawable[]
{
new OsuSpriteText
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Font = OsuFont.GetFont(size: 12, weight: FontWeight.Bold),
Text = date.ToString("MMM yyyy")
},
icon = new SpriteIcon
{
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
Size = new Vector2(10),
Icon = FontAwesome.Solid.ChevronDown
}
};
}
protected override void LoadComplete()
{
base.LoadComplete();
IsOpen.BindValueChanged(open =>
{
icon.Scale = new Vector2(1, open.NewValue ? -1 : 1);
}, true);
}
}
private class PostButton : OsuHoverContainer
{
protected override IEnumerable<Drawable> EffectTargets => new[] { text };
private readonly TextFlowContainer text;
public PostButton(APINewsPost post)
{
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
Child = text = new TextFlowContainer(t => t.Font = OsuFont.GetFont(size: 12))
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Text = post.Title
};
}
[BackgroundDependencyLoader]
private void load(OverlayColourProvider colourProvider)
{
IdleColour = colourProvider.Light2;
HoverColour = colourProvider.Light1;
2021-05-11 21:08:09 +08:00
Action = () => { }; // Avoid button being disabled since there's no proper action assigned.
2021-05-10 13:47:00 +08:00
}
}
private class PostsContainer : Container
{
public readonly BindableBool IsOpen = new BindableBool();
protected override Container<Drawable> Content => content;
private readonly FillFlowContainer content;
public PostsContainer()
{
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
InternalChild = content = new FillFlowContainer
{
Margin = new MarginPadding { Top = 5 },
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Spacing = new Vector2(0, 5)
};
}
protected override void LoadComplete()
{
base.LoadComplete();
IsOpen.BindValueChanged(open =>
{
ClearTransforms(true);
if (open.NewValue)
{
AutoSizeAxes = Axes.Y;
content.FadeIn(animation_duration, Easing.OutQuint);
}
else
{
AutoSizeAxes = Axes.None;
this.ResizeHeightTo(0, animation_duration, Easing.OutQuint);
content.FadeOut(animation_duration, Easing.OutQuint);
}
}, true);
// First state change should be instant.
FinishTransforms(true);
}
private bool shouldUpdateAutosize = true;
// Workaround to allow the dropdown to be opened immediately since FinishTransforms doesn't work for AutosizeDuration.
protected override void UpdateAfterAutoSize()
{
base.UpdateAfterAutoSize();
if (shouldUpdateAutosize)
{
AutoSizeDuration = animation_duration;
AutoSizeEasing = Easing.OutQuint;
shouldUpdateAutosize = false;
}
}
}
2021-05-10 13:47:00 +08:00
}
}