git-touch-android-ios-app/lib/widgets/user_item.dart

86 lines
2.2 KiB
Dart
Raw Normal View History

2019-09-14 11:19:33 +02:00
import 'package:flutter/material.dart';
2019-11-08 11:29:08 +01:00
import 'package:git_touch/models/theme.dart';
2019-10-02 09:39:47 +02:00
import 'package:git_touch/utils/utils.dart';
2019-09-14 11:19:33 +02:00
import 'package:git_touch/widgets/avatar.dart';
2019-09-14 20:05:34 +02:00
import 'package:git_touch/widgets/link.dart';
2019-11-08 11:29:08 +01:00
import 'package:provider/provider.dart';
2019-09-14 11:19:33 +02:00
2019-09-21 19:23:38 +02:00
const userGqlChunk = '''
2019-09-27 15:02:55 +02:00
login
2019-09-21 19:23:38 +02:00
name
avatarUrl
bio
''';
2019-09-14 11:19:33 +02:00
class UserItem extends StatelessWidget {
final String login;
final String name;
final String avatarUrl;
final Widget bio;
2019-09-14 20:05:34 +02:00
final bool inUserScreen;
2019-09-14 11:19:33 +02:00
2019-09-27 15:02:55 +02:00
UserItem({
this.login,
2019-09-25 14:51:23 +02:00
this.name,
this.avatarUrl,
this.bio,
this.inUserScreen = false,
});
2019-09-14 11:19:33 +02:00
@override
Widget build(BuildContext context) {
2019-11-08 11:29:08 +01:00
final theme = Provider.of<ThemeModel>(context);
2019-12-21 09:16:17 +01:00
final widget = Container(
padding: CommonStyle.padding,
child: Row(
children: <Widget>[
2019-12-22 04:11:13 +01:00
Avatar(url: avatarUrl, size: AvatarSize.large),
2019-12-21 09:16:17 +01:00
SizedBox(width: 10),
Expanded(
child: Column(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
2019-12-21 09:16:17 +01:00
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Row(
children: <Widget>[
Text(
name ?? login,
style: TextStyle(
color: theme.palette.primary,
fontSize: 17,
fontWeight: FontWeight.w500,
2019-10-02 08:58:11 +02:00
),
2019-12-21 09:16:17 +01:00
),
SizedBox(width: 4),
Text(
'($login)',
2019-09-27 15:02:55 +02:00
style: TextStyle(
2019-12-21 09:16:17 +01:00
color: theme.palette.secondaryText, fontSize: 16),
2019-09-14 20:05:34 +02:00
),
2019-12-21 09:16:17 +01:00
],
),
SizedBox(height: 6),
if (bio != null)
DefaultTextStyle(
2019-12-21 09:16:17 +01:00
style: TextStyle(
color: theme.palette.secondaryText,
fontSize: 15,
),
child: bio,
2019-12-21 09:16:17 +01:00
),
],
),
)
],
2019-09-14 20:05:34 +02:00
),
2019-09-14 11:19:33 +02:00
);
2019-12-21 09:16:17 +01:00
if (inUserScreen) {
return widget;
} else {
2019-12-27 08:06:45 +01:00
return Link(url: '/$login', child: widget);
2019-12-21 09:16:17 +01:00
}
2019-09-14 11:19:33 +02:00
}
}