mirror of
https://github.com/we-promise/sure.git
synced 2026-04-08 06:44:52 +00:00
Backend fixes: - Fix duplicate AssistantResponseJob triggering causing duplicate AI responses - UserMessage model already handles job triggering via after_create_commit callback - Remove redundant job enqueue in chats_controller and messages_controller Mobile app features: - Implement complete AI chat interface and conversation management - Add Chat, Message, and ToolCall data models - Add ChatProvider for state management with polling mechanism - Add ChatService to handle all chat-related API requests - Add chat list screen (ChatListScreen) - Add conversation detail screen (ChatConversationScreen) - Refactor navigation structure with bottom navigation bar (MainNavigationScreen) - Add settings screen (SettingsScreen) - Optimize TransactionsProvider to support account filtering Technical details: - Implement message polling mechanism for real-time AI responses - Support chat creation, deletion, retry and other operations - Integrate Material Design 3 design language - Improve user experience and error handling Co-authored-by: dwvwdv <dwvwdv@protonmail.com>
78 lines
2.1 KiB
Dart
78 lines
2.1 KiB
Dart
import 'message.dart';
|
|
|
|
class Chat {
|
|
final String id;
|
|
final String title;
|
|
final String? error;
|
|
final DateTime createdAt;
|
|
final DateTime updatedAt;
|
|
final List<Message> messages;
|
|
final int? messageCount;
|
|
final DateTime? lastMessageAt;
|
|
|
|
Chat({
|
|
required this.id,
|
|
required this.title,
|
|
this.error,
|
|
required this.createdAt,
|
|
required this.updatedAt,
|
|
this.messages = const [],
|
|
this.messageCount,
|
|
this.lastMessageAt,
|
|
});
|
|
|
|
factory Chat.fromJson(Map<String, dynamic> json) {
|
|
return Chat(
|
|
id: json['id'].toString(),
|
|
title: json['title'] as String,
|
|
error: json['error'] as String?,
|
|
createdAt: DateTime.parse(json['created_at'] as String),
|
|
updatedAt: DateTime.parse(json['updated_at'] as String),
|
|
messages: json['messages'] != null
|
|
? (json['messages'] as List)
|
|
.map((m) => Message.fromJson(m as Map<String, dynamic>))
|
|
.toList()
|
|
: [],
|
|
messageCount: json['message_count'] as int?,
|
|
lastMessageAt: json['last_message_at'] != null
|
|
? DateTime.parse(json['last_message_at'] as String)
|
|
: null,
|
|
);
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
return {
|
|
'id': id,
|
|
'title': title,
|
|
'error': error,
|
|
'created_at': createdAt.toIso8601String(),
|
|
'updated_at': updatedAt.toIso8601String(),
|
|
'messages': messages.map((m) => m.toJson()).toList(),
|
|
'message_count': messageCount,
|
|
'last_message_at': lastMessageAt?.toIso8601String(),
|
|
};
|
|
}
|
|
|
|
Chat copyWith({
|
|
String? id,
|
|
String? title,
|
|
String? error,
|
|
DateTime? createdAt,
|
|
DateTime? updatedAt,
|
|
List<Message>? messages,
|
|
int? messageCount,
|
|
DateTime? lastMessageAt,
|
|
}) {
|
|
return Chat(
|
|
id: id ?? this.id,
|
|
title: title ?? this.title,
|
|
error: error ?? this.error,
|
|
createdAt: createdAt ?? this.createdAt,
|
|
updatedAt: updatedAt ?? this.updatedAt,
|
|
messages: messages ?? this.messages,
|
|
messageCount: messageCount ?? this.messageCount,
|
|
lastMessageAt: lastMessageAt ?? this.lastMessageAt,
|
|
);
|
|
}
|
|
}
|