2019-01-27 17:37:44 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2019-01-25 18:43:09 +01:00
|
|
|
import 'package:flutter/cupertino.dart';
|
2019-01-31 07:37:25 +01:00
|
|
|
import '../utils/utils.dart';
|
2019-02-08 07:06:48 +01:00
|
|
|
import '../scaffolds/long_list.dart';
|
2019-02-03 07:42:50 +01:00
|
|
|
import '../widgets/timeline_item.dart';
|
2019-02-06 06:06:11 +01:00
|
|
|
import '../widgets/comment_item.dart';
|
2019-02-07 07:35:19 +01:00
|
|
|
import '../providers/settings.dart';
|
2019-01-28 14:32:01 +01:00
|
|
|
|
2019-02-03 07:42:50 +01:00
|
|
|
class IssueScreen extends StatefulWidget {
|
2019-02-08 07:01:25 +01:00
|
|
|
final int number;
|
2019-01-28 14:32:01 +01:00
|
|
|
final String owner;
|
|
|
|
final String name;
|
2019-01-27 17:37:44 +01:00
|
|
|
|
2019-02-08 07:01:25 +01:00
|
|
|
IssueScreen({
|
|
|
|
@required this.number,
|
|
|
|
@required this.owner,
|
|
|
|
@required this.name,
|
|
|
|
});
|
|
|
|
|
|
|
|
IssueScreen.fromFullName({@required this.number, @required String fullName})
|
|
|
|
: this.owner = fullName.split('/')[0],
|
|
|
|
this.name = fullName.split('/')[1];
|
2019-01-27 17:37:44 +01:00
|
|
|
|
2019-02-03 07:42:50 +01:00
|
|
|
@override
|
|
|
|
_IssueScreenState createState() => _IssueScreenState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _IssueScreenState extends State<IssueScreen> {
|
|
|
|
get _fullName => widget.owner + '/' + widget.name;
|
2019-02-08 07:01:25 +01:00
|
|
|
get owner => widget.owner;
|
|
|
|
get id => widget.number;
|
|
|
|
get name => widget.name;
|
2019-02-03 07:42:50 +01:00
|
|
|
|
2019-02-08 07:01:25 +01:00
|
|
|
Future queryIssue() async {
|
2019-02-07 07:35:19 +01:00
|
|
|
var data = await SettingsProvider.of(context).query('''
|
|
|
|
{
|
|
|
|
repository(owner: "$owner", name: "$name") {
|
|
|
|
issue(number: $id) {
|
|
|
|
$graphqlChunk1
|
|
|
|
timeline(first: $pageSize) {
|
2019-02-08 07:01:25 +01:00
|
|
|
totalCount
|
2019-02-07 07:35:19 +01:00
|
|
|
pageInfo {
|
|
|
|
hasNextPage
|
|
|
|
endCursor
|
|
|
|
}
|
|
|
|
nodes {
|
|
|
|
$graghqlChunk
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
''');
|
|
|
|
return data['repository']['issue'];
|
|
|
|
}
|
|
|
|
|
2019-02-08 07:01:25 +01:00
|
|
|
Future queryMore(String cursor) async {
|
|
|
|
var data = await SettingsProvider.of(context).query('''
|
|
|
|
{
|
|
|
|
repository(owner: "$owner", name: "$name") {
|
|
|
|
issue(number: $id) {
|
|
|
|
timeline(first: $pageSize, after: $cursor) {
|
|
|
|
totalCount
|
|
|
|
pageInfo {
|
|
|
|
endCursor
|
|
|
|
}
|
|
|
|
nodes {
|
|
|
|
$graghqlChunk
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
''');
|
|
|
|
return data['repository']['issue'];
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<List> queryTrailing() async {
|
|
|
|
var data = await SettingsProvider.of(context).query('''
|
|
|
|
{
|
|
|
|
repository(owner: "$owner", name: "$name") {
|
|
|
|
issue(number: $id) {
|
|
|
|
timeline(last: $pageSize) {
|
|
|
|
nodes {
|
|
|
|
$graghqlChunk
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
''');
|
|
|
|
return data['repository']['issue']['timeline']['nodes'];
|
|
|
|
}
|
|
|
|
|
2019-02-09 08:33:06 +01:00
|
|
|
// TODO: extract as widget, this is copied from pull request
|
|
|
|
Widget _buildBadge(payload) {
|
|
|
|
Color bgColor;
|
|
|
|
IconData iconData;
|
|
|
|
String text;
|
|
|
|
|
|
|
|
if (payload['closed']) {
|
|
|
|
bgColor = Palette.red;
|
|
|
|
iconData = Octicons.issue_closed;
|
|
|
|
text = 'Closed';
|
|
|
|
} else {
|
|
|
|
bgColor = Palette.green;
|
|
|
|
iconData = Octicons.issue_opened;
|
|
|
|
text = 'Open';
|
|
|
|
}
|
|
|
|
return Container(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: bgColor,
|
|
|
|
borderRadius: BorderRadius.all(Radius.circular(4)),
|
|
|
|
),
|
|
|
|
padding: EdgeInsets.all(6),
|
|
|
|
child: Row(
|
|
|
|
children: <Widget>[
|
|
|
|
Icon(iconData, color: Colors.white, size: 15),
|
|
|
|
Padding(padding: EdgeInsets.only(left: 2)),
|
|
|
|
Text(
|
|
|
|
text,
|
|
|
|
style: TextStyle(
|
|
|
|
color: Colors.white,
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
fontSize: 14,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-01-25 18:43:09 +01:00
|
|
|
@override
|
2019-01-27 17:37:44 +01:00
|
|
|
Widget build(BuildContext context) {
|
2019-02-08 07:01:25 +01:00
|
|
|
return LongListScaffold(
|
|
|
|
title: Text(_fullName + ' #' + widget.number.toString()),
|
|
|
|
headerBuilder: (payload) {
|
|
|
|
return Column(children: <Widget>[
|
|
|
|
Container(
|
2019-02-09 08:33:06 +01:00
|
|
|
padding: EdgeInsets.all(10),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
border: Border(bottom: BorderSide(color: Colors.black12)),
|
|
|
|
),
|
2019-02-08 07:01:25 +01:00
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: <Widget>[
|
2019-02-09 08:33:06 +01:00
|
|
|
Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
|
|
children: <Widget>[
|
|
|
|
Expanded(
|
|
|
|
child: Text(
|
|
|
|
payload['title'],
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 20,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Padding(padding: EdgeInsets.only(right: 8)),
|
|
|
|
_buildBadge(payload),
|
|
|
|
],
|
2019-02-08 07:01:25 +01:00
|
|
|
),
|
2019-02-09 08:33:06 +01:00
|
|
|
Padding(padding: EdgeInsets.only(bottom: 16)),
|
2019-02-08 07:01:25 +01:00
|
|
|
CommentItem(payload),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
)
|
|
|
|
]);
|
|
|
|
},
|
|
|
|
itemBuilder: (itemPayload) => TimelineItem(itemPayload),
|
2019-02-03 07:42:50 +01:00
|
|
|
onRefresh: () async {
|
2019-02-08 07:01:25 +01:00
|
|
|
var res = await queryIssue();
|
|
|
|
int totalCount = res['timeline']['totalCount'];
|
|
|
|
String cursor = res['timeline']['pageInfo']['endCursor'];
|
|
|
|
List leadingItems = res['timeline']['nodes'];
|
|
|
|
|
|
|
|
var payload = LongListPayload(
|
|
|
|
header: res,
|
|
|
|
totalCount: totalCount,
|
|
|
|
cursor: cursor,
|
|
|
|
leadingItems: leadingItems,
|
|
|
|
trailingItems: [],
|
|
|
|
);
|
|
|
|
|
|
|
|
if (totalCount > 2 * pageSize) {
|
|
|
|
payload.trailingItems = await queryTrailing();
|
2019-02-06 14:35:52 +01:00
|
|
|
}
|
2019-02-08 07:01:25 +01:00
|
|
|
|
|
|
|
return payload;
|
|
|
|
},
|
|
|
|
onLoadMore: (String _cursor) async {
|
|
|
|
var res = await queryMore(_cursor);
|
|
|
|
int totalCount = res['timeline']['totalCount'];
|
|
|
|
String cursor = res['timeline']['pageInfo']['endCursor'];
|
|
|
|
List leadingItems = res['timeline']['nodes'];
|
|
|
|
|
|
|
|
var payload = LongListPayload(
|
|
|
|
totalCount: totalCount,
|
|
|
|
cursor: cursor,
|
|
|
|
leadingItems: leadingItems,
|
|
|
|
);
|
|
|
|
|
|
|
|
return payload;
|
2019-02-03 07:42:50 +01:00
|
|
|
},
|
2019-01-25 18:43:09 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|