1
0
mirror of https://github.com/go-vikunja/app synced 2024-05-29 08:46:51 +00:00
app-mirror-github/lib/fragments/namespace.dart

111 lines
3.5 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';
import 'package:vikunja_app/pages/list_page.dart';
2018-09-15 15:01:45 +00:00
2018-09-15 16:21:48 +00:00
class NamespaceFragment extends StatefulWidget {
final Namespace namespace;
2019-03-14 21:27:13 +00:00
NamespaceFragment({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
_NamespaceFragmentState createState() => new _NamespaceFragmentState();
}
class _NamespaceFragmentState extends State<NamespaceFragment> {
List<TaskList> _lists = [];
2018-09-27 15:55:56 +00:00
bool _loading = true;
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()),
floatingActionButton: FloatingActionButton(
onPressed: () => _addListDialog(), 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)));
}
_addListDialog() {
showDialog(
context: context,
2018-09-27 15:55:56 +00:00
builder: (_) => AddDialog(
onAdd: _addList,
decoration: new InputDecoration(
labelText: 'List Name', hintText: 'eg. Shopping List')),
);
}
_addList(String name) {
VikunjaGlobal.of(context)
2019-03-14 21:27:13 +00:00
.listService
.create(widget.namespace.id, TaskList(id: null, title: name, tasks: []))
.then((_) {
setState(() {});
_updateLists();
});
2018-09-15 15:01:45 +00:00
}
}