app-mirror-github/lib/pages/namespace/namespace.dart

153 lines
4.9 KiB
Dart
Raw Normal View History

import 'dart:async';
2018-09-15 15:01:45 +00:00
import 'package:flutter/material.dart';
import 'package:after_layout/after_layout.dart';
2021-06-04 09:34:25 +00:00
import 'package:provider/provider.dart';
2018-09-27 15:55:56 +00:00
import 'package:vikunja_app/components/AddDialog.dart';
2018-09-22 20:56:16 +00:00
import 'package:vikunja_app/global.dart';
2019-03-11 20:29:15 +00:00
import 'package:vikunja_app/models/list.dart';
2018-09-22 20:56:16 +00:00
import 'package:vikunja_app/models/namespace.dart';
2019-03-16 13:29:00 +00:00
import 'package:vikunja_app/pages/list/list.dart';
2021-06-04 09:34:25 +00:00
import 'package:vikunja_app/stores/list_store.dart';
2018-09-15 15:01:45 +00:00
2019-03-16 13:29:00 +00:00
class NamespacePage extends StatefulWidget {
final Namespace namespace;
2019-03-14 21:27:13 +00:00
2022-08-27 21:57:42 +00:00
NamespacePage({required this.namespace})
: super(key: Key(namespace.id.toString()));
2018-09-15 15:01:45 +00:00
2018-09-15 16:21:48 +00:00
@override
2019-03-16 13:29:00 +00:00
_NamespacePageState createState() => new _NamespacePageState();
2018-09-15 16:21:48 +00:00
}
class _NamespacePageState extends State<NamespacePage>
with AfterLayoutMixin<NamespacePage> {
List<TaskList> _lists = [];
2018-09-27 15:55:56 +00:00
bool _loading = true;
@override
void afterFirstLayout(BuildContext context) {
_loadLists();
}
2019-03-16 13:29:00 +00:00
/////
// This essentially shows the lists.
2018-09-15 15:01:45 +00:00
@override
Widget build(BuildContext context) {
return Scaffold(
2018-09-27 15:55:56 +00:00
body: !this._loading
? RefreshIndicator(
child: _lists.length > 0
? new ListView(
padding: EdgeInsets.symmetric(vertical: 8.0),
children: ListTile.divideTiles(
context: context,
tiles: _lists.map((ls) => Dismissible(
key: Key(ls.id.toString()),
direction: DismissDirection.startToEnd,
child: ListTile(
2022-09-03 15:43:16 +00:00
title: new Text(ls.title),
onTap: () => _openList(context, ls),
trailing: Icon(Icons.arrow_right),
),
background: Container(
color: Colors.red,
child: const ListTile(
leading: Icon(Icons.delete,
color: Colors.white, size: 36.0)),
),
onDismissed: (direction) {
_removeList(ls).then((_) =>
ScaffoldMessenger.of(context)
.showSnackBar(SnackBar(
content: Text(
"${ls.title} removed"))));
},
))).toList(),
)
: Center(child: Text('This namespace is empty.')),
onRefresh: _loadLists,
2018-09-27 15:55:56 +00:00
)
: Center(child: CircularProgressIndicator()),
2019-03-15 06:52:50 +00:00
floatingActionButton: Builder(
builder: (context) => FloatingActionButton(
2019-03-15 22:14:37 +00:00
onPressed: () => _addListDialog(context),
child: const Icon(Icons.add))),
2018-09-15 16:21:48 +00:00
);
}
@override
void didChangeDependencies() {
super.didChangeDependencies();
_loadLists();
}
2022-09-03 15:43:16 +00:00
Future<void> _removeList(TaskList list) {
return VikunjaGlobal.of(context)
.listService
.delete(list.id)
.then((_) => _loadLists());
}
Future<void> _loadLists() {
2021-06-04 09:34:25 +00:00
// FIXME: This is called even when the tasks on a list are loaded - which is not needed at all
2018-09-27 15:55:56 +00:00
return VikunjaGlobal.of(context)
.listService
.getByNamespace(widget.namespace.id)
2018-09-27 15:55:56 +00:00
.then((lists) => setState(() {
this._lists = lists;
this._loading = false;
}));
}
_openList(BuildContext context, TaskList list) {
2021-06-04 09:34:25 +00:00
Navigator.of(context).push(MaterialPageRoute(
builder: (context) => ChangeNotifierProvider<ListProvider>(
create: (_) => new ListProvider(),
child: ListPage(
taskList: list,
),
),
// ListPage(taskList: list)
));
}
2019-03-15 06:52:50 +00:00
_addListDialog(BuildContext context) {
showDialog(
context: context,
2018-09-27 15:55:56 +00:00
builder: (_) => AddDialog(
2019-03-15 06:52:50 +00:00
onAdd: (name) => _addList(name, context),
2018-09-27 15:55:56 +00:00
decoration: new InputDecoration(
labelText: 'List Name', hintText: 'eg. Shopping List')),
);
}
2022-09-03 15:43:16 +00:00
void _addList(String name, BuildContext context) {
final curentUser = VikunjaGlobal.of(context).currentUser;
if (curentUser == null) {
return;
}
VikunjaGlobal.of(context)
2019-03-15 22:14:37 +00:00
.listService
2022-08-27 21:57:42 +00:00
.create(
widget.namespace.id,
TaskList(
2022-09-03 15:43:16 +00:00
title: name,
tasks: [],
namespaceId: widget.namespace.id,
owner: curentUser,
))
2019-03-15 22:14:37 +00:00
.then((_) {
setState(() {});
_loadLists();
2022-04-10 13:31:56 +00:00
ScaffoldMessenger.of(context).showSnackBar(
2019-03-15 22:14:37 +00:00
SnackBar(
content: Text('The list was successfully created!'),
),
);
2019-03-14 21:27:13 +00:00
});
2018-09-15 15:01:45 +00:00
}
}