This repository has been archived on 2022-04-20. You can view files and clone it, but cannot push or open issues or pull requests.
app/lib/pages/namespace/namespace.dart

119 lines
3.8 KiB
Dart
Raw Normal View History

import 'dart:async';
2018-09-15 16:21:48 +00:00
import 'package:flutter/cupertino.dart';
2018-09-15 15:01:45 +00:00
import 'package:flutter/material.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';
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
2019-03-16 13:29:00 +00:00
NamespacePage({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
}
2019-03-16 13:29:00 +00:00
class _NamespacePageState extends State<NamespacePage> {
List<TaskList> _lists = [];
2018-09-27 15:55:56 +00:00
bool _loading = true;
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: 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(
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((_) => Scaffold.of(context)
.showSnackBar(SnackBar(
content: Text("${ls.title} removed"))));
},
))).toList(),
),
onRefresh: _updateLists,
)
: 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();
_updateLists();
}
Future _removeList(TaskList list) {
return VikunjaGlobal.of(context)
.listService
.delete(list.id)
.then((_) => _updateLists());
}
2018-09-27 15:55:56 +00:00
Future<void> _updateLists() {
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) {
2018-09-15 16:21:48 +00:00
Navigator.of(context).push(
MaterialPageRoute(builder: (context) => 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')),
);
}
2019-03-15 06:52:50 +00:00
_addList(String name, BuildContext context) {
VikunjaGlobal.of(context)
2019-03-15 22:14:37 +00:00
.listService
.create(widget.namespace.id, TaskList(id: null, title: name, tasks: []))
.then((_) {
setState(() {});
_updateLists();
Scaffold.of(context).showSnackBar(
SnackBar(
content: Text('The list was successfully created!'),
),
);
2019-03-14 21:27:13 +00:00
});
2018-09-15 15:01:45 +00:00
}
}