2019-01-28 14:32:01 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2019-01-29 12:41:24 +01:00
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
import 'package:flutter/gestures.dart';
|
2019-02-05 13:57:05 +01:00
|
|
|
import '../providers/settings.dart';
|
2019-02-07 07:35:19 +01:00
|
|
|
import '../screens/repo.dart';
|
2019-02-15 07:41:19 +01:00
|
|
|
export 'package:flutter_vector_icons/flutter_vector_icons.dart';
|
2019-01-26 15:10:18 +01:00
|
|
|
export 'timeago.dart';
|
2019-01-28 14:32:01 +01:00
|
|
|
|
2019-02-04 11:32:39 +01:00
|
|
|
Color convertColor(String cssHex) {
|
|
|
|
if (cssHex.startsWith('#')) {
|
|
|
|
cssHex = cssHex.substring(1);
|
|
|
|
}
|
|
|
|
return Color(int.parse('ff' + cssHex, radix: 16));
|
|
|
|
}
|
|
|
|
|
2019-02-10 05:16:52 +01:00
|
|
|
void nextTick(Function callback, [int milliseconds = 0]) {
|
2019-02-08 16:20:28 +01:00
|
|
|
// FIXME:
|
2019-02-10 05:16:52 +01:00
|
|
|
Future.delayed(Duration(milliseconds: 0)).then((_) {
|
2019-02-08 03:48:25 +01:00
|
|
|
callback();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-02-07 13:28:48 +01:00
|
|
|
Future<bool> showConfirm(BuildContext context, String text) {
|
2019-02-07 07:35:19 +01:00
|
|
|
switch (SettingsProvider.of(context).theme) {
|
|
|
|
case ThemeMap.cupertino:
|
2019-02-06 06:06:11 +01:00
|
|
|
return showCupertinoDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (context) {
|
|
|
|
return CupertinoAlertDialog(
|
|
|
|
title: Text(text),
|
|
|
|
actions: <Widget>[
|
|
|
|
CupertinoDialogAction(
|
|
|
|
child: const Text('cancel'),
|
|
|
|
isDefaultAction: true,
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.pop(context, false);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
CupertinoDialogAction(
|
|
|
|
child: const Text('OK'),
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.pop(context, true);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
default:
|
|
|
|
return showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (BuildContext context) {
|
|
|
|
return AlertDialog(
|
|
|
|
content: Text(
|
|
|
|
text,
|
|
|
|
// style: dialogTextStyle
|
|
|
|
),
|
|
|
|
actions: <Widget>[
|
|
|
|
FlatButton(
|
|
|
|
child: const Text('CANCEL'),
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.pop(context, false);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
FlatButton(
|
|
|
|
child: const Text('OK'),
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.pop(context, true);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
],
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-10 06:17:25 +01:00
|
|
|
class DialogOption<T> {
|
|
|
|
final T value;
|
|
|
|
final Widget widget;
|
|
|
|
DialogOption({this.value, this.widget});
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<T> showOptions<T>(BuildContext context, List<DialogOption<T>> options) {
|
2019-02-05 13:57:05 +01:00
|
|
|
var builder = (BuildContext context) {
|
|
|
|
return CupertinoAlertDialog(
|
|
|
|
actions: options.map((option) {
|
|
|
|
return CupertinoDialogAction(
|
|
|
|
child: option.widget,
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.pop(context, option.value);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}).toList(),
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2019-02-07 07:35:19 +01:00
|
|
|
switch (SettingsProvider.of(context).theme) {
|
|
|
|
case ThemeMap.cupertino:
|
2019-02-05 13:57:05 +01:00
|
|
|
return showCupertinoDialog<T>(
|
|
|
|
context: context,
|
|
|
|
builder: builder,
|
|
|
|
);
|
|
|
|
default:
|
|
|
|
return showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (BuildContext context) {
|
|
|
|
return Dialog(
|
|
|
|
child: Column(
|
|
|
|
children: <Widget>[
|
|
|
|
PopupMenuItem(child: Text('a')),
|
|
|
|
PopupMenuItem(child: Text('b')),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-29 12:41:24 +01:00
|
|
|
TextSpan createLinkSpan(BuildContext context, String text, Function handle) {
|
|
|
|
return TextSpan(
|
|
|
|
text: text,
|
2019-02-02 17:28:51 +01:00
|
|
|
style: TextStyle(
|
2019-02-08 03:48:25 +01:00
|
|
|
color: Colors.black87,
|
2019-02-02 17:28:51 +01:00
|
|
|
fontWeight: FontWeight.w600,
|
2019-02-03 08:50:17 +01:00
|
|
|
// decoration: TextDecoration.underline,
|
2019-02-02 17:28:51 +01:00
|
|
|
),
|
2019-02-11 17:31:06 +01:00
|
|
|
recognizer: TapGestureRecognizer()
|
|
|
|
..onTap = () {
|
|
|
|
Navigator.of(context).push(
|
|
|
|
CupertinoPageRoute(
|
|
|
|
builder: (context) {
|
|
|
|
return handle();
|
|
|
|
},
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
2019-01-29 12:41:24 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
TextSpan createRepoLinkSpan(BuildContext context, String owner, String name) {
|
|
|
|
return createLinkSpan(context, '$owner/$name', () => RepoScreen(owner, name));
|
|
|
|
}
|
|
|
|
|
2019-01-28 14:32:01 +01:00
|
|
|
class Palette {
|
2019-02-06 12:14:11 +01:00
|
|
|
static const green = Color(0xff2cbe4e);
|
|
|
|
static const purple = Color(0xff6f42c1);
|
|
|
|
static const red = Color(0xffcb2431);
|
|
|
|
static const gray = Color(0xff959da5);
|
2019-01-28 14:32:01 +01:00
|
|
|
}
|
|
|
|
|
2019-02-09 07:20:21 +01:00
|
|
|
final pageSize = 30;
|
2019-01-28 14:32:01 +01:00
|
|
|
|
|
|
|
final graphqlChunk1 = '''
|
|
|
|
title
|
|
|
|
createdAt
|
|
|
|
body
|
|
|
|
author {
|
|
|
|
login
|
|
|
|
avatarUrl
|
|
|
|
}
|
2019-02-09 08:33:06 +01:00
|
|
|
closed
|
2019-02-10 11:50:40 +01:00
|
|
|
url
|
2019-01-28 14:32:01 +01:00
|
|
|
''';
|
|
|
|
|
|
|
|
var graghqlChunk = '''
|
|
|
|
__typename
|
|
|
|
|
|
|
|
... on IssueComment {
|
|
|
|
createdAt
|
|
|
|
body
|
|
|
|
author {
|
|
|
|
login
|
|
|
|
avatarUrl
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
... on Commit {
|
|
|
|
committedDate
|
|
|
|
oid
|
|
|
|
author {
|
|
|
|
user {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-10 06:17:25 +01:00
|
|
|
... on ReferencedEvent {
|
|
|
|
createdAt
|
|
|
|
isCrossRepository
|
|
|
|
actor {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
commit {
|
|
|
|
oid
|
|
|
|
url
|
|
|
|
}
|
|
|
|
commitRepository {
|
|
|
|
owner {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
2019-01-28 14:32:01 +01:00
|
|
|
|
2019-02-10 06:17:25 +01:00
|
|
|
... on RenamedTitleEvent {
|
|
|
|
createdAt
|
|
|
|
previousTitle
|
|
|
|
currentTitle
|
|
|
|
actor {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
... on ClosedEvent {
|
|
|
|
createdAt
|
|
|
|
actor {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
}
|
2019-01-28 14:32:01 +01:00
|
|
|
|
2019-02-10 06:17:25 +01:00
|
|
|
... on ReopenedEvent {
|
|
|
|
createdAt
|
|
|
|
actor {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
}
|
2019-01-28 14:32:01 +01:00
|
|
|
|
2019-02-10 06:17:25 +01:00
|
|
|
... on CrossReferencedEvent {
|
|
|
|
createdAt
|
|
|
|
actor {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
source {
|
|
|
|
__typename
|
|
|
|
... on Issue {
|
|
|
|
number
|
|
|
|
repository {
|
|
|
|
owner {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on PullRequest {
|
|
|
|
number
|
|
|
|
repository {
|
|
|
|
owner {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-28 14:32:01 +01:00
|
|
|
|
2019-01-29 06:34:52 +01:00
|
|
|
|
2019-02-10 06:17:25 +01:00
|
|
|
... on LabeledEvent {
|
|
|
|
createdAt
|
|
|
|
actor {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
label {
|
|
|
|
name
|
|
|
|
color
|
|
|
|
}
|
|
|
|
}
|
2019-01-29 06:34:52 +01:00
|
|
|
|
2019-02-10 06:17:25 +01:00
|
|
|
... on UnlabeledEvent {
|
|
|
|
createdAt
|
|
|
|
actor {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
label {
|
|
|
|
name
|
|
|
|
color
|
|
|
|
}
|
|
|
|
}
|
2019-01-29 06:34:52 +01:00
|
|
|
|
2019-02-10 06:17:25 +01:00
|
|
|
... on MilestonedEvent {
|
|
|
|
createdAt
|
|
|
|
actor {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
milestoneTitle
|
|
|
|
}
|
2019-01-29 06:34:52 +01:00
|
|
|
|
2019-02-10 06:17:25 +01:00
|
|
|
... on LockedEvent {
|
|
|
|
createdAt
|
|
|
|
actor {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
lockReason
|
|
|
|
}
|
|
|
|
... on UnlockedEvent {
|
|
|
|
createdAt
|
|
|
|
actor {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
}
|
|
|
|
... on AssignedEvent {
|
|
|
|
createdAt
|
|
|
|
actor {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
user {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
}
|
2019-01-28 14:32:01 +01:00
|
|
|
''';
|
|
|
|
|
2019-01-29 06:34:52 +01:00
|
|
|
var createWarning =
|
|
|
|
(String text) => Text(text, style: TextStyle(color: Colors.redAccent));
|
2019-01-28 14:32:01 +01:00
|
|
|
var warningSpan =
|
|
|
|
TextSpan(text: 'xxx', style: TextStyle(color: Colors.redAccent));
|
2019-02-09 06:36:15 +01:00
|
|
|
|
|
|
|
var repoChunk = '''
|
|
|
|
owner {
|
|
|
|
login
|
|
|
|
}
|
|
|
|
name
|
|
|
|
description
|
|
|
|
isPrivate
|
|
|
|
isFork
|
|
|
|
stargazers {
|
|
|
|
totalCount
|
|
|
|
}
|
|
|
|
forks {
|
|
|
|
totalCount
|
|
|
|
}
|
|
|
|
primaryLanguage {
|
|
|
|
color
|
|
|
|
name
|
|
|
|
}
|
|
|
|
''';
|