dd250788f6
The backend retired /api/briefing/* and the RSS feature entirely. This
Flutter change mirrors what landed web-side: rename the briefing surface
to journal, repoint at /api/journal/*, and drop the news/RSS UI since
its endpoints no longer exist.
New (mirrors briefing structure with adapted shapes):
- lib/data/api/journal_api.dart — getToday, getDay, getDays, triggerPrep
- lib/data/models/journal_day.dart — {day_date, conversation, messages}
- lib/providers/journal_provider.dart — async notifier, sendReply, polling,
silent refresh, regeneratePrep. Mirrors the briefing notifier 1:1
- lib/widgets/journal_prep_card.dart — adapted briefing_digest_card
- lib/screens/journal/journal_screen.dart — adapted briefing_screen,
weather card preserved (rendered from msg_metadata.sections.weather
on the daily-prep assistant message). News cards / RSS reactions /
article-discuss removed
- lib/screens/journal/journal_history_screen.dart — past days picker
pulls /api/journal/days, drills into /api/journal/day/<iso>
Wiring:
- Routes.briefing → Routes.journal (constants.dart)
- Routes.news removed
- briefingApiProvider → journalApiProvider (api_client_provider.dart)
- newsApiProvider removed
- app.dart: shell tab "Briefing" → "Journal"; News destination removed
from nav rail, bottom nav, and the More sheet
- splash_screen.dart and login_screen.dart: redirect Routes.journal
instead of Routes.briefing
- chat_api.dart: drop openArticleInChat (calls deleted /api/chat/from-article)
- settings_provider.dart: drop rssEnabled getter and rssEnabledProvider
Deleted:
- lib/screens/briefing/ (whole directory)
- lib/screens/news/ (whole directory)
- lib/data/api/briefing_api.dart, news_api.dart
- lib/data/models/briefing_conversation.dart, briefing_feed.dart, news_item.dart
- lib/providers/briefing_provider.dart, news_provider.dart
- lib/widgets/briefing_digest_card.dart, news_card.dart
- test cases for NewsItem and BriefingFeed in test/widget_test.dart
flutter analyze: 0 issues.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
61 lines
1.8 KiB
Dart
61 lines
1.8 KiB
Dart
import 'message.dart';
|
|
|
|
/// Lightweight conversation header for a journal day — just enough to drive
|
|
/// navigation and labels. The full message list comes alongside in [JournalDay].
|
|
class JournalConversation {
|
|
final int id;
|
|
final String title;
|
|
final String conversationType;
|
|
final String? dayDate; // YYYY-MM-DD or null
|
|
|
|
const JournalConversation({
|
|
required this.id,
|
|
required this.title,
|
|
required this.conversationType,
|
|
this.dayDate,
|
|
});
|
|
|
|
factory JournalConversation.fromJson(Map<String, dynamic> json) =>
|
|
JournalConversation(
|
|
id: json['id'] as int,
|
|
title: json['title'] as String? ?? '',
|
|
conversationType:
|
|
json['conversation_type'] as String? ?? 'journal',
|
|
dayDate: json['day_date'] as String?,
|
|
);
|
|
}
|
|
|
|
/// Payload returned by GET /api/journal/today and /api/journal/day/<iso>.
|
|
/// `conversation` is null on a day with no journal content yet (rare —
|
|
/// the today endpoint creates it on demand).
|
|
class JournalDay {
|
|
final String dayDate;
|
|
final JournalConversation? conversation;
|
|
final List<Message> messages;
|
|
|
|
const JournalDay({
|
|
required this.dayDate,
|
|
required this.conversation,
|
|
required this.messages,
|
|
});
|
|
|
|
factory JournalDay.fromJson(Map<String, dynamic> json) {
|
|
final convRaw = json['conversation'] as Map<String, dynamic>?;
|
|
final rawMessages = json['messages'] as List<dynamic>? ?? [];
|
|
return JournalDay(
|
|
dayDate: json['day_date'] as String,
|
|
conversation:
|
|
convRaw == null ? null : JournalConversation.fromJson(convRaw),
|
|
messages: rawMessages
|
|
.map((e) => Message.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
);
|
|
}
|
|
|
|
JournalDay copyWith({List<Message>? messages}) => JournalDay(
|
|
dayDate: dayDate,
|
|
conversation: conversation,
|
|
messages: messages ?? this.messages,
|
|
);
|
|
}
|