93 lines
2.9 KiB
Dart
93 lines
2.9 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get_it/get_it.dart';
|
|
|
|
import '../../models/jellyfin_models.dart';
|
|
import '../../services/jellyfin_api_helper.dart';
|
|
import '../MusicScreen/album_item.dart';
|
|
import '../error_snackbar.dart';
|
|
|
|
class AddToPlaylistList extends StatefulWidget {
|
|
const AddToPlaylistList({
|
|
Key? key,
|
|
required this.itemToAddId,
|
|
}) : super(key: key);
|
|
|
|
final String itemToAddId;
|
|
|
|
@override
|
|
State<AddToPlaylistList> createState() => _AddToPlaylistListState();
|
|
}
|
|
|
|
class _AddToPlaylistListState extends State<AddToPlaylistList> {
|
|
final jellyfinApiHelper = GetIt.instance<JellyfinApiHelper>();
|
|
late Future<List<BaseItemDto>?> addToPlaylistListFuture;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
addToPlaylistListFuture = jellyfinApiHelper.getItems(
|
|
includeItemTypes: "Playlist",
|
|
sortBy: "SortName",
|
|
isGenres: false,
|
|
);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return FutureBuilder<List<BaseItemDto>?>(
|
|
future: addToPlaylistListFuture,
|
|
builder: (context, snapshot) {
|
|
if (snapshot.hasData) {
|
|
return Scrollbar(
|
|
child: ListView.builder(
|
|
itemCount: snapshot.data!.length,
|
|
itemBuilder: (context, index) {
|
|
return AlbumItem(
|
|
album: snapshot.data![index],
|
|
parentType: snapshot.data![index].type,
|
|
onTap: () async {
|
|
try {
|
|
await jellyfinApiHelper.addItemstoPlaylist(
|
|
playlistId: snapshot.data![index].id,
|
|
ids: [widget.itemToAddId],
|
|
);
|
|
|
|
if (!mounted) return;
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
const SnackBar(
|
|
content: Text("Added to playlist."),
|
|
// action: SnackBarAction(
|
|
// label: "OPEN",
|
|
// onPressed: () {
|
|
// Navigator.of(context).pushNamed(
|
|
// "/music/albumscreen",
|
|
// arguments: snapshot.data![index]);
|
|
// },
|
|
// ),
|
|
),
|
|
);
|
|
Navigator.pop(context);
|
|
} catch (e) {
|
|
errorSnackbar(e, context);
|
|
return;
|
|
}
|
|
},
|
|
);
|
|
},
|
|
),
|
|
);
|
|
} else if (snapshot.hasError) {
|
|
errorSnackbar(snapshot.error, context);
|
|
return const Center(
|
|
child: Icon(Icons.error, size: 64),
|
|
);
|
|
} else {
|
|
return const Center(
|
|
child: CircularProgressIndicator.adaptive(),
|
|
);
|
|
}
|
|
},
|
|
);
|
|
}
|
|
}
|