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

72 lines
2.2 KiB
Dart
Raw Normal View History

2020-01-29 06:23:17 +01:00
import 'package:flutter/material.dart';
2019-11-01 18:48:42 +01:00
import 'package:flutter/widgets.dart';
import 'package:git_touch/models/auth.dart';
2019-12-04 15:00:39 +01:00
import 'package:git_touch/models/gitlab.dart';
2019-11-01 18:48:42 +01:00
import 'package:git_touch/scaffolds/refresh_stateful.dart';
2020-01-29 06:23:17 +01:00
import 'package:git_touch/widgets/action_entry.dart';
2019-11-01 18:48:42 +01:00
import 'package:git_touch/widgets/repository_item.dart';
2020-01-29 06:45:22 +01:00
import 'package:git_touch/widgets/user_header.dart';
2019-11-01 18:48:42 +01:00
import 'package:provider/provider.dart';
2019-12-04 15:00:39 +01:00
import 'package:tuple/tuple.dart';
2019-12-30 13:55:37 +01:00
import 'package:git_touch/utils/utils.dart';
2020-01-29 06:32:40 +01:00
import 'package:timeago/timeago.dart' as timeago;
import '../generated/l10n.dart';
2019-12-30 13:55:37 +01:00
2020-02-07 15:26:37 +01:00
class GlUserScreen extends StatelessWidget {
2019-12-30 13:55:37 +01:00
final int id;
2020-02-07 15:26:37 +01:00
GlUserScreen(this.id);
2020-01-29 06:23:17 +01:00
bool get isViewer => id == null;
2019-11-01 18:48:42 +01:00
@override
Widget build(BuildContext context) {
2020-01-31 15:36:58 +01:00
return RefreshStatefulScaffold<Tuple2<GitlabUser, Iterable<GitlabProject>>>(
title: Text(isViewer ? S.of(context).me : S.of(context).user),
fetch: () async {
2020-10-04 14:37:23 +02:00
final auth = context.read<AuthModel>();
2020-01-29 06:23:17 +01:00
final _id = id ?? auth.activeAccount.gitlabId;
2020-01-30 11:57:39 +01:00
final res = await Future.wait([
auth.fetchGitlab('/users/$_id'),
auth.fetchGitlab('/users/$_id/projects'),
]);
return Tuple2(
GitlabUser.fromJson(res[0]),
2020-01-31 15:36:58 +01:00
[for (var v in res[1]) GitlabProject.fromJson(v)],
2020-01-30 11:57:39 +01:00
);
2019-11-01 18:48:42 +01:00
},
2020-01-29 06:23:17 +01:00
action: isViewer
? ActionEntry(
iconData: Icons.settings,
2020-01-31 09:54:01 +01:00
url: '/settings',
2020-01-29 06:23:17 +01:00
)
: null,
2019-11-02 13:54:23 +01:00
bodyBuilder: (data, _) {
2019-12-04 15:00:39 +01:00
final user = data.item1;
final projects = data.item2;
2019-11-01 18:48:42 +01:00
return Column(
children: <Widget>[
2020-01-29 06:45:22 +01:00
UserHeader(
2019-12-04 15:00:39 +01:00
login: user.username,
avatarUrl: user.avatarUrl,
name: user.name,
2020-01-29 06:45:22 +01:00
createdAt: user.createdAt,
bio: user.bio,
isViewer: isViewer,
2019-11-01 18:48:42 +01:00
),
2020-01-12 07:49:46 +01:00
CommonStyle.border,
2019-11-01 18:48:42 +01:00
Column(
2020-01-29 06:06:55 +01:00
children: <Widget>[
for (var v in projects)
2020-01-29 06:32:40 +01:00
RepositoryItem.gl(
2020-01-31 15:36:58 +01:00
payload: v,
2020-02-01 03:35:55 +01:00
note: 'Updated ${timeago.format(v.lastActivityAt)}',
2020-01-29 06:06:55 +01:00
)
],
2019-11-01 18:48:42 +01:00
)
],
);
},
);
}
}