git-touch-android-ios-app/lib/screens/gh_notification.dart

198 lines
5.5 KiB
Dart
Raw Normal View History

2019-02-06 06:06:11 +01:00
import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
2019-09-30 11:37:51 +02:00
import 'package:git_touch/models/theme.dart';
2019-09-25 11:06:36 +02:00
import 'package:git_touch/scaffolds/tab_stateful.dart';
2019-09-30 11:37:51 +02:00
import 'package:git_touch/widgets/action_entry.dart';
2019-09-11 13:59:47 +02:00
import 'package:git_touch/widgets/app_bar_title.dart';
2020-02-07 15:05:07 +01:00
import 'package:github/github.dart';
2019-09-02 14:40:20 +02:00
import 'package:provider/provider.dart';
import 'package:git_touch/models/notification.dart';
2019-09-27 14:52:38 +02:00
import 'package:git_touch/models/auth.dart';
2019-12-26 11:00:36 +01:00
import 'package:git_touch/models/github.dart';
import '../widgets/notification_item.dart';
import '../widgets/list_group.dart';
2019-02-10 05:16:52 +01:00
import '../widgets/empty.dart';
import '../utils/utils.dart';
import '../generated/l10n.dart';
2020-02-07 07:17:05 +01:00
class GhNotificationScreen extends StatefulWidget {
@override
2020-02-07 07:17:05 +01:00
GhNotificationScreenState createState() => GhNotificationScreenState();
}
2020-02-07 07:17:05 +01:00
class GhNotificationScreenState extends State<GhNotificationScreen> {
2019-02-07 07:35:19 +01:00
Future<Map<String, NotificationGroup>> fetchNotifications(int index) async {
2020-10-04 14:37:23 +02:00
final ns = await context.read<AuthModel>().ghClient.getJSON(
2020-02-18 18:00:16 +01:00
'/notifications?all=${index == 2}&participating=${index == 1}',
convert: (vs) =>
[for (var v in vs) GithubNotificationItem.fromJson(v)],
);
2019-02-07 07:35:19 +01:00
if (index == 0) {
2020-10-04 14:37:23 +02:00
context.read<NotificationModel>().setCount(ns.length);
2019-02-07 07:35:19 +01:00
}
Map<String, NotificationGroup> _groupMap = {};
ns.forEach((item) {
2019-12-26 11:00:36 +01:00
final repo = item.repository.fullName;
2019-02-07 07:35:19 +01:00
if (_groupMap[repo] == null) {
2019-12-26 11:00:36 +01:00
_groupMap[repo] = NotificationGroup(repo);
2019-02-07 07:35:19 +01:00
}
_groupMap[repo].items.add(item);
});
if (_groupMap.isNotEmpty) {
// query state of issues and pull requests
var schema = '{';
_groupMap.forEach((repo, group) {
2019-03-19 13:11:35 +01:00
// Check if issue and pull request exist
if (group.items.where((item) {
2019-12-26 11:00:36 +01:00
return item.subject.type == 'Issue' ||
item.subject.type == 'PullRequest';
2019-03-19 13:11:35 +01:00
}).isEmpty) {
return;
}
schema +=
2019-09-03 05:56:25 +02:00
'${group.key}: repository(owner: "${group.owner}", name: "${group.name}") {';
group.items.forEach((item) {
2019-12-26 11:00:36 +01:00
switch (item.subject.type) {
case 'Issue':
schema += '''
2019-12-26 11:00:36 +01:00
${item.key}: issue(number: ${item.subject.number}) {
2019-02-07 07:35:19 +01:00
state
}
''';
break;
case 'PullRequest':
schema += '''
2019-12-26 11:00:36 +01:00
${item.key}: pullRequest(number: ${item.subject.number}) {
2019-02-07 07:35:19 +01:00
state
}
''';
break;
}
});
2019-02-07 07:35:19 +01:00
schema += '}';
});
2019-02-07 07:35:19 +01:00
schema += '}';
2019-12-26 06:58:23 +01:00
if (schema == '{}') return _groupMap;
// Fimber.d(schema);
2020-10-04 14:37:23 +02:00
var data = await context.read<AuthModel>().query(schema);
_groupMap.forEach((repo, group) {
group.items.forEach((item) {
2019-09-03 05:56:25 +02:00
var groupData = data[group.key];
2019-03-19 13:11:35 +01:00
if (groupData == null) return;
2019-09-03 05:56:25 +02:00
var itemData = data[group.key][item.key];
if (itemData != null) {
item.state = itemData['state'];
}
});
2019-02-07 07:35:19 +01:00
});
// Fimber.d(data);
}
2019-02-07 07:35:19 +01:00
return _groupMap;
}
Widget _buildGroupItem(
2020-02-07 15:05:07 +01:00
BuildContext context,
MapEntry<String, NotificationGroup> entry,
Map<String, NotificationGroup> groupMap,
) {
2019-12-27 08:29:13 +01:00
final theme = Provider.of<ThemeModel>(context);
2019-12-26 11:00:36 +01:00
final group = entry.value;
return ListGroup(
2019-03-10 14:26:05 +01:00
title: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
Text(
2019-12-26 11:00:36 +01:00
group.fullName,
2019-12-27 08:29:13 +01:00
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w600,
2020-01-27 08:11:51 +01:00
color: theme.palette.text,
2019-12-27 08:29:13 +01:00
),
2019-03-10 14:26:05 +01:00
),
2019-09-29 10:39:30 +02:00
GestureDetector(
2019-03-10 14:26:05 +01:00
onTap: () async {
2020-10-04 14:37:23 +02:00
await context
.read<AuthModel>()
.ghClient
.activity
.markRepositoryNotificationsRead(
RepositorySlug.full(group.fullName));
// await _onSwitchTab(); // TODO:
2019-02-06 06:06:11 +01:00
},
2019-03-10 14:26:05 +01:00
child: Icon(
Octicons.check,
2020-01-27 08:11:51 +01:00
color: theme.palette.tertiaryText,
2019-03-10 14:26:05 +01:00
size: 24,
),
),
],
),
items: group.items,
itemBuilder: (item, index) {
return NotificationItem(
payload: item,
markAsRead: () {
if (mounted) {
setState(() {
groupMap[entry.key].items[index].unread = false;
});
}
},
);
},
);
}
@override
Widget build(context) {
2019-09-25 11:06:36 +02:00
return TabStatefulScaffold(
title: AppBarTitle(S.of(context).notification),
tabs: [
S.of(context).unread,
S.of(context).participating,
S.of(context).all
],
2019-09-30 11:37:51 +02:00
fetchData: fetchNotifications,
2019-09-24 14:45:55 +02:00
bodyBuilder: (groupMap, activeTab) {
if (groupMap.isEmpty) return EmptyWidget();
return Column(
children: [
Padding(padding: EdgeInsets.only(top: 10)),
...groupMap.entries
.map((entry) => _buildGroupItem(context, entry, groupMap))
.toList()
],
);
2019-02-06 06:06:11 +01:00
},
2019-09-30 11:37:51 +02:00
actionBuilder: (_, refresh) => ActionEntry(
iconData: Icons.done_all,
onTap: () async {
2020-10-04 14:37:23 +02:00
final value = await context
.read<ThemeModel>()
2019-10-03 06:55:17 +02:00
.showConfirm(context, Text('Mark all as read?'));
2019-09-30 11:37:51 +02:00
if (value) {
2020-10-04 14:37:23 +02:00
await context
.read<AuthModel>()
2020-02-07 15:05:07 +01:00
.ghClient
.activity
.markNotificationsRead();
2019-09-30 11:37:51 +02:00
refresh();
}
},
),
2019-02-06 06:06:11 +01:00
);
}
}