OpenMediacenterMobileFlutter/lib/video_screen/info_view.dart

148 lines
5.3 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
import '../api/actor_api.dart';
2022-08-30 21:25:21 +00:00
import '../api/video_api.dart';
import '../dialog/add_actor_dialog.dart';
import '../dialog/add_tag_dialog.dart';
import '../navigation/video_feed.dart';
import '../screen_loading.dart';
import '../types/video_data.dart';
import '../preview/actor_tile.dart';
import '../types/actor.dart';
class InfoView extends StatefulWidget {
2022-08-30 21:25:21 +00:00
const InfoView({Key? key, required this.videoId}) : super(key: key);
final int videoId;
@override
State<InfoView> createState() => _InfoViewState();
}
class _InfoViewState extends State<InfoView> {
late Future<List<Actor>> _data;
2022-08-30 21:25:21 +00:00
late Future<VideoData> vdata;
@override
void initState() {
2022-08-30 21:25:21 +00:00
super.initState();
setState(() {
_data = loadActorsOfVideo(widget.videoId);
2022-08-30 21:25:21 +00:00
vdata = loadVideoData(widget.videoId);
});
2022-08-30 21:25:21 +00:00
}
@override
void didUpdateWidget(InfoView oldWidget) {
super.didUpdateWidget(oldWidget);
}
@override
Widget build(BuildContext context) {
return FutureBuilder(
2022-08-30 21:25:21 +00:00
future: Future.wait([_data, vdata]),
builder: (context, AsyncSnapshot<List<dynamic>> snapshot) {
if (snapshot.hasError) {
return Text("Error");
} else if (snapshot.hasData) {
2022-08-30 21:25:21 +00:00
final actors = snapshot.data![0] as List<Actor>;
final videoData = snapshot.data![1] as VideoData;
return Padding(
padding: EdgeInsets.only(left: 10, right: 10, top: 60),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
2022-08-30 21:25:21 +00:00
Row(
children: [
IconButton(
onPressed: () async {
if (await addLike(videoData.movieId))
setState(() {
vdata = loadVideoData(widget.videoId);
});
2022-08-30 21:25:21 +00:00
},
icon: Icon(Icons.thumb_up)),
TextButton(
onPressed: () async {
await showDialog(
context: context,
builder: (context) => AddActorDialog(
movieId: videoData.movieId,
),
);
setState(() {
_data = loadActorsOfVideo(widget.videoId);
2022-08-30 21:25:21 +00:00
});
},
child: Text("Add Actor"),
),
TextButton(
onPressed: () async {
await showDialog(
context: context,
builder: (context) => AddTagDialog(
movieId: videoData.movieId,
),
);
setState(() {
vdata = loadVideoData(widget.videoId);
});
},
child: Text("Add Tag"),
)
],
),
Text(
"General info:",
style: TextStyle(fontWeight: FontWeight.bold),
),
Text("Likes: ${videoData.likes}"),
Text("Quality: ${videoData.quality}"),
Text("Length: ${videoData.length}sec"),
Text("Actors:",
style: TextStyle(fontWeight: FontWeight.bold)),
actors.isEmpty
? Text("no actors available")
2022-08-30 21:25:21 +00:00
: SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
children: _renderActors(actors),
),
),
2022-08-30 21:25:21 +00:00
Text("Tags:",
style: TextStyle(fontWeight: FontWeight.bold)),
SizedBox(
height: 5,
),
Wrap(
spacing: 4,
runSpacing: 4,
children: videoData.tags
.map(
(e) => ActionChip(
backgroundColor:
Theme.of(context).secondaryHeaderColor,
label: Text(e.tagName),
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => VideoFeed(tag: e),
),
);
},
),
)
.toList(growable: false),
)
]));
} else {
return ScreenLoading();
}
},
);
}
List<Widget> _renderActors(List<Actor> actors) {
return actors.map((e) => ActorTile(actor: e)).toList(growable: false);
}
}