117 lines
4.0 KiB
Dart
117 lines
4.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:git_touch/graphql/gh.dart';
|
|
import 'package:git_touch/models/auth.dart';
|
|
import 'package:git_touch/models/theme.dart';
|
|
import 'package:git_touch/scaffolds/list_stateful.dart';
|
|
import 'package:git_touch/utils/utils.dart';
|
|
import 'package:git_touch/widgets/app_bar_title.dart';
|
|
import 'package:git_touch/widgets/link.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:timeago/timeago.dart' as timeago;
|
|
import 'package:git_touch/widgets/avatar.dart';
|
|
|
|
final commitsRouter = RouterScreen(
|
|
'/:owner/:name/commits',
|
|
(context, params) =>
|
|
CommitsScreen(params['owner'].first, params['name'].first));
|
|
|
|
class CommitsScreen extends StatelessWidget {
|
|
final String owner;
|
|
final String name;
|
|
final String branch;
|
|
|
|
CommitsScreen(this.owner, this.name, {this.branch});
|
|
|
|
Future<ListPayload<GhCommitsCommit, String>> _query(BuildContext context,
|
|
[String cursor]) async {
|
|
final res = await Provider.of<AuthModel>(context).gqlClient.execute(
|
|
GhCommitsQuery(
|
|
variables: GhCommitsArguments(
|
|
owner: owner,
|
|
name: name,
|
|
hasRef: branch != null,
|
|
ref: branch ?? '',
|
|
after: cursor)));
|
|
final ref = res.data.repository.defaultBranchRef ?? res.data.repository.ref;
|
|
final history = (ref.target as GhCommitsCommit).history;
|
|
return ListPayload(
|
|
cursor: history.pageInfo.endCursor,
|
|
hasMore: history.pageInfo.hasNextPage,
|
|
items: history.nodes,
|
|
);
|
|
}
|
|
|
|
Widget _buildStatus(GhCommitsStatusState state) {
|
|
const size = 18.0;
|
|
switch (state) {
|
|
case GhCommitsStatusState.SUCCESS:
|
|
return Icon(Octicons.check, color: GithubPalette.open, size: size);
|
|
case GhCommitsStatusState.FAILURE:
|
|
return Icon(Octicons.x, color: GithubPalette.closed, size: size);
|
|
default:
|
|
return Container();
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Provider.of<ThemeModel>(context);
|
|
|
|
return ListStatefulScaffold<GhCommitsCommit, String>(
|
|
title: AppBarTitle('Commits'),
|
|
onRefresh: () => _query(context),
|
|
onLoadMore: (cursor) => _query(context, cursor),
|
|
itemBuilder: (payload) {
|
|
return Link(
|
|
url: payload.url,
|
|
child: Container(
|
|
padding: CommonStyle.padding,
|
|
child: Row(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: <Widget>[
|
|
Avatar(url: payload.author?.avatarUrl),
|
|
SizedBox(width: 10),
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: <Widget>[
|
|
Text(
|
|
payload.messageHeadline,
|
|
style: TextStyle(
|
|
fontSize: 17,
|
|
color: theme.palette.text,
|
|
),
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
SizedBox(height: 4),
|
|
Wrap(
|
|
children: <Widget>[
|
|
Text(
|
|
payload.author?.user?.login ??
|
|
payload.author.name,
|
|
style: TextStyle(fontSize: 15)),
|
|
Text(
|
|
' committed ${timeago.format(payload.committedDate)}',
|
|
style: TextStyle(
|
|
color: theme.palette.secondaryText,
|
|
fontSize: 15,
|
|
),
|
|
),
|
|
if (payload.status != null) ...[
|
|
SizedBox(width: 4),
|
|
_buildStatus(payload.status.state),
|
|
],
|
|
],
|
|
)
|
|
],
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
);
|
|
},
|
|
);
|
|
}
|
|
}
|