add filter button
This commit is contained in:
parent
c732ab31df
commit
b0f913f8d1
@ -36,7 +36,7 @@ class _ActorScreenState extends State<ActorScreen> {
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text("Temp"),
|
||||
title: Text("Actors"),
|
||||
),
|
||||
body: FutureBuilder(
|
||||
future: _categories,
|
||||
|
@ -36,7 +36,7 @@ class _CategorieScreenState extends State<CategorieScreen> {
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text("Temp"),
|
||||
title: Text("Categories"),
|
||||
),
|
||||
body: FutureBuilder(
|
||||
future: _categories,
|
||||
|
@ -29,7 +29,7 @@ class _SettingsScreenState extends State<SettingsScreen> {
|
||||
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text("Temp"),
|
||||
title: Text("Settings"),
|
||||
),
|
||||
body: Column(
|
||||
children: [
|
||||
|
@ -34,7 +34,7 @@ class _ShuffleScreenState extends State<ShuffleScreen> {
|
||||
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text("Temp"),
|
||||
title: Text("Shuffle"),
|
||||
),
|
||||
body: PreviewGrid(
|
||||
videoLoader: () {
|
||||
|
@ -4,11 +4,12 @@ import 'package:flutter/material.dart';
|
||||
import 'package:openmediacentermobile/DrawerPage.dart';
|
||||
|
||||
import '../api/api.dart';
|
||||
import '../log/log.dart';
|
||||
import '../preview/preview_grid.dart';
|
||||
import '../types/tag.dart';
|
||||
import '../types/video.dart';
|
||||
|
||||
enum FilterTypes { DATE, LIKES, RANDOM, NAMES, LENGTH }
|
||||
|
||||
class VideoFeed extends StatefulWidget {
|
||||
const VideoFeed({Key? key, this.tag}) : super(key: key);
|
||||
final Tag? tag;
|
||||
@ -20,9 +21,12 @@ class VideoFeed extends StatefulWidget {
|
||||
}
|
||||
|
||||
class VideoFeedState extends State<VideoFeed> {
|
||||
FilterTypes filterSelection = FilterTypes.DATE;
|
||||
Key _refreshKey = UniqueKey();
|
||||
|
||||
Future<List<VideoT>> loadData() async {
|
||||
final data = await API.query(
|
||||
"video", "getMovies", {'Tag': widget.tag?.tagId ?? 1, 'Sort': 0});
|
||||
final data = await API.query("video", "getMovies",
|
||||
{'Tag': widget.tag?.tagId ?? 1, 'Sort': filterSelection.index});
|
||||
|
||||
final d = jsonDecode(data);
|
||||
|
||||
@ -34,14 +38,48 @@ class VideoFeedState extends State<VideoFeed> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
double width = MediaQuery.of(context).size.width;
|
||||
Log.d(width);
|
||||
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text(widget.tag?.tagName ?? "OpenMediaCenter"),
|
||||
actions: [
|
||||
PopupMenuButton<FilterTypes>(
|
||||
// add icon, by default "3 dot" icon
|
||||
icon: Icon(Icons.filter_alt),
|
||||
initialValue: filterSelection,
|
||||
itemBuilder: (context) {
|
||||
return [
|
||||
PopupMenuItem<FilterTypes>(
|
||||
value: FilterTypes.DATE,
|
||||
child: Text("Date"),
|
||||
),
|
||||
PopupMenuItem<FilterTypes>(
|
||||
value: FilterTypes.LIKES,
|
||||
child: Text("Likes"),
|
||||
),
|
||||
PopupMenuItem<FilterTypes>(
|
||||
value: FilterTypes.RANDOM,
|
||||
child: Text("Random"),
|
||||
),
|
||||
PopupMenuItem<FilterTypes>(
|
||||
value: FilterTypes.NAMES,
|
||||
child: Text("Names"),
|
||||
),
|
||||
PopupMenuItem<FilterTypes>(
|
||||
value: FilterTypes.LENGTH,
|
||||
child: Text("Length"),
|
||||
),
|
||||
];
|
||||
},
|
||||
onSelected: (FilterTypes t) {
|
||||
setState(() {
|
||||
filterSelection = t;
|
||||
_refreshKey = UniqueKey();
|
||||
});
|
||||
}),
|
||||
],
|
||||
),
|
||||
body: PreviewGrid(
|
||||
key: _refreshKey,
|
||||
videoLoader: () => loadData(),
|
||||
),
|
||||
drawer: widget.tag == null ? MyDrawer() : null);
|
||||
|
Loading…
Reference in New Issue
Block a user