mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 05:57:52 +08:00
66 lines
1.8 KiB
C#
66 lines
1.8 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;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Input.Events;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Online.Placeholders;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Online.Leaderboards
|
|
{
|
|
public class RetrievalFailurePlaceholder : Placeholder
|
|
{
|
|
public Action OnRetry;
|
|
|
|
public RetrievalFailurePlaceholder()
|
|
{
|
|
AddArbitraryDrawable(new RetryButton
|
|
{
|
|
Action = () => OnRetry?.Invoke(),
|
|
Padding = new MarginPadding { Right = 10 }
|
|
});
|
|
|
|
AddText(@"Couldn't retrieve scores!");
|
|
}
|
|
|
|
public class RetryButton : OsuHoverContainer
|
|
{
|
|
private readonly SpriteIcon icon;
|
|
|
|
public new Action Action;
|
|
|
|
public RetryButton()
|
|
{
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
Child = new OsuClickableContainer
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Action = () => Action?.Invoke(),
|
|
Child = icon = new SpriteIcon
|
|
{
|
|
Icon = FontAwesome.Solid.Sync,
|
|
Size = new Vector2(TEXT_SIZE),
|
|
Shadow = true,
|
|
},
|
|
};
|
|
}
|
|
|
|
protected override bool OnMouseDown(MouseDownEvent e)
|
|
{
|
|
icon.ScaleTo(0.8f, 4000, Easing.OutQuint);
|
|
return base.OnMouseDown(e);
|
|
}
|
|
|
|
protected override bool OnMouseUp(MouseUpEvent e)
|
|
{
|
|
icon.ScaleTo(1, 1000, Easing.OutElastic);
|
|
return base.OnMouseUp(e);
|
|
}
|
|
}
|
|
}
|
|
}
|