This repository has been archived on 2024-06-08. You can view files and clone it, but cannot push or open issues or pull requests.
SolarAgent/lib/widgets/feed.dart

117 lines
3.7 KiB
Dart
Raw Normal View History

2024-03-23 15:05:04 +00:00
import 'package:flutter/material.dart';
2024-03-23 16:13:52 +00:00
import 'package:flutter_carousel_widget/flutter_carousel_widget.dart';
2024-03-23 15:05:04 +00:00
import 'package:flutter_markdown/flutter_markdown.dart';
import 'package:solaragent/models/feed.dart';
2024-03-23 16:13:52 +00:00
import 'package:solaragent/widgets/image.dart';
2024-03-24 04:12:13 +00:00
import 'package:solaragent/widgets/posts/comments.dart';
2024-03-23 15:05:04 +00:00
class FeedItem extends StatelessWidget {
final Feed item;
const FeedItem({super.key, required this.item});
2024-03-24 04:12:13 +00:00
void viewComments(BuildContext context) {
showModalBottomSheet(
context: context,
isScrollControlled: true,
builder: (context) => CommentListWidget(parent: item),
);
}
2024-03-23 16:13:52 +00:00
bool hasAttachments() =>
item.attachments != null && item.attachments!.isNotEmpty;
2024-03-23 15:05:04 +00:00
String getDescription(String desc) =>
desc.isEmpty ? "No description yet." : desc;
2024-03-23 16:13:52 +00:00
String getFileUrl(String fileId) =>
'https://co.solsynth.dev/api/attachments/o/$fileId';
2024-03-23 15:05:04 +00:00
@override
Widget build(BuildContext context) {
2024-03-23 17:22:01 +00:00
return Column(
children: [
2024-03-24 04:12:13 +00:00
// Author info
2024-03-23 17:22:01 +00:00
Container(
color: Colors.grey[50],
child: ListTile(
title: Text(item.author.name),
leading: CircleAvatar(
backgroundImage: NetworkImage(item.author.avatar),
),
subtitle: Text(
getDescription(item.author.description),
overflow: TextOverflow.ellipsis,
maxLines: 1,
softWrap: false,
2024-03-23 15:05:04 +00:00
),
),
2024-03-23 17:22:01 +00:00
),
2024-03-24 04:12:13 +00:00
// Content
2024-03-23 17:22:01 +00:00
Markdown(
data: item.content,
shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(),
),
2024-03-24 04:12:13 +00:00
// Attachments view
2024-03-23 17:22:01 +00:00
hasAttachments()
? Container(
decoration: const BoxDecoration(
border: Border(
top: BorderSide(width: 0.3, color: Color(0xffdedede))),
),
child: FlutterCarousel(
options: CarouselOptions(
height: 240.0,
2024-03-24 03:20:59 +00:00
viewportFraction: 1.0,
2024-03-23 17:22:01 +00:00
showIndicator: true,
slideIndicator: const CircularSlideIndicator(),
2024-03-23 16:13:52 +00:00
),
2024-03-23 17:22:01 +00:00
items: item.attachments?.map((x) {
return Builder(
builder: (BuildContext context) {
2024-03-24 03:20:59 +00:00
return SizedBox(
2024-03-23 17:22:01 +00:00
width: MediaQuery.of(context).size.width,
child: InkWell(
child: Image.network(
getFileUrl(x.fileId),
fit: BoxFit.cover,
2024-03-23 16:13:52 +00:00
),
2024-03-23 17:22:01 +00:00
onTap: () {
Navigator.push(context,
MaterialPageRoute(builder: (_) {
return ImageLightbox(
url: getFileUrl(x.fileId),
);
}));
},
),
);
},
);
}).toList(),
),
)
: Container(),
2024-03-24 04:12:13 +00:00
// Actions
Container(
padding: const EdgeInsets.symmetric(horizontal: 8),
decoration: const BoxDecoration(
border:
Border(top: BorderSide(width: 0.3, color: Color(0xffdedede))),
),
child: Row(
children: [
TextButton.icon(
icon: const Icon(Icons.comment),
label: Text(item.commentCount.toString()),
onPressed: () => viewComments(context),
)
],
),
),
2024-03-23 17:22:01 +00:00
],
2024-03-23 15:05:04 +00:00
);
}
}