mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 00:53:22 +08:00
Merge pull request #10126 from Joehuu/fix-playlist-item-no-drag-handle
Fix drag handles not showing on now playing playlist items
This commit is contained in:
commit
48db5739ed
@ -2,32 +2,35 @@
|
|||||||
// See the LICENCE file in the repository root for full licence text.
|
// See the LICENCE file in the repository root for full licence text.
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
using System.Linq;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using osu.Framework.Bindables;
|
using osu.Framework.Bindables;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
|
using osu.Framework.Testing;
|
||||||
using osu.Framework.Utils;
|
using osu.Framework.Utils;
|
||||||
using osu.Game.Beatmaps;
|
using osu.Game.Beatmaps;
|
||||||
using osu.Game.Overlays.Music;
|
using osu.Game.Overlays.Music;
|
||||||
using osuTK;
|
using osuTK;
|
||||||
|
using osuTK.Input;
|
||||||
|
|
||||||
namespace osu.Game.Tests.Visual.UserInterface
|
namespace osu.Game.Tests.Visual.UserInterface
|
||||||
{
|
{
|
||||||
public class TestScenePlaylistOverlay : OsuTestScene
|
public class TestScenePlaylistOverlay : OsuManualInputManagerTestScene
|
||||||
{
|
{
|
||||||
private readonly BindableList<BeatmapSetInfo> beatmapSets = new BindableList<BeatmapSetInfo>();
|
private readonly BindableList<BeatmapSetInfo> beatmapSets = new BindableList<BeatmapSetInfo>();
|
||||||
|
|
||||||
|
private PlaylistOverlay playlistOverlay;
|
||||||
|
|
||||||
[SetUp]
|
[SetUp]
|
||||||
public void Setup() => Schedule(() =>
|
public void Setup() => Schedule(() =>
|
||||||
{
|
{
|
||||||
PlaylistOverlay overlay;
|
|
||||||
|
|
||||||
Child = new Container
|
Child = new Container
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
Size = new Vector2(300, 500),
|
Size = new Vector2(300, 500),
|
||||||
Child = overlay = new PlaylistOverlay
|
Child = playlistOverlay = new PlaylistOverlay
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
@ -53,7 +56,45 @@ namespace osu.Game.Tests.Visual.UserInterface
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
overlay.BeatmapSets.BindTo(beatmapSets);
|
playlistOverlay.BeatmapSets.BindTo(beatmapSets);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestRearrangeItems()
|
||||||
|
{
|
||||||
|
AddUntilStep("wait for animations to complete", () => !playlistOverlay.Transforms.Any());
|
||||||
|
|
||||||
|
AddStep("hold 1st item handle", () =>
|
||||||
|
{
|
||||||
|
var handle = this.ChildrenOfType<PlaylistItem.PlaylistItemHandle>().First();
|
||||||
|
InputManager.MoveMouseTo(handle.ScreenSpaceDrawQuad.Centre);
|
||||||
|
InputManager.PressButton(MouseButton.Left);
|
||||||
|
});
|
||||||
|
|
||||||
|
AddStep("drag to 5th", () =>
|
||||||
|
{
|
||||||
|
var item = this.ChildrenOfType<PlaylistItem>().ElementAt(4);
|
||||||
|
InputManager.MoveMouseTo(item.ScreenSpaceDrawQuad.Centre);
|
||||||
|
});
|
||||||
|
|
||||||
|
AddAssert("song 1 is 5th", () => beatmapSets[4].Metadata.Title == "Some Song 1");
|
||||||
|
|
||||||
|
AddStep("release handle", () => InputManager.ReleaseButton(MouseButton.Left));
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestFiltering()
|
||||||
|
{
|
||||||
|
AddStep("set filter to \"10\"", () =>
|
||||||
|
{
|
||||||
|
var filterControl = playlistOverlay.ChildrenOfType<FilterControl>().Single();
|
||||||
|
filterControl.Search.Current.Value = "10";
|
||||||
|
});
|
||||||
|
|
||||||
|
AddAssert("results filtered correctly",
|
||||||
|
() => playlistOverlay.ChildrenOfType<PlaylistItem>()
|
||||||
|
.Where(item => item.MatchingFilter)
|
||||||
|
.All(item => item.FilterTerms.Any(term => term.Contains("10"))));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -44,7 +44,7 @@ namespace osu.Game.Graphics.Containers
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Whether the drag handle should be shown.
|
/// Whether the drag handle should be shown.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected readonly Bindable<bool> ShowDragHandle = new Bindable<bool>();
|
protected readonly Bindable<bool> ShowDragHandle = new Bindable<bool>(true);
|
||||||
|
|
||||||
private Container handleContainer;
|
private Container handleContainer;
|
||||||
private PlaylistItemHandle handle;
|
private PlaylistItemHandle handle;
|
||||||
|
Loading…
Reference in New Issue
Block a user