2020-01-29 06:45:22 +01:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:git_touch/models/theme.dart';
|
|
|
|
import 'package:git_touch/utils/utils.dart';
|
|
|
|
import 'package:git_touch/widgets/avatar.dart';
|
2020-10-08 11:09:50 +02:00
|
|
|
import 'package:git_touch/widgets/mutation_button.dart';
|
2020-01-29 06:45:22 +01:00
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
|
|
|
|
class UserHeader extends StatelessWidget {
|
2021-05-16 09:16:35 +02:00
|
|
|
final String? avatarUrl;
|
|
|
|
final String? name;
|
|
|
|
final String? login;
|
|
|
|
final DateTime? createdAt;
|
|
|
|
final String? bio;
|
2020-10-08 11:09:50 +02:00
|
|
|
final List<Widget> rightWidgets;
|
2020-01-29 06:45:22 +01:00
|
|
|
|
|
|
|
UserHeader({
|
2021-05-16 09:16:35 +02:00
|
|
|
required this.avatarUrl,
|
|
|
|
required this.name,
|
|
|
|
required this.login,
|
|
|
|
required this.createdAt,
|
|
|
|
required this.bio,
|
2020-10-08 11:09:50 +02:00
|
|
|
bool isViewer = false,
|
2021-05-16 09:16:35 +02:00
|
|
|
List<Widget>? rightWidgets,
|
2021-01-31 08:49:28 +01:00
|
|
|
}) : rightWidgets = [
|
2020-10-08 11:09:50 +02:00
|
|
|
if (isViewer)
|
|
|
|
MutationButton(
|
|
|
|
active: false,
|
|
|
|
text: 'Switch accounts',
|
|
|
|
url: '/login',
|
|
|
|
)
|
2021-01-31 08:49:28 +01:00
|
|
|
else
|
|
|
|
...(rightWidgets ?? []),
|
2020-10-08 11:09:50 +02:00
|
|
|
];
|
2020-01-29 06:45:22 +01:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final theme = Provider.of<ThemeModel>(context);
|
|
|
|
return Container(
|
|
|
|
padding: CommonStyle.padding,
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
|
|
children: <Widget>[
|
|
|
|
Row(
|
|
|
|
children: <Widget>[
|
|
|
|
Avatar(url: avatarUrl, size: AvatarSize.extraLarge),
|
2021-05-16 09:16:35 +02:00
|
|
|
if (rightWidgets.isNotEmpty) ...[
|
2020-01-29 06:45:22 +01:00
|
|
|
Expanded(child: Container()),
|
2020-10-08 11:09:50 +02:00
|
|
|
...rightWidgets,
|
2020-01-29 06:45:22 +01:00
|
|
|
]
|
|
|
|
],
|
|
|
|
),
|
|
|
|
SizedBox(height: 8),
|
2021-05-16 09:16:35 +02:00
|
|
|
if (name != null && name!.isNotEmpty) ...[
|
2020-01-29 06:45:22 +01:00
|
|
|
Text(
|
2021-05-16 09:16:35 +02:00
|
|
|
name!,
|
2020-01-29 06:45:22 +01:00
|
|
|
style: TextStyle(
|
|
|
|
color: theme.palette.text,
|
|
|
|
fontSize: 20,
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
SizedBox(height: 4),
|
|
|
|
],
|
|
|
|
Text(
|
2021-05-16 09:16:35 +02:00
|
|
|
login!,
|
2020-01-29 06:45:22 +01:00
|
|
|
style: TextStyle(
|
|
|
|
color: theme.palette.primary,
|
|
|
|
fontSize: 18,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
SizedBox(height: 8),
|
2020-01-31 15:45:40 +01:00
|
|
|
if (createdAt != null)
|
|
|
|
Row(
|
|
|
|
children: <Widget>[
|
|
|
|
Icon(
|
|
|
|
Octicons.clock,
|
|
|
|
size: 16,
|
2020-01-29 06:45:22 +01:00
|
|
|
color: theme.palette.tertiaryText,
|
|
|
|
),
|
2020-01-31 15:45:40 +01:00
|
|
|
SizedBox(width: 4),
|
|
|
|
Text(
|
2021-05-16 09:16:35 +02:00
|
|
|
'Joined on ${dateFormat.format(createdAt!)}',
|
2020-01-31 15:45:40 +01:00
|
|
|
style: TextStyle(
|
|
|
|
color: theme.palette.tertiaryText,
|
|
|
|
fontSize: 16,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2021-05-16 09:16:35 +02:00
|
|
|
if (bio != null && bio!.isNotEmpty) ...[
|
2020-01-29 06:45:22 +01:00
|
|
|
SizedBox(height: 10),
|
|
|
|
Text(
|
2021-05-16 09:16:35 +02:00
|
|
|
bio!,
|
2020-01-29 06:45:22 +01:00
|
|
|
style: TextStyle(
|
|
|
|
color: theme.palette.secondaryText,
|
|
|
|
fontSize: 17,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
]
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|