9dfa06ffee
Docker image / Build (linux/amd64) (push) Has been cancelled
Docker image / Build (linux/arm64) (push) Has been cancelled
Docker image / Merge release multi-arch manifest (push) Has been cancelled
Docker image / Merge debug multi-arch manifest (push) Has been cancelled
Docker image / Build public push gateway (linux/amd64) (push) Has been cancelled
Docker image / Build public push gateway (linux/arm64) (push) Has been cancelled
Docker image / Publish public push gateway image (push) Has been cancelled
Sprig image / Build (linux/amd64) (push) Has been cancelled
Sprig image / Build (linux/arm64) (push) Has been cancelled
Sprig image / Merge multi-arch manifest (push) Has been cancelled
Harbor Buzz Orchestra / Python tests and lint (push) Has been cancelled
CI / Detect Changed Paths (push) Has been cancelled
CI / Rust Lint (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
CI / Desktop Core (push) Has been cancelled
CI / Desktop Smoke E2E (1) (push) Has been cancelled
CI / Desktop Smoke E2E (2) (push) Has been cancelled
CI / Desktop Smoke E2E (3) (push) Has been cancelled
CI / Desktop Smoke E2E (4) (push) Has been cancelled
CI / Desktop (push) Has been cancelled
CI / Desktop E2E Relay (push) Has been cancelled
CI / Desktop E2E Integration (1/2) (push) Has been cancelled
CI / Desktop E2E Integration (2/2) (push) Has been cancelled
CI / Desktop E2E Integration (push) Has been cancelled
CI / Backend Integration (relay e2e) (push) Has been cancelled
CI / Relay E2E (push) Has been cancelled
CI / Web (push) Has been cancelled
CI / Mobile (push) Has been cancelled
CI / Security (push) Has been cancelled
CI / Dead Token Reference Guard (push) Has been cancelled
CI / Server Cross-Compile (aarch64-unknown-linux-musl) (push) Has been cancelled
CI / Server Cross-Compile (x86_64-unknown-linux-musl) (push) Has been cancelled
CI / Windows Rust (x86_64-pc-windows-msvc) (push) Has been cancelled
CI / Desktop Build (macOS) (push) Has been cancelled
helm chart / lint + unittest + render matrix (push) Has been cancelled
helm chart / install on kind (gated) (push) Has been cancelled
helm chart / publish chart to GHCR (push) Has been cancelled
Mesh Lifecycle / Relay-Driven Mesh Lifecycle Smoke (push) Has been cancelled
Sprig / Build (aarch64-unknown-linux-musl) (push) Has been cancelled
Sprig / Build (x86_64-unknown-linux-musl) (push) Has been cancelled
Sprig / Publish rolling release (push) Has been cancelled
Sprig / Publish tagged release (push) Has been cancelled
Signed-off-by: cls_宁波本机 <908705107@qq.com>
228 lines
7.7 KiB
Dart
228 lines
7.7 KiB
Dart
import 'dart:async';
|
|
|
|
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 '../../shared/l10n/l10n.dart';
|
|
import '../../shared/theme/theme.dart';
|
|
import '../../shared/widgets/buzz_loading_indicator.dart';
|
|
import '../../shared/widgets/frosted_app_bar.dart';
|
|
import '../../shared/widgets/bee_refresh_indicator.dart';
|
|
import '../channels/channel.dart';
|
|
import '../channels/compose_bar.dart';
|
|
import 'forum_models.dart';
|
|
import 'forum_post_card.dart';
|
|
import 'forum_provider.dart';
|
|
import 'forum_thread_page.dart';
|
|
|
|
/// Main forum view — replaces the old _ForumPlaceholder.
|
|
///
|
|
/// Shows a list of forum posts for the channel with a FAB to open the compose
|
|
/// bar, and navigates to [ForumThreadPage] when a post is tapped.
|
|
class ForumPostsView extends HookConsumerWidget {
|
|
final Channel channel;
|
|
final String? currentPubkey;
|
|
|
|
const ForumPostsView({
|
|
super.key,
|
|
required this.channel,
|
|
required this.currentPubkey,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final postsAsync = ref.watch(forumPostsProvider(channel.id));
|
|
final isComposing = useState(false);
|
|
// A queued attachment can finish after this view is popped. Capture the
|
|
// app-level provider container instead of retaining the route's WidgetRef.
|
|
final providerContainer = ProviderScope.containerOf(context, listen: false);
|
|
final forumDelivery = ForumEventDelivery.capture(providerContainer);
|
|
|
|
// Periodic refresh (every 15s, matching desktop).
|
|
useEffect(() {
|
|
final timer = Stream.periodic(const Duration(seconds: 15)).listen((_) {
|
|
ref.invalidate(forumPostsProvider(channel.id));
|
|
});
|
|
return timer.cancel;
|
|
}, [channel.id]);
|
|
|
|
final canPost = channel.isMember && !channel.isArchived;
|
|
|
|
return Column(
|
|
children: [
|
|
Expanded(
|
|
child: Scaffold(
|
|
// Transparent so the parent Scaffold's background shows through.
|
|
backgroundColor: Colors.transparent,
|
|
floatingActionButton: canPost && !isComposing.value
|
|
? FloatingActionButton(
|
|
heroTag: 'forum-fab',
|
|
onPressed: () => isComposing.value = true,
|
|
tooltip: context.l10n.newPost,
|
|
shape: const CircleBorder(),
|
|
child: const Icon(LucideIcons.plus),
|
|
)
|
|
: null,
|
|
body: postsAsync.when(
|
|
loading: () => Padding(
|
|
padding: EdgeInsets.only(top: frostedAppBarHeight(context)),
|
|
child: const Center(
|
|
child: BuzzLoadingIndicator(
|
|
size: 44,
|
|
semanticLabel: context.l10n.loadingPosts,
|
|
),
|
|
),
|
|
),
|
|
error: (e, _) => Padding(
|
|
padding: EdgeInsets.only(top: frostedAppBarHeight(context)),
|
|
child: Center(
|
|
child: Text(
|
|
context.l10n.failedLoadPosts,
|
|
style: context.textTheme.bodyMedium?.copyWith(
|
|
color: context.colors.error,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
data: (response) {
|
|
final posts = response.posts;
|
|
if (posts.isEmpty) {
|
|
return _EmptyState(
|
|
isMember: channel.isMember,
|
|
isArchived: channel.isArchived,
|
|
);
|
|
}
|
|
return BeeRefreshIndicator(
|
|
onRefresh: () async {
|
|
ref.invalidate(forumPostsProvider(channel.id));
|
|
await ref.read(forumPostsProvider(channel.id).future);
|
|
},
|
|
child: ListView.separated(
|
|
padding: EdgeInsets.only(
|
|
top: frostedAppBarHeight(context),
|
|
left: Grid.gutter,
|
|
right: Grid.gutter,
|
|
bottom: Grid.xs,
|
|
),
|
|
itemCount: posts.length,
|
|
separatorBuilder: (_, _) =>
|
|
const SizedBox(height: Grid.xxs),
|
|
itemBuilder: (context, index) {
|
|
final post = posts[index];
|
|
return ForumPostCard(
|
|
post: post,
|
|
currentPubkey: currentPubkey,
|
|
onTap: () => _openThread(context, post),
|
|
onDelete: (eventId) async {
|
|
await deleteForumEvent(
|
|
ref,
|
|
channelId: channel.id,
|
|
eventId: eventId,
|
|
);
|
|
},
|
|
);
|
|
},
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
),
|
|
if (isComposing.value) ...[
|
|
Align(
|
|
alignment: Alignment.centerRight,
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(right: Grid.xxs),
|
|
child: IconButton(
|
|
onPressed: () => isComposing.value = false,
|
|
icon: const Icon(LucideIcons.x, size: 18),
|
|
tooltip: context.l10n.dismiss,
|
|
visualDensity: VisualDensity.compact,
|
|
),
|
|
),
|
|
),
|
|
ComposeBar(
|
|
channelId: channel.id,
|
|
hintText: context.l10n.writePostHint,
|
|
onSend:
|
|
(
|
|
content,
|
|
mentionPubkeys, {
|
|
mediaTags = const <List<String>>[],
|
|
}) async {
|
|
await forumDelivery.createPost(
|
|
channelId: channel.id,
|
|
content: content,
|
|
mentionPubkeys: mentionPubkeys,
|
|
mediaTags: mediaTags,
|
|
);
|
|
if (context.mounted) isComposing.value = false;
|
|
},
|
|
),
|
|
],
|
|
],
|
|
);
|
|
}
|
|
|
|
void _openThread(BuildContext context, ForumPost post) {
|
|
Navigator.of(context).push(
|
|
MaterialPageRoute<void>(
|
|
builder: (_) => ForumThreadPage(
|
|
channelId: channel.id,
|
|
postEventId: post.eventId,
|
|
currentPubkey: currentPubkey,
|
|
isMember: channel.isMember,
|
|
isArchived: channel.isArchived,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class _EmptyState extends StatelessWidget {
|
|
final bool isMember;
|
|
final bool isArchived;
|
|
|
|
const _EmptyState({required this.isMember, required this.isArchived});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: Grid.sm),
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Icon(
|
|
LucideIcons.messageSquareText,
|
|
size: Grid.xl,
|
|
color: context.colors.onSurfaceVariant,
|
|
),
|
|
const SizedBox(height: Grid.xxs),
|
|
Text(
|
|
context.l10n.noPostsYet,
|
|
style: context.textTheme.bodyLarge?.copyWith(
|
|
color: context.colors.onSurfaceVariant,
|
|
),
|
|
),
|
|
const SizedBox(height: Grid.half),
|
|
Text(
|
|
isArchived
|
|
? context.l10n.forumArchived
|
|
: isMember
|
|
? context.l10n.startForumDiscussion
|
|
: context.l10n.joinForumToPost,
|
|
style: context.textTheme.bodySmall?.copyWith(
|
|
color: context.colors.onSurfaceVariant,
|
|
),
|
|
textAlign: TextAlign.center,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|