2020-01-28 14:01:06 +01:00
|
|
|
import 'package:filesize/filesize.dart';
|
2019-12-11 16:09:39 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
import 'package:git_touch/models/auth.dart';
|
|
|
|
import 'package:git_touch/models/gitlab.dart';
|
|
|
|
import 'package:git_touch/scaffolds/refresh_stateful.dart';
|
|
|
|
import 'package:git_touch/utils/utils.dart';
|
|
|
|
import 'package:git_touch/widgets/app_bar_title.dart';
|
|
|
|
import 'package:git_touch/widgets/entry_item.dart';
|
2020-11-04 09:41:04 +01:00
|
|
|
import 'package:git_touch/widgets/markdown_view.dart';
|
2020-02-08 07:22:20 +01:00
|
|
|
import 'package:git_touch/widgets/language_bar.dart';
|
2020-01-29 11:23:51 +01:00
|
|
|
import 'package:git_touch/widgets/repo_header.dart';
|
2019-12-11 16:09:39 +01:00
|
|
|
import 'package:git_touch/widgets/table_view.dart';
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
import 'package:git_touch/models/theme.dart';
|
|
|
|
import 'package:git_touch/widgets/action_button.dart';
|
2020-01-28 13:50:38 +01:00
|
|
|
import 'package:tuple/tuple.dart';
|
2019-12-11 16:09:39 +01:00
|
|
|
|
2020-02-07 15:26:37 +01:00
|
|
|
class GlProjectScreen extends StatelessWidget {
|
2019-12-11 16:09:39 +01:00
|
|
|
final int id;
|
2020-02-07 15:26:37 +01:00
|
|
|
GlProjectScreen(this.id);
|
2019-12-11 16:09:39 +01:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-01-28 13:50:38 +01:00
|
|
|
return RefreshStatefulScaffold<
|
2020-11-04 09:16:03 +01:00
|
|
|
Tuple4<GitlabProject, Future<Map<String, double>>, Future<int>,
|
2020-11-06 11:47:56 +01:00
|
|
|
MarkdownViewData>>(
|
2019-12-11 16:09:39 +01:00
|
|
|
title: AppBarTitle('Project'),
|
2020-10-06 14:52:40 +02:00
|
|
|
fetch: () async {
|
2020-10-04 14:37:23 +02:00
|
|
|
final auth = context.read<AuthModel>();
|
2020-11-04 09:16:03 +01:00
|
|
|
final p =
|
|
|
|
await auth.fetchGitlab('/projects/$id?statistics=1').then((res) {
|
|
|
|
return GitlabProject.fromJson(res);
|
|
|
|
});
|
|
|
|
|
|
|
|
final langFuture =
|
|
|
|
auth.fetchGitlab('/projects/$id/languages').then((v) {
|
|
|
|
return Map<String, double>.from(v);
|
|
|
|
});
|
|
|
|
// auth.fetchGitlab('/projects/$id/badges') // badges
|
|
|
|
final memberCountFuture = auth
|
|
|
|
.fetchGitlabWithPage('/projects/$id/members?per_page=1')
|
|
|
|
.then((v) => v.total);
|
|
|
|
|
2020-11-06 11:47:56 +01:00
|
|
|
MarkdownViewData readmeData;
|
|
|
|
if (p.readmeUrl != null) {
|
|
|
|
final md = () => auth.fetchWithGitlabToken(
|
|
|
|
p.readmeUrl.replaceFirst(r'/blob/', '/raw/'));
|
|
|
|
readmeData = MarkdownViewData(
|
|
|
|
context,
|
|
|
|
md: md,
|
|
|
|
html: () => md().then((md) async {
|
|
|
|
// we should get the markdown content, then render it
|
|
|
|
// https://gitlab.com/gitlab-org/gitlab/-/issues/16335
|
|
|
|
final res = await auth.fetchGitlab('/markdown',
|
|
|
|
isPost: true,
|
|
|
|
body: {
|
|
|
|
'text': md,
|
|
|
|
'gfm': true,
|
|
|
|
'project': '${p.namespace.name}/${p.name}'
|
|
|
|
});
|
|
|
|
return (res['html'] as String).normalizedHtml;
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return Tuple4(p, langFuture, memberCountFuture, readmeData);
|
2019-12-11 16:09:39 +01:00
|
|
|
},
|
2020-01-28 13:50:38 +01:00
|
|
|
actionBuilder: (t, setState) {
|
2019-12-11 16:09:39 +01:00
|
|
|
return ActionButton(
|
|
|
|
title: 'Project Actions',
|
|
|
|
items: [
|
2020-01-28 13:50:38 +01:00
|
|
|
...ActionItem.getUrlActions(t.item1.webUrl),
|
2019-12-11 16:09:39 +01:00
|
|
|
],
|
|
|
|
);
|
|
|
|
},
|
2020-01-28 13:50:38 +01:00
|
|
|
bodyBuilder: (t, _) {
|
|
|
|
final p = t.item1;
|
2020-11-04 09:16:03 +01:00
|
|
|
final langFuture = t.item2;
|
|
|
|
final memberCountFuture = t.item3;
|
2020-11-06 11:47:56 +01:00
|
|
|
final readmeData = t.item4;
|
2020-11-04 09:16:03 +01:00
|
|
|
|
2019-12-11 16:09:39 +01:00
|
|
|
final theme = Provider.of<ThemeModel>(context);
|
2020-02-01 05:35:56 +01:00
|
|
|
final auth = Provider.of<AuthModel>(context);
|
|
|
|
final prefix =
|
|
|
|
'${auth.activeAccount.domain}/${p.namespace.path}/${p.name}'
|
|
|
|
.urlencode;
|
2019-12-11 16:09:39 +01:00
|
|
|
return Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
|
|
children: <Widget>[
|
2020-01-29 11:23:51 +01:00
|
|
|
RepoHeader(
|
|
|
|
avatarUrl: p.avatarUrl,
|
2020-02-01 03:46:11 +01:00
|
|
|
avatarLink: p.namespace.kind == 'group'
|
|
|
|
? '/gitlab/group/${p.namespace.id}'
|
|
|
|
: '/gitlab/user/${p.namespace.id}',
|
2020-01-29 11:23:51 +01:00
|
|
|
owner: p.namespace.name,
|
|
|
|
name: p.name,
|
|
|
|
description: p.description,
|
2020-10-08 09:12:06 +02:00
|
|
|
// trailings: <Widget>[
|
|
|
|
// if (badges.isNotEmpty)
|
|
|
|
// Wrap(spacing: 4, runSpacing: 4, children: [
|
|
|
|
// for (var label in badges)
|
|
|
|
// SvgPicture.network(label.renderedImageUrl, height: 20),
|
|
|
|
// ])
|
|
|
|
// ],
|
2020-01-11 10:25:01 +01:00
|
|
|
),
|
2019-12-11 16:09:39 +01:00
|
|
|
CommonStyle.border,
|
|
|
|
Row(
|
|
|
|
children: <Widget>[
|
2020-11-04 09:16:03 +01:00
|
|
|
FutureBuilder<int>(
|
|
|
|
future: memberCountFuture,
|
|
|
|
builder: (context, snapshot) {
|
|
|
|
return EntryItem(
|
|
|
|
count: snapshot.data,
|
|
|
|
text: 'Members',
|
|
|
|
url: '/gitlab/projects/$id/members',
|
|
|
|
);
|
|
|
|
},
|
2020-02-01 04:40:41 +01:00
|
|
|
),
|
2019-12-11 16:09:39 +01:00
|
|
|
EntryItem(
|
2020-01-28 13:50:38 +01:00
|
|
|
count: p.starCount,
|
2019-12-11 16:09:39 +01:00
|
|
|
text: 'Stars',
|
2020-04-06 08:48:50 +02:00
|
|
|
url: '/gitlab/projects/$id/starrers',
|
2019-12-11 16:09:39 +01:00
|
|
|
),
|
|
|
|
EntryItem(
|
2020-01-28 13:50:38 +01:00
|
|
|
count: p.forksCount,
|
2019-12-11 16:09:39 +01:00
|
|
|
text: 'Forks', // TODO:
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2020-11-04 09:16:03 +01:00
|
|
|
CommonStyle.border,
|
|
|
|
FutureBuilder<Map<String, double>>(
|
|
|
|
future: langFuture,
|
|
|
|
builder: (context, snapshot) {
|
|
|
|
if (snapshot.data == null) {
|
|
|
|
return LanguageBar([
|
|
|
|
LanguageBarItem(name: '', ratio: 1),
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
return LanguageBar([
|
|
|
|
for (var e in snapshot.data?.entries ?? [])
|
|
|
|
LanguageBarItem(name: e.key, ratio: e.value / 100)
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
2020-01-28 13:50:38 +01:00
|
|
|
CommonStyle.border,
|
2019-12-11 16:09:39 +01:00
|
|
|
TableView(
|
|
|
|
hasIcon: true,
|
|
|
|
items: [
|
2020-04-06 07:30:44 +02:00
|
|
|
TableViewItem(
|
|
|
|
leftIconData: Octicons.code,
|
2020-11-04 09:16:03 +01:00
|
|
|
text: FutureBuilder<Map<String, double>>(
|
|
|
|
future: langFuture,
|
|
|
|
builder: (context, snapshot) {
|
|
|
|
if (snapshot.data == null) {
|
|
|
|
return Text('');
|
|
|
|
} else {
|
|
|
|
final langs = snapshot.data.keys;
|
|
|
|
return Text(langs.isEmpty ? 'Code' : langs.first);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
2020-04-06 07:30:44 +02:00
|
|
|
rightWidget: p.statistics == null
|
|
|
|
? null
|
|
|
|
: Text(filesize(p.statistics.repositorySize)),
|
|
|
|
url: '/gitlab/projects/$id/tree/${p.defaultBranch}',
|
|
|
|
),
|
2020-01-28 13:50:38 +01:00
|
|
|
if (p.issuesEnabled)
|
2019-12-11 16:09:39 +01:00
|
|
|
TableViewItem(
|
|
|
|
leftIconData: Octicons.issue_opened,
|
|
|
|
text: Text('Issues'),
|
2020-01-28 13:50:38 +01:00
|
|
|
rightWidget: Text(numberFormat.format(p.openIssuesCount)),
|
2020-02-01 05:35:56 +01:00
|
|
|
url: '/gitlab/projects/$id/issues?prefix=$prefix',
|
2019-12-11 16:09:39 +01:00
|
|
|
),
|
2020-01-28 13:50:38 +01:00
|
|
|
if (p.mergeRequestsEnabled)
|
2019-12-11 16:09:39 +01:00
|
|
|
TableViewItem(
|
|
|
|
leftIconData: Octicons.git_pull_request,
|
|
|
|
text: Text('Merge requests'),
|
2020-02-01 05:35:56 +01:00
|
|
|
url: '/gitlab/projects/$id/merge_requests?prefix=$prefix',
|
2019-12-11 16:09:39 +01:00
|
|
|
),
|
2020-04-06 07:30:44 +02:00
|
|
|
TableViewItem(
|
|
|
|
leftIconData: Octicons.history,
|
|
|
|
text: Text('Commits'),
|
|
|
|
rightWidget: p.statistics == null
|
|
|
|
? null
|
|
|
|
: Text(p.statistics.commitCount.toString()),
|
|
|
|
url: '/gitlab/projects/$id/commits?prefix=$prefix',
|
|
|
|
),
|
2019-12-11 16:09:39 +01:00
|
|
|
],
|
|
|
|
),
|
|
|
|
CommonStyle.verticalGap,
|
2020-11-06 11:47:56 +01:00
|
|
|
MarkdownView(readmeData),
|
2019-12-11 16:09:39 +01:00
|
|
|
],
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|