2021-12-08 19:38:18 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-12-08 19:38:18 +08:00
|
|
|
using System.Linq;
|
|
|
|
using osu.Framework.Extensions.IEnumerableExtensions;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Playlists
|
|
|
|
{
|
2021-12-09 00:29:45 +08:00
|
|
|
/// <summary>
|
|
|
|
/// A <see cref="DrawableRoomPlaylist"/> which is displayed during the setup stage of a playlists room.
|
|
|
|
/// </summary>
|
|
|
|
public partial class PlaylistsRoomSettingsPlaylist : DrawableRoomPlaylist
|
2021-12-08 19:38:18 +08:00
|
|
|
{
|
2021-12-09 00:29:45 +08:00
|
|
|
public PlaylistsRoomSettingsPlaylist()
|
2021-12-08 19:38:18 +08:00
|
|
|
{
|
2021-12-09 00:16:37 +08:00
|
|
|
AllowReordering = true;
|
|
|
|
AllowDeletion = true;
|
2021-12-09 00:04:28 +08:00
|
|
|
|
2021-12-09 00:52:59 +08:00
|
|
|
RequestDeletion = item =>
|
2021-12-08 19:38:18 +08:00
|
|
|
{
|
|
|
|
var nextItem = Items.GetNext(item);
|
|
|
|
|
|
|
|
Items.Remove(item);
|
|
|
|
|
|
|
|
SelectedItem.Value = nextItem ?? Items.LastOrDefault();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|