2024-06-03 15:36:46 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
import 'package:solian/models/account.dart';
|
2024-06-26 16:31:03 +00:00
|
|
|
import 'package:solian/models/account_status.dart';
|
2024-06-03 15:59:58 +00:00
|
|
|
import 'package:solian/platform.dart';
|
2024-06-26 16:31:03 +00:00
|
|
|
import 'package:solian/providers/status.dart';
|
2024-06-03 15:36:46 +00:00
|
|
|
import 'package:solian/widgets/account/account_avatar.dart';
|
|
|
|
import 'package:solian/widgets/account/account_badge.dart';
|
2024-06-26 16:31:03 +00:00
|
|
|
import 'package:solian/widgets/account/account_status_action.dart';
|
2024-06-03 15:36:46 +00:00
|
|
|
|
|
|
|
class AccountHeadingWidget extends StatelessWidget {
|
|
|
|
final dynamic avatar;
|
|
|
|
final dynamic banner;
|
|
|
|
final String name;
|
|
|
|
final String nick;
|
|
|
|
final String? desc;
|
|
|
|
final List<AccountBadge>? badges;
|
|
|
|
|
2024-06-26 16:31:03 +00:00
|
|
|
final Future<Response>? status;
|
|
|
|
final Function? onEditStatus;
|
|
|
|
|
2024-06-03 15:36:46 +00:00
|
|
|
const AccountHeadingWidget({
|
|
|
|
super.key,
|
|
|
|
this.avatar,
|
|
|
|
this.banner,
|
|
|
|
required this.name,
|
|
|
|
required this.nick,
|
|
|
|
required this.desc,
|
|
|
|
required this.badges,
|
2024-06-26 16:31:03 +00:00
|
|
|
this.status,
|
|
|
|
this.onEditStatus,
|
2024-06-03 15:36:46 +00:00
|
|
|
});
|
|
|
|
|
2024-06-26 16:31:03 +00:00
|
|
|
void showStatusAction(BuildContext context, bool hasStatus) {
|
|
|
|
showModalBottomSheet(
|
|
|
|
useRootNavigator: true,
|
|
|
|
context: context,
|
|
|
|
builder: (context) => AccountStatusAction(hasStatus: hasStatus),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-06-03 15:36:46 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Material(
|
|
|
|
color: Colors.transparent,
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
|
|
|
Stack(
|
|
|
|
clipBehavior: Clip.none,
|
|
|
|
children: [
|
|
|
|
ClipRRect(
|
|
|
|
borderRadius: const BorderRadius.all(Radius.circular(16)),
|
|
|
|
child: AspectRatio(
|
|
|
|
aspectRatio: 16 / 7,
|
|
|
|
child: Container(
|
|
|
|
color: Theme.of(context).colorScheme.surfaceContainer,
|
|
|
|
child: banner != null
|
|
|
|
? AccountProfileImage(
|
|
|
|
content: banner,
|
|
|
|
fit: BoxFit.cover,
|
|
|
|
)
|
|
|
|
: const SizedBox(),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
).paddingSymmetric(horizontal: 16),
|
|
|
|
Positioned(
|
|
|
|
bottom: -30,
|
|
|
|
left: 32,
|
|
|
|
child: AccountAvatar(content: avatar, radius: 40),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2024-06-26 16:31:03 +00:00
|
|
|
Column(
|
2024-06-03 15:36:46 +00:00
|
|
|
children: [
|
2024-06-26 16:31:03 +00:00
|
|
|
Row(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.baseline,
|
|
|
|
textBaseline: TextBaseline.alphabetic,
|
|
|
|
children: [
|
|
|
|
Text(
|
|
|
|
nick,
|
|
|
|
style: const TextStyle(
|
|
|
|
fontSize: 17,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
),
|
|
|
|
).paddingOnly(right: 4),
|
|
|
|
Text(
|
|
|
|
'@$name',
|
|
|
|
style: const TextStyle(
|
|
|
|
fontSize: 15,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
2024-06-03 15:36:46 +00:00
|
|
|
),
|
2024-06-26 16:31:03 +00:00
|
|
|
if (status != null)
|
|
|
|
SizedBox(
|
|
|
|
width: double.infinity,
|
|
|
|
child: FutureBuilder(
|
|
|
|
future: status,
|
|
|
|
builder: (context, snapshot) {
|
|
|
|
if (!snapshot.hasData || snapshot.data!.body == null) {
|
|
|
|
return Text('loading'.tr);
|
|
|
|
}
|
|
|
|
|
|
|
|
final info = StatusController.determineStatus(
|
|
|
|
AccountStatus.fromJson(snapshot.data!.body),
|
|
|
|
);
|
|
|
|
|
|
|
|
return GestureDetector(
|
|
|
|
child: Row(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
Text(info.$2),
|
|
|
|
info.$1.paddingSymmetric(horizontal: 6),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
onTap: () {
|
|
|
|
showStatusAction(
|
|
|
|
context,
|
|
|
|
snapshot.data!.body['status'] != null,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
2024-06-03 15:36:46 +00:00
|
|
|
],
|
|
|
|
).paddingOnly(left: 116, top: 6),
|
|
|
|
const SizedBox(height: 4),
|
|
|
|
if (badges?.isNotEmpty ?? false)
|
|
|
|
SizedBox(
|
|
|
|
width: double.infinity,
|
|
|
|
child: Card(
|
|
|
|
child: Wrap(
|
|
|
|
runSpacing: 2,
|
|
|
|
spacing: 4,
|
|
|
|
children: badges!.map((e) {
|
|
|
|
return AccountBadgeWidget(item: e);
|
|
|
|
}).toList(),
|
2024-06-03 15:59:58 +00:00
|
|
|
).paddingSymmetric(
|
|
|
|
horizontal: 8,
|
|
|
|
vertical: PlatformInfo.isMobile ? 0 : 6,
|
|
|
|
),
|
2024-06-03 15:36:46 +00:00
|
|
|
),
|
|
|
|
).paddingOnly(left: 16, right: 16),
|
|
|
|
SizedBox(
|
|
|
|
width: double.infinity,
|
|
|
|
child: Card(
|
|
|
|
child: ListTile(
|
|
|
|
title: Text('description'.tr),
|
|
|
|
subtitle: Text(
|
|
|
|
(desc?.isNotEmpty ?? false) ? desc! : 'No description yet.',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
).paddingOnly(left: 16, right: 16),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|