git-touch-android-ios-app/lib/screens/gh_commits.dart

76 lines
2.6 KiB
Dart
Raw Normal View History

2021-05-16 09:16:35 +02:00
import 'package:ferry/ferry.dart';
2019-08-30 10:26:56 +02:00
import 'package:flutter/material.dart';
2021-01-17 15:08:32 +01:00
import 'package:git_touch/graphql/github.data.gql.dart';
import 'package:git_touch/graphql/github.req.gql.dart';
2021-05-16 09:16:35 +02:00
import 'package:git_touch/graphql/github.var.gql.dart';
2021-01-17 15:08:32 +01:00
import 'package:git_touch/graphql/schema.schema.gql.dart';
2019-09-27 14:52:38 +02:00
import 'package:git_touch/models/auth.dart';
2019-09-25 11:06:36 +02:00
import 'package:git_touch/scaffolds/list_stateful.dart';
2019-09-03 08:59:08 +02:00
import 'package:git_touch/utils/utils.dart';
2019-09-11 13:59:47 +02:00
import 'package:git_touch/widgets/app_bar_title.dart';
2020-01-28 15:10:44 +01:00
import 'package:git_touch/widgets/commit_item.dart';
2019-09-08 14:07:35 +02:00
import 'package:provider/provider.dart';
import 'package:flutter_gen/gen_l10n/S.dart';
2019-08-30 10:26:56 +02:00
2021-01-17 15:08:32 +01:00
class GhCommits extends StatelessWidget {
2019-08-30 10:26:56 +02:00
final String owner;
final String name;
2021-05-16 09:16:35 +02:00
final String? branch;
2021-01-17 15:08:32 +01:00
GhCommits(this.owner, this.name, {this.branch});
2019-08-30 10:26:56 +02:00
2021-05-16 09:16:35 +02:00
Widget _buildStatus(GStatusState? state) {
2020-01-03 07:47:07 +01:00
const size = 18.0;
2019-09-03 08:59:08 +02:00
switch (state) {
2021-01-17 15:08:32 +01:00
case GStatusState.SUCCESS:
2019-11-08 13:23:09 +01:00
return Icon(Octicons.check, color: GithubPalette.open, size: size);
2021-01-17 15:08:32 +01:00
case GStatusState.FAILURE:
2019-11-08 13:23:09 +01:00
return Icon(Octicons.x, color: GithubPalette.closed, size: size);
2019-09-03 08:59:08 +02:00
default:
return Container();
}
}
2019-08-30 10:26:56 +02:00
@override
Widget build(BuildContext context) {
2021-05-16 09:16:35 +02:00
return ListStatefulScaffold<GCommitsRefCommit_history_nodes, String?>(
title: AppBarTitle(AppLocalizations.of(context)!.commits),
fetch: (cursor) async {
2021-01-17 15:08:32 +01:00
final req = GCommitsReq((b) {
b.vars.owner = owner;
b.vars.name = name;
b.vars.hasRef = branch != null;
b.vars.ref = branch ?? '';
b.vars.after = cursor;
});
2021-05-16 09:16:35 +02:00
final OperationResponse<GCommitsData, GCommitsVars?> res =
await context.read<AuthModel>().gqlClient!.request(req).first;
final ref = res.data!.repository!.defaultBranchRef ??
res.data!.repository!.ref!;
2021-01-17 15:08:32 +01:00
final history = (ref.target as GCommitsRefCommit).history;
2020-10-04 16:10:05 +02:00
return ListPayload(
cursor: history.pageInfo.endCursor,
hasMore: history.pageInfo.hasNextPage,
items: history.nodes,
);
},
2021-01-17 15:08:32 +01:00
itemBuilder: (p) {
final login = p.author?.user?.login;
2020-01-28 15:10:44 +01:00
return CommitItem(
2021-01-17 15:08:32 +01:00
url: p.url,
avatarUrl: p.author?.avatarUrl,
avatarLink: login == null ? null : '/github/$login',
2021-01-17 15:08:32 +01:00
message: p.messageHeadline,
2021-05-16 09:16:35 +02:00
author: login ?? p.author!.name,
2021-01-17 15:08:32 +01:00
createdAt: p.committedDate,
widgets: p.status == null
2020-01-28 15:10:44 +01:00
? null
: [
SizedBox(width: 4),
2021-05-16 09:16:35 +02:00
_buildStatus(p.status!.state),
2020-01-28 15:10:44 +01:00
],
2019-08-30 10:26:56 +02:00
);
},
);
}
}