2022-09-17 14:35:45 +02:00
|
|
|
import 'package:flutter/widgets.dart';
|
|
|
|
import 'package:flutter_gen/gen_l10n/S.dart';
|
2022-10-07 18:55:47 +02:00
|
|
|
import 'package:flutter_vector_icons/flutter_vector_icons.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';
|
2020-01-28 15:10:44 +01:00
|
|
|
import 'package:git_touch/widgets/commit_item.dart';
|
2022-10-01 18:29:54 +02:00
|
|
|
import 'package:gql_github/commits.data.gql.dart';
|
|
|
|
import 'package:gql_github/commits.req.gql.dart';
|
|
|
|
import 'package:gql_github/schema.schema.gql.dart';
|
2019-09-08 14:07:35 +02:00
|
|
|
import 'package:provider/provider.dart';
|
2019-08-30 10:26:56 +02:00
|
|
|
|
2021-01-17 15:08:32 +01:00
|
|
|
class GhCommits extends StatelessWidget {
|
2022-09-21 18:28:21 +02:00
|
|
|
const GhCommits(this.owner, this.name, {this.branch});
|
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;
|
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:
|
2022-09-17 14:35:45 +02:00
|
|
|
return const Icon(Octicons.check,
|
|
|
|
color: GithubPalette.open, size: size);
|
2021-01-17 15:08:32 +01:00
|
|
|
case GStatusState.FAILURE:
|
2022-09-06 18:28:12 +02:00
|
|
|
return const 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?>(
|
2022-10-07 19:06:03 +02:00
|
|
|
title: Text(AppLocalizations.of(context)!.commits),
|
2020-10-06 14:52:40 +02:00
|
|
|
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;
|
|
|
|
});
|
2022-09-30 21:49:56 +02:00
|
|
|
final res =
|
2022-10-01 19:26:34 +02:00
|
|
|
await context.read<AuthModel>().ghGqlClient.request(req).first;
|
2021-05-16 09:16:35 +02:00
|
|
|
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,
|
2021-06-13 19:23:16 +02:00
|
|
|
items: history.nodes ?? [],
|
2020-10-04 16:10:05 +02:00
|
|
|
);
|
|
|
|
},
|
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,
|
2020-05-12 17:31:30 +02:00
|
|
|
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
|
|
|
|
: [
|
2022-09-06 18:28:12 +02:00
|
|
|
const 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
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|