mirror of
https://github.com/ppy/osu.git
synced 2024-11-18 05:52:55 +08:00
37 lines
1.1 KiB
C#
37 lines
1.1 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 System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using osu.Framework.Allocation;
|
|||
|
using osu.Framework.Graphics;
|
|||
|
using osu.Framework.Graphics.Containers;
|
|||
|
using osu.Game.Online.API.Requests.Responses;
|
|||
|
|
|||
|
namespace osu.Game.Overlays.Dashboard.Home.News
|
|||
|
{
|
|||
|
public class HomeNewsGroupPanel : HomePanel
|
|||
|
{
|
|||
|
private readonly List<APINewsPost> posts;
|
|||
|
|
|||
|
public HomeNewsGroupPanel(List<APINewsPost> posts)
|
|||
|
{
|
|||
|
this.posts = posts;
|
|||
|
}
|
|||
|
|
|||
|
[BackgroundDependencyLoader]
|
|||
|
private void load()
|
|||
|
{
|
|||
|
Content.Padding = new MarginPadding { Vertical = 5 };
|
|||
|
|
|||
|
Child = new FillFlowContainer<CollapsedNewsPanel>
|
|||
|
{
|
|||
|
RelativeSizeAxes = Axes.X,
|
|||
|
AutoSizeAxes = Axes.Y,
|
|||
|
Direction = FillDirection.Vertical,
|
|||
|
Children = posts.Select(p => new CollapsedNewsPanel(p)).ToArray()
|
|||
|
};
|
|||
|
}
|
|||
|
}
|
|||
|
}
|