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>
326 lines
10 KiB
Dart
326 lines
10 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 '../../shared/l10n/l10n.dart';
|
|
import '../../shared/relay/relay.dart';
|
|
import '../../shared/theme/theme.dart';
|
|
import '../../shared/widgets/filter_chip_bar.dart';
|
|
import '../../shared/widgets/bee_refresh_indicator.dart';
|
|
import '../../shared/widgets/frosted_app_bar.dart';
|
|
import '../../shared/widgets/frosted_scaffold.dart';
|
|
import 'agent_activity_card.dart';
|
|
import 'compose_note_page.dart';
|
|
import 'note_card.dart';
|
|
import 'pulse_models.dart';
|
|
import 'pulse_provider.dart';
|
|
|
|
enum PulseTab { everyone, following, liked, agents, mine }
|
|
|
|
class PulsePage extends HookConsumerWidget {
|
|
const PulsePage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final active = useState(PulseTab.everyone);
|
|
final currentPubkey = ref.watch(myPubkeyProvider);
|
|
final contactsAsync = currentPubkey == null
|
|
? const AsyncValue<List<ContactEntry>>.data([])
|
|
: ref.watch(contactListProvider(currentPubkey));
|
|
final contacts = contactsAsync.asData?.value ?? const <ContactEntry>[];
|
|
final contactPubkeys = contacts.map((c) => c.pubkey).toList();
|
|
final contactSet = contactPubkeys.toSet();
|
|
final agentPubkeys =
|
|
ref.watch(agentPubkeysProvider).asData?.value.toSet() ?? {};
|
|
|
|
final notesAsync = switch (active.value) {
|
|
PulseTab.everyone => ref.watch(globalNotesProvider),
|
|
PulseTab.following => ref.watch(
|
|
notesTimelineProvider(pulseKeyFor(contactPubkeys)),
|
|
),
|
|
PulseTab.liked => ref.watch(likedNotesProvider),
|
|
PulseTab.agents => ref.watch(agentNotesProvider),
|
|
PulseTab.mine =>
|
|
currentPubkey == null
|
|
? const AsyncValue<List<UserNote>>.data([])
|
|
: ref.watch(notesTimelineProvider(pulseKeyFor([currentPubkey]))),
|
|
};
|
|
|
|
final visibleNotes = notesAsync.asData?.value ?? const <UserNote>[];
|
|
if (visibleNotes.isNotEmpty) preloadPulseProfiles(ref, visibleNotes);
|
|
final notesKey = pulseKeyFor(visibleNotes.map((note) => note.id));
|
|
final reactions = ref.watch(noteReactionsProvider(notesKey));
|
|
final reactionMap =
|
|
reactions.asData?.value ?? const <String, PulseReactionState>{};
|
|
|
|
return FrostedScaffold(
|
|
resizeToAvoidBottomInset: true,
|
|
appBar: FrostedAppBar(title: Text(context.l10n.pulse)),
|
|
floatingActionButton: FloatingActionButton(
|
|
heroTag: 'pulse-compose-fab',
|
|
onPressed: () => Navigator.of(context).push(
|
|
MaterialPageRoute<void>(builder: (_) => const ComposeNotePage()),
|
|
),
|
|
tooltip: context.l10n.pulseNewNote,
|
|
shape: const CircleBorder(),
|
|
child: const Icon(LucideIcons.plus),
|
|
),
|
|
body: Column(
|
|
children: [
|
|
SizedBox(height: frostedAppBarHeight(context)),
|
|
FilterChipBar<PulseTab>(
|
|
selected: active.value,
|
|
onSelected: (tab) => active.value = tab,
|
|
items: [
|
|
FilterChipItem(
|
|
id: PulseTab.everyone,
|
|
label: context.l10n.pulseEveryone,
|
|
icon: LucideIcons.radio,
|
|
),
|
|
FilterChipItem(
|
|
id: PulseTab.following,
|
|
label: context.l10n.pulseFollowing,
|
|
icon: LucideIcons.users,
|
|
),
|
|
FilterChipItem(
|
|
id: PulseTab.liked,
|
|
label: context.l10n.pulseLiked,
|
|
icon: LucideIcons.heart,
|
|
),
|
|
FilterChipItem(
|
|
id: PulseTab.agents,
|
|
label: context.l10n.pulseAgents,
|
|
icon: LucideIcons.bot,
|
|
),
|
|
FilterChipItem(
|
|
id: PulseTab.mine,
|
|
label: context.l10n.pulseMine,
|
|
icon: LucideIcons.user,
|
|
),
|
|
],
|
|
),
|
|
Expanded(
|
|
child: BeeRefreshIndicator(
|
|
onRefresh: () async => _refresh(ref, active.value, currentPubkey),
|
|
child: _PulseBody(
|
|
tab: active.value,
|
|
notesAsync: notesAsync,
|
|
reactions: reactionMap,
|
|
agentPubkeys: agentPubkeys,
|
|
contactPubkeys: contactSet,
|
|
currentPubkey: currentPubkey,
|
|
onReactionChanged: () =>
|
|
ref.invalidate(noteReactionsProvider(notesKey)),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Future<void> _refresh(
|
|
WidgetRef ref,
|
|
PulseTab tab,
|
|
String? currentPubkey,
|
|
) async {
|
|
ref.invalidate(globalNotesProvider);
|
|
ref.invalidate(likedNotesProvider);
|
|
ref.invalidate(agentPubkeysProvider);
|
|
ref.invalidate(agentNotesProvider);
|
|
if (currentPubkey != null) {
|
|
ref.invalidate(contactListProvider(currentPubkey));
|
|
}
|
|
}
|
|
}
|
|
|
|
class _PulseBody extends ConsumerWidget {
|
|
final PulseTab tab;
|
|
final AsyncValue<List<UserNote>> notesAsync;
|
|
final Map<String, PulseReactionState> reactions;
|
|
final Set<String> agentPubkeys;
|
|
final Set<String> contactPubkeys;
|
|
final String? currentPubkey;
|
|
final VoidCallback onReactionChanged;
|
|
|
|
const _PulseBody({
|
|
required this.tab,
|
|
required this.notesAsync,
|
|
required this.reactions,
|
|
required this.agentPubkeys,
|
|
required this.contactPubkeys,
|
|
required this.currentPubkey,
|
|
required this.onReactionChanged,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
return notesAsync.when(
|
|
loading: () => const _TimelineSkeleton(),
|
|
error: (_, _) => _MessageListShell(
|
|
child: _EmptyState(
|
|
icon: LucideIcons.circleAlert,
|
|
message: context.l10n.pulseLoadFailed,
|
|
),
|
|
),
|
|
data: (notes) {
|
|
if (notes.isEmpty) {
|
|
return _MessageListShell(
|
|
child: _EmptyState(message: _emptyMessage(context, tab)),
|
|
);
|
|
}
|
|
if (tab == PulseTab.agents) {
|
|
final groups = groupAgentNotes(notes);
|
|
return ListView.separated(
|
|
padding: const EdgeInsets.fromLTRB(
|
|
Grid.gutter,
|
|
Grid.xxs,
|
|
Grid.gutter,
|
|
Grid.xs,
|
|
),
|
|
itemCount: groups.length,
|
|
separatorBuilder: (_, _) => const _NoteDivider(),
|
|
itemBuilder: (context, index) => AgentActivityCard(
|
|
group: groups[index],
|
|
reactions: reactions,
|
|
onReactionChanged: onReactionChanged,
|
|
),
|
|
);
|
|
}
|
|
return ListView.separated(
|
|
padding: const EdgeInsets.fromLTRB(
|
|
Grid.gutter,
|
|
Grid.xxs,
|
|
Grid.gutter,
|
|
Grid.xs,
|
|
),
|
|
itemCount: notes.length,
|
|
separatorBuilder: (_, _) => const _NoteDivider(),
|
|
itemBuilder: (context, index) {
|
|
final note = notes[index];
|
|
return NoteCard(
|
|
note: note,
|
|
reaction:
|
|
reactions[note.id] ??
|
|
const PulseReactionState(
|
|
count: 0,
|
|
reactedByCurrentUser: false,
|
|
),
|
|
isAgent: agentPubkeys.contains(note.pubkey),
|
|
isFollowing: contactPubkeys.contains(note.pubkey),
|
|
canFollow:
|
|
currentPubkey != null &&
|
|
currentPubkey!.toLowerCase() != note.pubkey.toLowerCase(),
|
|
onReactionChanged: onReactionChanged,
|
|
onFollowChanged: (_) {
|
|
if (currentPubkey != null) {
|
|
ref.invalidate(contactListProvider(currentPubkey!));
|
|
}
|
|
},
|
|
);
|
|
},
|
|
);
|
|
},
|
|
);
|
|
}
|
|
|
|
String _emptyMessage(BuildContext context, PulseTab tab) => switch (tab) {
|
|
PulseTab.everyone => context.l10n.pulseEmptyEveryone,
|
|
PulseTab.following => context.l10n.pulseEmptyFollowing,
|
|
PulseTab.liked => context.l10n.pulseEmptyLiked,
|
|
PulseTab.agents => context.l10n.pulseEmptyAgents,
|
|
PulseTab.mine => context.l10n.pulseEmptyMine,
|
|
};
|
|
}
|
|
|
|
class _MessageListShell extends StatelessWidget {
|
|
final Widget child;
|
|
|
|
const _MessageListShell({required this.child});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ListView(
|
|
padding: const EdgeInsets.all(Grid.xs),
|
|
children: [SizedBox(height: 260, child: Center(child: child))],
|
|
);
|
|
}
|
|
}
|
|
|
|
class _EmptyState extends StatelessWidget {
|
|
final IconData icon;
|
|
final String message;
|
|
|
|
const _EmptyState({this.icon = LucideIcons.radio, required this.message});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
width: double.infinity,
|
|
padding: const EdgeInsets.all(Grid.lg),
|
|
decoration: BoxDecoration(
|
|
border: Border.all(color: context.colors.outlineVariant),
|
|
borderRadius: BorderRadius.circular(Radii.lg),
|
|
),
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Icon(icon, color: context.colors.onSurfaceVariant),
|
|
const SizedBox(height: Grid.xs),
|
|
Text(
|
|
message,
|
|
textAlign: TextAlign.center,
|
|
style: context.textTheme.bodyMedium?.copyWith(
|
|
color: context.colors.onSurfaceVariant,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class _TimelineSkeleton extends StatelessWidget {
|
|
const _TimelineSkeleton();
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ListView.separated(
|
|
padding: const EdgeInsets.fromLTRB(
|
|
Grid.gutter,
|
|
Grid.xxs,
|
|
Grid.gutter,
|
|
Grid.xs,
|
|
),
|
|
itemCount: 5,
|
|
separatorBuilder: (_, _) => const _NoteDivider(),
|
|
itemBuilder: (_, _) => Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: Grid.twelve),
|
|
child: Container(
|
|
height: 64,
|
|
decoration: BoxDecoration(
|
|
color: context.colors.surfaceContainerHighest.withValues(
|
|
alpha: 0.55,
|
|
),
|
|
borderRadius: BorderRadius.circular(Radii.md),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class _NoteDivider extends StatelessWidget {
|
|
const _NoteDivider();
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Divider(
|
|
height: 1,
|
|
thickness: 1,
|
|
color: context.colors.outlineVariant.withValues(alpha: 0.5),
|
|
);
|
|
}
|
|
}
|