2019-02-04 14:38:29 +01:00
|
|
|
import 'dart:convert';
|
2019-01-27 17:37:44 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2019-02-04 14:38:29 +01:00
|
|
|
import 'package:flutter/cupertino.dart';
|
2019-09-08 14:07:35 +02:00
|
|
|
import 'package:git_touch/models/settings.dart';
|
2019-09-09 16:50:22 +02:00
|
|
|
import 'package:git_touch/screens/users.dart';
|
2019-09-08 16:17:29 +02:00
|
|
|
import 'package:git_touch/utils/utils.dart';
|
|
|
|
import 'package:git_touch/widgets/table_view.dart';
|
|
|
|
import 'package:primer/primer.dart';
|
2019-09-08 14:07:35 +02:00
|
|
|
import 'package:provider/provider.dart';
|
2019-02-04 14:38:29 +01:00
|
|
|
import 'package:flutter_markdown/flutter_markdown.dart';
|
2019-09-02 15:52:32 +02:00
|
|
|
import 'package:git_touch/models/theme.dart';
|
2019-08-30 10:26:56 +02:00
|
|
|
import 'package:git_touch/screens/commits.dart';
|
2019-08-30 08:08:09 +02:00
|
|
|
import 'package:git_touch/screens/object.dart';
|
2019-02-10 11:50:40 +01:00
|
|
|
import 'package:share/share.dart';
|
|
|
|
import 'package:url_launcher/url_launcher.dart';
|
2019-02-08 07:06:48 +01:00
|
|
|
import '../scaffolds/refresh.dart';
|
2019-02-04 14:38:29 +01:00
|
|
|
import '../widgets/repo_item.dart';
|
|
|
|
import '../widgets/entry_item.dart';
|
|
|
|
import '../screens/issues.dart';
|
2019-03-10 14:53:35 +01:00
|
|
|
import '../screens/user.dart';
|
2019-03-10 16:34:34 +01:00
|
|
|
import '../screens/organization.dart';
|
2019-02-20 09:31:22 +01:00
|
|
|
import '../widgets/action.dart';
|
2019-02-04 14:38:29 +01:00
|
|
|
|
2019-09-08 14:33:04 +02:00
|
|
|
class RepoScreen extends StatelessWidget {
|
2019-02-07 07:35:19 +01:00
|
|
|
final String owner;
|
|
|
|
final String name;
|
|
|
|
|
2019-09-08 16:17:29 +02:00
|
|
|
static const _languageBarPadding = 10.0;
|
|
|
|
|
2019-02-07 07:35:19 +01:00
|
|
|
RepoScreen(this.owner, this.name);
|
2019-09-08 14:33:04 +02:00
|
|
|
RepoScreen.fromFullName(String fullName)
|
|
|
|
: owner = fullName.split('/')[0],
|
|
|
|
name = fullName.split('/')[1];
|
2019-02-10 11:50:40 +01:00
|
|
|
|
2019-02-07 07:35:19 +01:00
|
|
|
Future queryRepo(BuildContext context) async {
|
2019-09-08 14:07:35 +02:00
|
|
|
var data = await Provider.of<SettingsModel>(context).query('''
|
2019-02-04 14:38:29 +01:00
|
|
|
{
|
|
|
|
repository(owner: "$owner", name: "$name") {
|
2019-02-10 11:50:40 +01:00
|
|
|
id
|
2019-02-04 14:38:29 +01:00
|
|
|
owner {
|
2019-03-10 14:53:35 +01:00
|
|
|
__typename
|
2019-02-04 14:38:29 +01:00
|
|
|
login
|
2019-03-10 16:34:34 +01:00
|
|
|
url
|
2019-09-08 15:20:12 +02:00
|
|
|
avatarUrl
|
2019-02-04 14:38:29 +01:00
|
|
|
}
|
|
|
|
name
|
|
|
|
isPrivate
|
|
|
|
isFork
|
|
|
|
description
|
2019-09-09 16:50:22 +02:00
|
|
|
watchers {
|
|
|
|
totalCount
|
|
|
|
}
|
2019-02-04 14:38:29 +01:00
|
|
|
stargazers {
|
|
|
|
totalCount
|
|
|
|
}
|
|
|
|
forks {
|
|
|
|
totalCount
|
|
|
|
}
|
|
|
|
primaryLanguage {
|
|
|
|
color
|
|
|
|
name
|
2019-09-08 16:17:29 +02:00
|
|
|
}
|
2019-02-04 14:38:29 +01:00
|
|
|
issues(states: OPEN) {
|
|
|
|
totalCount
|
|
|
|
}
|
|
|
|
pullRequests(states: OPEN) {
|
|
|
|
totalCount
|
|
|
|
}
|
2019-09-08 16:17:29 +02:00
|
|
|
languages(first: 10, orderBy: {field: SIZE, direction: DESC}) {
|
|
|
|
totalSize
|
|
|
|
edges {
|
|
|
|
size
|
|
|
|
node {
|
|
|
|
name
|
|
|
|
color
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-10 07:26:51 +01:00
|
|
|
url
|
|
|
|
defaultBranchRef {
|
|
|
|
name
|
2019-08-30 10:26:56 +02:00
|
|
|
target {
|
|
|
|
... on Commit {
|
|
|
|
history {
|
|
|
|
totalCount
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-10 07:26:51 +01:00
|
|
|
}
|
2019-02-10 11:50:40 +01:00
|
|
|
viewerHasStarred
|
|
|
|
viewerSubscription
|
2019-02-04 14:38:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
''');
|
2019-02-07 07:35:19 +01:00
|
|
|
return data['repository'];
|
|
|
|
}
|
2019-02-06 15:28:04 +01:00
|
|
|
|
2019-02-07 07:35:19 +01:00
|
|
|
Future fetchReadme(BuildContext context) async {
|
2019-09-08 14:07:35 +02:00
|
|
|
var data = await Provider.of<SettingsModel>(context)
|
2019-02-07 07:35:19 +01:00
|
|
|
.getWithCredentials('/repos/$owner/$name/readme');
|
2019-02-14 05:42:25 +01:00
|
|
|
|
|
|
|
if (data['content'] == null) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2019-02-07 07:35:19 +01:00
|
|
|
var bits = base64.decode(data['content'].replaceAll('\n', ''));
|
|
|
|
var str = utf8.decode(bits);
|
|
|
|
return str;
|
2019-02-06 15:28:04 +01:00
|
|
|
}
|
|
|
|
|
2019-01-25 13:35:20 +01:00
|
|
|
@override
|
2019-01-27 17:37:44 +01:00
|
|
|
Widget build(BuildContext context) {
|
2019-02-04 14:38:29 +01:00
|
|
|
return RefreshScaffold(
|
2019-09-09 16:50:22 +02:00
|
|
|
title: Text('Repository'),
|
2019-02-20 09:31:22 +01:00
|
|
|
trailingBuilder: (data) {
|
|
|
|
var payload = data[0];
|
|
|
|
|
|
|
|
return ActionButton(title: 'Repository Actions', actions: [
|
2019-06-20 16:59:13 +02:00
|
|
|
MyAction(
|
2019-03-10 16:34:34 +01:00
|
|
|
text: '@$owner',
|
2019-03-10 14:53:35 +01:00
|
|
|
onPress: () {
|
|
|
|
WidgetBuilder builder;
|
|
|
|
|
|
|
|
switch (payload['owner']['__typename']) {
|
|
|
|
case 'Organization':
|
2019-03-10 16:34:34 +01:00
|
|
|
// builder = (_) => OrganizationScreen(owner);
|
|
|
|
// break;
|
|
|
|
|
|
|
|
// Seems organization permission is a little complicated
|
|
|
|
// So we just launch browser currently
|
|
|
|
launch(payload['owner']['url']);
|
|
|
|
return;
|
2019-03-10 14:53:35 +01:00
|
|
|
case 'User':
|
|
|
|
builder = (_) => UserScreen(owner);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-09-02 15:52:32 +02:00
|
|
|
Provider.of<ThemeModel>(context)
|
2019-03-10 14:53:35 +01:00
|
|
|
.pushRoute(context: context, builder: builder);
|
|
|
|
},
|
|
|
|
),
|
2019-06-20 16:59:13 +02:00
|
|
|
MyAction(
|
2019-02-20 09:31:22 +01:00
|
|
|
text: payload['viewerHasStarred'] ? 'Unstar' : 'Star',
|
|
|
|
onPress: () async {
|
|
|
|
if (payload['viewerHasStarred']) {
|
2019-09-08 14:07:35 +02:00
|
|
|
await Provider.of<SettingsModel>(context)
|
2019-02-20 09:31:22 +01:00
|
|
|
.deleteWithCredentials('/user/starred/$owner/$name');
|
|
|
|
payload['viewerHasStarred'] = false;
|
|
|
|
} else {
|
2019-09-08 14:07:35 +02:00
|
|
|
Provider.of<SettingsModel>(context)
|
2019-02-20 09:31:22 +01:00
|
|
|
.putWithCredentials('/user/starred/$owner/$name');
|
|
|
|
payload['viewerHasStarred'] = true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
|
|
|
// TODO: watch
|
2019-06-20 16:59:13 +02:00
|
|
|
MyAction(
|
2019-02-20 09:31:22 +01:00
|
|
|
text: 'Share',
|
|
|
|
onPress: () {
|
|
|
|
Share.share(payload['url']);
|
|
|
|
},
|
|
|
|
),
|
2019-06-20 16:59:13 +02:00
|
|
|
MyAction(
|
2019-02-20 09:31:22 +01:00
|
|
|
text: 'Open in Browser',
|
|
|
|
onPress: () {
|
|
|
|
launch(payload['url']);
|
|
|
|
},
|
2019-02-10 11:50:40 +01:00
|
|
|
),
|
2019-02-20 09:31:22 +01:00
|
|
|
]);
|
2019-02-10 11:50:40 +01:00
|
|
|
},
|
2019-02-08 13:52:10 +01:00
|
|
|
onRefresh: () => Future.wait([
|
2019-06-20 16:59:13 +02:00
|
|
|
queryRepo(context),
|
|
|
|
fetchReadme(context),
|
|
|
|
]),
|
2019-02-08 13:52:10 +01:00
|
|
|
bodyBuilder: (data) {
|
|
|
|
var payload = data[0];
|
|
|
|
var readme = data[1];
|
|
|
|
|
2019-09-08 16:17:29 +02:00
|
|
|
final langWidth =
|
|
|
|
MediaQuery.of(context).size.width - _languageBarPadding * 2;
|
|
|
|
|
2019-02-04 14:38:29 +01:00
|
|
|
return Column(
|
2019-09-08 16:17:29 +02:00
|
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
2019-02-04 14:38:29 +01:00
|
|
|
children: <Widget>[
|
2019-09-09 16:50:22 +02:00
|
|
|
RepoItem(payload, inRepoScreen: true),
|
2019-09-08 16:17:29 +02:00
|
|
|
BorderView(),
|
|
|
|
Row(
|
|
|
|
children: <Widget>[
|
|
|
|
EntryItem(
|
2019-09-09 16:50:22 +02:00
|
|
|
count: payload['watchers']['totalCount'],
|
|
|
|
text: 'Watchers',
|
2019-09-08 16:17:29 +02:00
|
|
|
screenBuilder: (context) =>
|
2019-09-09 16:50:22 +02:00
|
|
|
UsersScreen(login: 'pd4d10'), // FIXME:
|
2019-09-08 16:17:29 +02:00
|
|
|
),
|
|
|
|
EntryItem(
|
2019-09-09 16:50:22 +02:00
|
|
|
count: payload['stargazers']['totalCount'],
|
|
|
|
text: 'Stars',
|
|
|
|
screenBuilder: (context) => UsersScreen(login: 'pd4d10'),
|
2019-09-08 16:17:29 +02:00
|
|
|
),
|
|
|
|
EntryItem(
|
2019-09-09 16:50:22 +02:00
|
|
|
count: payload['forks']['totalCount'],
|
|
|
|
text: 'Forks',
|
|
|
|
screenBuilder: (context) => UsersScreen(login: 'pd4d10'),
|
2019-09-08 16:17:29 +02:00
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
BorderView(height: 10),
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.all(_languageBarPadding),
|
|
|
|
child: ClipRRect(
|
|
|
|
borderRadius: BorderRadius.circular(4),
|
|
|
|
child: Container(
|
|
|
|
height: 10,
|
|
|
|
child: Row(
|
|
|
|
children: (payload['languages']['edges'] as List)
|
|
|
|
.map((lang) => Container(
|
|
|
|
color: convertColor(lang['node']['color']),
|
|
|
|
width: langWidth *
|
|
|
|
lang['size'] /
|
|
|
|
payload['languages']['totalSize']))
|
|
|
|
.toList()),
|
2019-02-04 14:38:29 +01:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2019-09-08 16:17:29 +02:00
|
|
|
TableView(items: [
|
|
|
|
TableViewItem(
|
|
|
|
leftWidget: Icon(Octicons.code,
|
|
|
|
size: 20,
|
|
|
|
color: convertColor(payload['primaryLanguage'] == null
|
|
|
|
? null
|
|
|
|
: payload['primaryLanguage']['color'])),
|
|
|
|
text: Text(payload['primaryLanguage'] == null
|
|
|
|
? 'Unknown'
|
|
|
|
: payload['primaryLanguage']['name']),
|
|
|
|
rightWidget: Icon(
|
|
|
|
CupertinoIcons.right_chevron,
|
|
|
|
size: 18,
|
|
|
|
color: PrimerColors.gray300,
|
|
|
|
),
|
|
|
|
screenBuilder: (_) => ObjectScreen(owner: owner, name: name),
|
|
|
|
)
|
|
|
|
]),
|
|
|
|
BorderView(height: 10),
|
2019-02-04 14:38:29 +01:00
|
|
|
Container(
|
|
|
|
padding: EdgeInsets.all(16),
|
|
|
|
child: MarkdownBody(data: readme),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
},
|
2019-01-25 13:35:20 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|