mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
## Summary - align message typography, avatars, metadata, and spacing across mobile surfaces - improve message follow behavior, touch feedback, and Activity popover motion - refine Search motion, gutters, and explicit recent-search history ## Snapshots ### Home  ### Activity  ### Search  ## Testing - `just mobile-check` - `just mobile-test` (749 passed, 1 skipped) --------- Signed-off-by: Taylor Ho <taylorkmho@gmail.com> Signed-off-by: kenny lopez <klopez4212@gmail.com> Signed-off-by: npub14vtk7pvazqrq9639qu7e560wnqtl0d53ca4gjuvq6jzf3k2el23qqlwa7f <ab176f059d100602ea25073d9a69ee9817f7b691c76a897180d48498d959faa2@buzz.block.builderlab.xyz> Signed-off-by: Wes <wesbillman@users.noreply.github.com> Signed-off-by: npub15w828kxsxu2684ynste0uah2jwkgatd99flt7ds4523hzm8ju6cshdr8hh <a38ea3d8d03715a3d49382f2fe76ea93ac8eada52a7ebf3615a2a3716cf2e6b1@buzz.block.builderlab.xyz> Co-authored-by: npub1223z34hd7vtwc6qj4s7flsxkj644nlre2nthu7lrrmkumhu3xddsrx9r6w <52a228d6edf316ec6812ac3c9fc0d696ab59fc7954d77e7be31eedcddf91335b@buzz.block.builderlab.xyz> Co-authored-by: Taylor Ho <taylorkmho@gmail.com> Co-authored-by: npub14vtk7pvazqrq9639qu7e560wnqtl0d53ca4gjuvq6jzf3k2el23qqlwa7f <ab176f059d100602ea25073d9a69ee9817f7b691c76a897180d48498d959faa2@buzz.block.builderlab.xyz> Co-authored-by: Wes <wesbillman@users.noreply.github.com> Co-authored-by: Carl <c7ebe626f000404285d3686e1dc74cc07cc60a9754a150041ba132e14bd3e2ec@buzz.block.builderlab.xyz> Co-authored-by: npub15w828kxsxu2684ynste0uah2jwkgatd99flt7ds4523hzm8ju6cshdr8hh <a38ea3d8d03715a3d49382f2fe76ea93ac8eada52a7ebf3615a2a3716cf2e6b1@buzz.block.builderlab.xyz>
341 lines
12 KiB
Dart
341 lines
12 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:lucide_icons_flutter/lucide_icons.dart';
|
|
import 'package:nostr/nostr.dart' as nostr;
|
|
|
|
import '../../shared/clipboard_utils.dart';
|
|
import '../../shared/theme/theme.dart';
|
|
import '../../shared/widgets/avatar_image.dart';
|
|
import '../channels/channel_detail_page.dart';
|
|
import '../channels/channel_management_provider.dart';
|
|
import '../channels/message_content.dart';
|
|
import '../profile/user_cache_provider.dart';
|
|
import '../profile/user_profile_sheet.dart';
|
|
import 'compose_note_page.dart';
|
|
import 'pulse_actions.dart';
|
|
import 'pulse_models.dart';
|
|
|
|
class NoteCard extends HookConsumerWidget {
|
|
final UserNote note;
|
|
final PulseReactionState reaction;
|
|
final bool isAgent;
|
|
final bool isFollowing;
|
|
final bool canFollow;
|
|
final VoidCallback? onReactionChanged;
|
|
final ValueChanged<String>? onFollowChanged;
|
|
|
|
const NoteCard({
|
|
super.key,
|
|
required this.note,
|
|
required this.reaction,
|
|
this.isAgent = false,
|
|
this.isFollowing = false,
|
|
this.canFollow = false,
|
|
this.onReactionChanged,
|
|
this.onFollowChanged,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final pendingUpvote = useState<bool?>(null);
|
|
final pubkey = note.pubkey.toLowerCase();
|
|
final profile =
|
|
ref.watch(userCacheProvider.select((cache) => cache[pubkey])) ??
|
|
ref.read(userCacheProvider.notifier).get(pubkey);
|
|
final displayName = profile?.label ?? _shortPubkey(pubkey);
|
|
final effectiveUpvoted =
|
|
pendingUpvote.value ?? reaction.reactedByCurrentUser;
|
|
final effectiveCount = _effectiveCount(reaction, pendingUpvote.value);
|
|
|
|
// Clear the optimistic flag only once the refetched server state matches
|
|
// it, so the count never flickers back through the stale value mid-refetch.
|
|
useEffect(() {
|
|
if (pendingUpvote.value != null &&
|
|
reaction.reactedByCurrentUser == pendingUpvote.value) {
|
|
pendingUpvote.value = null;
|
|
}
|
|
return null;
|
|
}, [reaction.reactedByCurrentUser]);
|
|
|
|
return Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: Grid.twelve),
|
|
child: Row(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
GestureDetector(
|
|
onTap: () => showUserProfileSheet(context, note.pubkey),
|
|
child: AvatarImage(
|
|
imageUrl: profile?.avatarUrl,
|
|
radius: 18,
|
|
backgroundColor: context.colors.primaryContainer,
|
|
fallback: Text(
|
|
(profile?.initial ?? displayName[0]).toUpperCase(),
|
|
style: context.textTheme.labelMedium?.copyWith(
|
|
color: context.colors.onPrimaryContainer,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(width: Grid.xs),
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Row(
|
|
children: [
|
|
Expanded(
|
|
child: GestureDetector(
|
|
onTap: () => showUserProfileSheet(context, note.pubkey),
|
|
child: Row(
|
|
children: [
|
|
Expanded(
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Flexible(
|
|
child: Text(
|
|
displayName,
|
|
maxLines: 1,
|
|
style: messageUsernameTextStyle,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
),
|
|
if (isAgent) ...[
|
|
const SizedBox(width: Grid.half),
|
|
Icon(
|
|
LucideIcons.bot,
|
|
size: 13,
|
|
color: context.colors.primary,
|
|
),
|
|
],
|
|
],
|
|
),
|
|
),
|
|
const SizedBox(width: Grid.xxs),
|
|
ConstrainedBox(
|
|
constraints: const BoxConstraints(
|
|
maxWidth: Grid.xl,
|
|
),
|
|
child: Text(
|
|
formatPulseRelativeTime(note.createdAt),
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
style: messageTimestampTextStyle.copyWith(
|
|
color: context.colors.onSurfaceVariant,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
if (canFollow) ...[
|
|
const SizedBox(width: Grid.half),
|
|
_FollowButton(
|
|
isFollowing: isFollowing,
|
|
onPressed: () async {
|
|
if (isFollowing) {
|
|
await unfollowUser(ref, note.pubkey);
|
|
} else {
|
|
await followUser(ref, note.pubkey);
|
|
}
|
|
onFollowChanged?.call(note.pubkey);
|
|
},
|
|
),
|
|
],
|
|
],
|
|
),
|
|
if (note.replyParentId != null) ...[
|
|
const SizedBox(height: 2),
|
|
Text(
|
|
'Replying to ${_shortPubkey(note.replyParentAuthor ?? note.replyParentId!)}',
|
|
style: context.textTheme.labelSmall?.copyWith(
|
|
color: context.colors.onSurfaceVariant,
|
|
),
|
|
),
|
|
],
|
|
const SizedBox(height: Grid.half),
|
|
MessageContent(
|
|
content: note.content,
|
|
tags: note.tags,
|
|
baseStyle: messageBodyTextStyle.copyWith(
|
|
color: context.colors.onSurface,
|
|
),
|
|
),
|
|
const SizedBox(height: Grid.xxs),
|
|
Row(
|
|
children: [
|
|
_ActionButton(
|
|
icon: effectiveUpvoted
|
|
? Icons.favorite
|
|
: LucideIcons.heart,
|
|
label: effectiveCount > 0 ? '$effectiveCount' : null,
|
|
color: effectiveUpvoted ? Colors.redAccent : null,
|
|
onTap: () async {
|
|
final next = !effectiveUpvoted;
|
|
pendingUpvote.value = next;
|
|
try {
|
|
await toggleNoteUpvote(
|
|
ref,
|
|
noteId: note.id,
|
|
isUpvoted: reaction.reactedByCurrentUser,
|
|
reactionEventId: reaction.currentUserReactionId,
|
|
);
|
|
onReactionChanged?.call();
|
|
} catch (_) {
|
|
// Revert the optimistic state on failure.
|
|
pendingUpvote.value = null;
|
|
}
|
|
},
|
|
),
|
|
_ActionButton(
|
|
icon: LucideIcons.messageCircle,
|
|
onTap: () => Navigator.of(context).push(
|
|
MaterialPageRoute<void>(
|
|
builder: (_) => ComposeNotePage(replyTo: note),
|
|
),
|
|
),
|
|
),
|
|
_ActionButton(
|
|
icon: LucideIcons.share,
|
|
onTap: () async {
|
|
await copyToClipboard(
|
|
context,
|
|
_shareUri(note),
|
|
message: 'Copied note URI',
|
|
);
|
|
},
|
|
),
|
|
_ActionButton(
|
|
icon: LucideIcons.mail,
|
|
onTap: () async {
|
|
final channel = await ref
|
|
.read(channelActionsProvider)
|
|
.openDm(pubkeys: [note.pubkey]);
|
|
if (!context.mounted) return;
|
|
Navigator.of(context).push(
|
|
MaterialPageRoute<void>(
|
|
builder: (_) => ChannelDetailPage(channel: channel),
|
|
),
|
|
);
|
|
},
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
int _effectiveCount(PulseReactionState reaction, bool? pending) {
|
|
if (pending == null || pending == reaction.reactedByCurrentUser) {
|
|
return reaction.count;
|
|
}
|
|
return (reaction.count + (pending ? 1 : -1)).clamp(0, 1 << 31);
|
|
}
|
|
}
|
|
|
|
class _FollowButton extends StatelessWidget {
|
|
final bool isFollowing;
|
|
final VoidCallback onPressed;
|
|
|
|
const _FollowButton({required this.isFollowing, required this.onPressed});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return InkWell(
|
|
onTap: onPressed,
|
|
borderRadius: BorderRadius.circular(Radii.md),
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: Grid.half, vertical: 2),
|
|
child: Text(
|
|
isFollowing ? 'Following' : 'Follow',
|
|
style: context.textTheme.labelSmall?.copyWith(
|
|
color: context.colors.primary,
|
|
fontWeight: FontWeight.w700,
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class _ActionButton extends StatelessWidget {
|
|
final IconData icon;
|
|
final String? label;
|
|
final VoidCallback onTap;
|
|
final Color? color;
|
|
|
|
const _ActionButton({
|
|
required this.icon,
|
|
required this.onTap,
|
|
this.label,
|
|
this.color,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final effectiveColor = color ?? context.colors.onSurfaceVariant;
|
|
return InkWell(
|
|
onTap: onTap,
|
|
borderRadius: BorderRadius.circular(Radii.md),
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(
|
|
horizontal: Grid.gutter,
|
|
vertical: Grid.half,
|
|
),
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Icon(icon, size: 16, color: effectiveColor),
|
|
if (label != null) ...[
|
|
const SizedBox(width: 3),
|
|
Text(
|
|
label!,
|
|
style: context.textTheme.labelSmall?.copyWith(
|
|
color: effectiveColor,
|
|
fontWeight: FontWeight.w600,
|
|
),
|
|
),
|
|
],
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
String _shareUri(UserNote note) =>
|
|
'nostr:${nostr.Nip19.encodeShareableIdentifiers(prefix: nostr.Nip19Prefix.nevent, data: note.id, author: note.pubkey, kind: 1)}';
|
|
|
|
String _shortPubkey(String pubkey) =>
|
|
pubkey.length <= 8 ? pubkey : '${pubkey.substring(0, 8)}…';
|
|
|
|
String formatPulseRelativeTime(int createdAt) {
|
|
final date = DateTime.fromMillisecondsSinceEpoch(createdAt * 1000);
|
|
final diff = DateTime.now().difference(date);
|
|
if (diff.inMinutes < 1) return 'just now';
|
|
if (diff.inHours < 1) return '${diff.inMinutes}m';
|
|
if (diff.inDays < 1) return '${diff.inHours}h';
|
|
if (diff.inDays < 7) return '${diff.inDays}d';
|
|
const months = [
|
|
'Jan',
|
|
'Feb',
|
|
'Mar',
|
|
'Apr',
|
|
'May',
|
|
'Jun',
|
|
'Jul',
|
|
'Aug',
|
|
'Sep',
|
|
'Oct',
|
|
'Nov',
|
|
'Dec',
|
|
];
|
|
return '${months[date.month - 1]} ${date.day}';
|
|
}
|