1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-08 23:58:46 +01:00
git-touch-android-ios-app/lib/screens/gh_notification.dart

197 lines
5.7 KiB
Dart
Raw Normal View History

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