🐛 Bug fixes for previous changes

This commit is contained in:
LittleSheep 2024-12-07 22:27:07 +08:00
parent 2a837227d5
commit c55db308a1
2 changed files with 27 additions and 20 deletions

View File

@ -206,7 +206,7 @@ class PostWriteController extends ChangeNotifier {
tags = List.from(post.tags.map((ele) => ele.alias));
attachments.addAll(post.preload?.attachments?.map((ele) => PostWriteMedia(ele)) ?? []);
if (post.preload?.thumbnail != null) {
if (post.preload?.thumbnail != null && (post.preload?.thumbnail?.rid.isNotEmpty ?? false)) {
thumbnail = PostWriteMedia(post.preload!.thumbnail);
}

View File

@ -3,7 +3,6 @@ import 'dart:math' as math;
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:material_symbols_icons/symbols.dart';
import 'package:popover/popover.dart';
import 'package:provider/provider.dart';
@ -148,6 +147,7 @@ class PostItem extends StatelessWidget {
if (data.repostTo != null)
_PostQuoteContent(child: data.repostTo!).padding(
horizontal: 12,
bottom: data.preload?.attachments?.isNotEmpty ?? false ? 12 : 0,
),
if (data.visibility > 0)
_PostVisibilityHint(data: data).padding(
@ -606,7 +606,8 @@ class _PostQuoteContent extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
return GestureDetector(
child: Container(
decoration: BoxDecoration(
borderRadius: const BorderRadius.all(Radius.circular(8)),
border: Border.all(
@ -626,6 +627,12 @@ class _PostQuoteContent extends StatelessWidget {
_PostContentBody(data: child),
],
),
),
onTap: () {
GoRouter.of(context).pushNamed('postDetail', pathParameters: {
'slug': child.id.toString(),
});
},
);
}
}