mirror of
https://github.com/Shchoholiev/shopping-assistant-mobile-client.git
synced 2025-04-05 00:59:38 +00:00
added logger and fixed the sending of the first message
This commit is contained in:
parent
747909fe42
commit
8ff63054b7
@ -1,12 +1,11 @@
|
|||||||
// search_service.dart
|
// search_service.dart
|
||||||
import 'dart:async';
|
import 'dart:async';
|
||||||
|
import 'package:logger/logger.dart';
|
||||||
import 'package:graphql_flutter/graphql_flutter.dart';
|
import 'package:graphql_flutter/graphql_flutter.dart';
|
||||||
import '../models/enums/search_event_type.dart';
|
import '../models/enums/search_event_type.dart';
|
||||||
import '../models/server_sent_event.dart';
|
import '../models/server_sent_event.dart';
|
||||||
import '../network/api_client.dart';
|
import '../network/api_client.dart';
|
||||||
import '../screens/chat.dart';
|
import '../screens/chat.dart';
|
||||||
import 'authentication_service.dart';
|
|
||||||
|
|
||||||
const String startPersonalWishlistMutations = r'''
|
const String startPersonalWishlistMutations = r'''
|
||||||
mutation startPersonalWishlist($dto: WishlistCreateDtoInput!) {
|
mutation startPersonalWishlist($dto: WishlistCreateDtoInput!) {
|
||||||
@ -16,6 +15,8 @@ const String startPersonalWishlistMutations = r'''
|
|||||||
}
|
}
|
||||||
''';
|
''';
|
||||||
|
|
||||||
|
var logger = Logger();
|
||||||
|
|
||||||
SearchEventType type = SearchEventType.message;
|
SearchEventType type = SearchEventType.message;
|
||||||
|
|
||||||
class SearchService {
|
class SearchService {
|
||||||
@ -60,12 +61,11 @@ class SearchService {
|
|||||||
|
|
||||||
Future<String> startPersonalWishlist(String message) async {
|
Future<String> startPersonalWishlist(String message) async {
|
||||||
|
|
||||||
// Перевіряємо, чи вже створений wishlist
|
|
||||||
if (wishlistId == null) {
|
if (wishlistId == null) {
|
||||||
final options = MutationOptions(
|
final options = MutationOptions(
|
||||||
document: gql(startPersonalWishlistMutations),
|
document: gql(startPersonalWishlistMutations),
|
||||||
variables: <String, dynamic>{
|
variables: <String, dynamic>{
|
||||||
'dto': {'firstMessageText': message, 'type': 'Product'},
|
'dto': {'firstMessageText': "What are you looking for?", 'type': 'Product'},
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -75,21 +75,6 @@ class SearchService {
|
|||||||
wishlistId = result['startPersonalWishlist']['id'];
|
wishlistId = result['startPersonalWishlist']['id'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (wishlistId != null) {
|
|
||||||
final sseStream = client.getServerSentEventStream(
|
|
||||||
'api/productssearch/search/$wishlistId',
|
|
||||||
{'text': message},
|
|
||||||
);
|
|
||||||
|
|
||||||
await for (final chunk in sseStream) {
|
|
||||||
print("Original chunk.data: ${chunk.event}");
|
|
||||||
final cleanedMessage = chunk.data.replaceAll(RegExp(r'(^"|"$)'), '');
|
|
||||||
|
|
||||||
final event = ServerSentEvent(type, cleanedMessage);
|
|
||||||
_sseController.add(event);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return wishlistId.toString();
|
return wishlistId.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -133,7 +118,7 @@ class SearchService {
|
|||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
print("DOCUMENT: ${options.document}");
|
logger.d("DOCUMENT: ${options.document}");
|
||||||
|
|
||||||
final result = await client.query(options);
|
final result = await client.query(options);
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
// search_screen.dart
|
// search_screen.dart
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_spinkit/flutter_spinkit.dart';
|
import 'package:flutter_spinkit/flutter_spinkit.dart';
|
||||||
|
import 'package:logger/logger.dart';
|
||||||
import 'package:shopping_assistant_mobile_client/network/search_service.dart';
|
import 'package:shopping_assistant_mobile_client/network/search_service.dart';
|
||||||
|
|
||||||
class Message {
|
class Message {
|
||||||
@ -27,7 +28,7 @@ class MessageBubble extends StatelessWidget {
|
|||||||
margin: const EdgeInsets.all(8.0),
|
margin: const EdgeInsets.all(8.0),
|
||||||
padding: const EdgeInsets.all(16.0),
|
padding: const EdgeInsets.all(16.0),
|
||||||
constraints: BoxConstraints(
|
constraints: BoxConstraints(
|
||||||
maxWidth: 300.0, // Максимальна ширина контейнера
|
maxWidth: 300.0,
|
||||||
),
|
),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: isOutgoing ? Colors.blue : Colors.grey[200],
|
color: isOutgoing ? Colors.blue : Colors.grey[200],
|
||||||
@ -40,10 +41,9 @@ class MessageBubble extends StatelessWidget {
|
|||||||
message,
|
message,
|
||||||
style: TextStyle(color: isOutgoing ? Colors.white : Colors.black),
|
style: TextStyle(color: isOutgoing ? Colors.white : Colors.black),
|
||||||
),
|
),
|
||||||
if (isProduct) // Виводимо кнопку тільки для повідомлень типу Product
|
if (isProduct)
|
||||||
ElevatedButton(
|
ElevatedButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
// Обробка натискання на кнопку "View Product"
|
|
||||||
print('View Product button pressed');
|
print('View Product button pressed');
|
||||||
},
|
},
|
||||||
style: ElevatedButton.styleFrom(
|
style: ElevatedButton.styleFrom(
|
||||||
@ -66,6 +66,7 @@ class ChatScreen extends StatefulWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class ChatScreenState extends State<ChatScreen> {
|
class ChatScreenState extends State<ChatScreen> {
|
||||||
|
var logger = Logger();
|
||||||
final SearchService _searchService = SearchService();
|
final SearchService _searchService = SearchService();
|
||||||
List<Message> messages = [];
|
List<Message> messages = [];
|
||||||
final TextEditingController _messageController = TextEditingController();
|
final TextEditingController _messageController = TextEditingController();
|
||||||
@ -96,22 +97,21 @@ class ChatScreenState extends State<ChatScreen> {
|
|||||||
Future<void> _loadPreviousMessages() async {
|
Future<void> _loadPreviousMessages() async {
|
||||||
final pageNumber = 1;
|
final pageNumber = 1;
|
||||||
final pageSize = 200;
|
final pageSize = 200;
|
||||||
print('Previous Messages:');
|
|
||||||
try {
|
try {
|
||||||
final previousMessages = await _searchService.getMessagesFromPersonalWishlist("6560b4c210686c50ed4b9fec", pageNumber, pageSize);
|
final previousMessages = await _searchService.getMessagesFromPersonalWishlist("6560b4c210686c50ed4b9fec", pageNumber, pageSize);
|
||||||
final reversedMessages = previousMessages.reversed.toList();
|
final reversedMessages = previousMessages.reversed.toList();
|
||||||
setState(() {
|
setState(() {
|
||||||
messages.addAll(reversedMessages);
|
messages.addAll(reversedMessages);
|
||||||
});
|
});
|
||||||
print('Previous Messages: $previousMessages');
|
logger.d('Previous Messages: $previousMessages');
|
||||||
|
|
||||||
for(final message in messages)
|
for(final message in messages)
|
||||||
{
|
{
|
||||||
print("MESSAGES TEXT: ${message.text}");
|
logger.d("MESSAGES TEXT: ${message.text}");
|
||||||
print("MESSAGES ROLE: ${message.role}");
|
logger.d("MESSAGES ROLE: ${message.role}");
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
print('Error loading previous messages: $error');
|
logger.d('Error loading previous messages: $error');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -121,7 +121,7 @@ class ChatScreenState extends State<ChatScreen> {
|
|||||||
final lastMessage = messages.isNotEmpty ? messages.last : null;
|
final lastMessage = messages.isNotEmpty ? messages.last : null;
|
||||||
message.isProduct = _searchService.checkerForProduct();
|
message.isProduct = _searchService.checkerForProduct();
|
||||||
message.isSuggestion = _searchService.checkerForSuggestion();
|
message.isSuggestion = _searchService.checkerForSuggestion();
|
||||||
print("Product status: ${message.isProduct}");
|
logger.d("Product status: ${message.isProduct}");
|
||||||
if (lastMessage != null && lastMessage.role != "User" && message.role != "User") {
|
if (lastMessage != null && lastMessage.role != "User" && message.role != "User") {
|
||||||
final updatedMessage = Message(
|
final updatedMessage = Message(
|
||||||
text: "${lastMessage.text}${message.text}",
|
text: "${lastMessage.text}${message.text}",
|
||||||
@ -155,7 +155,8 @@ class ChatScreenState extends State<ChatScreen> {
|
|||||||
isWaitingForResponse = true;
|
isWaitingForResponse = true;
|
||||||
});
|
});
|
||||||
wishlistId = await _searchService.startPersonalWishlist(message);
|
wishlistId = await _searchService.startPersonalWishlist(message);
|
||||||
updateChatTitle(_searchService.wishlistId.toString());
|
await _sendMessageToAPI(message);
|
||||||
|
await updateChatTitle(_searchService.wishlistId.toString());
|
||||||
_scrollToBottom();
|
_scrollToBottom();
|
||||||
|
|
||||||
setState(() {
|
setState(() {
|
||||||
@ -179,13 +180,17 @@ class ChatScreenState extends State<ChatScreen> {
|
|||||||
|
|
||||||
void _sendMessage() {
|
void _sendMessage() {
|
||||||
final message = _messageController.text;
|
final message = _messageController.text;
|
||||||
|
|
||||||
|
if (wishlistId.isEmpty) {
|
||||||
|
setState(() {
|
||||||
|
messages.add(Message(text: "What are you looking for?", role: "Application"));
|
||||||
|
messages.add(Message(text: message, role: "User"));
|
||||||
|
});
|
||||||
|
_startPersonalWishlist(message);
|
||||||
|
} else {
|
||||||
setState(() {
|
setState(() {
|
||||||
messages.add(Message(text: message, role: "User"));
|
messages.add(Message(text: message, role: "User"));
|
||||||
});
|
});
|
||||||
|
|
||||||
if (wishlistId.isEmpty) {
|
|
||||||
_startPersonalWishlist(message);
|
|
||||||
} else {
|
|
||||||
_sendMessageToAPI(message);
|
_sendMessageToAPI(message);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -284,7 +289,7 @@ class ChatScreenState extends State<ChatScreen> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
SizedBox(height: 16.0), // Відступ вниз
|
SizedBox(height: 16.0),
|
||||||
Visibility(
|
Visibility(
|
||||||
visible: showButtonsContainer,
|
visible: showButtonsContainer,
|
||||||
child: Container(
|
child: Container(
|
||||||
@ -372,7 +377,6 @@ class ChatScreenState extends State<ChatScreen> {
|
|||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
// Поле введення повідомлень
|
|
||||||
Container(
|
Container(
|
||||||
margin: const EdgeInsets.all(8.0),
|
margin: const EdgeInsets.all(8.0),
|
||||||
child: Row(
|
child: Row(
|
||||||
|
@ -31,6 +31,7 @@ dependencies:
|
|||||||
flutter:
|
flutter:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
flutter_spinkit: ^5.0.0
|
flutter_spinkit: ^5.0.0
|
||||||
|
logger: ^2.0.2+1
|
||||||
|
|
||||||
# The following adds the Cupertino Icons font to your application.
|
# The following adds the Cupertino Icons font to your application.
|
||||||
# Use with the CupertinoIcons class for iOS style icons.
|
# Use with the CupertinoIcons class for iOS style icons.
|
||||||
|
Loading…
Reference in New Issue
Block a user