mirror of
https://github.com/Shchoholiev/shopping-assistant-mobile-client.git
synced 2025-04-05 00:59:38 +00:00
Merge branch 'develop' of https://github.com/Shchoholiev/shopping-assistant-mobile-client into develop
This commit is contained in:
commit
58be832907
@ -18,7 +18,7 @@ class MyApp extends StatefulWidget {
|
|||||||
|
|
||||||
static List<Widget> _widgetOptions = <Widget>[
|
static List<Widget> _widgetOptions = <Widget>[
|
||||||
WishlistsScreen(),
|
WishlistsScreen(),
|
||||||
ChatScreen(wishlistId: '', wishlistName: 'New Chat',),
|
ChatScreen(wishlistId: '', wishlistName: 'New Chat', openedFromBottomBar: true),
|
||||||
Text(''),
|
Text(''),
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ class SearchService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool checkerForSuggestion() {
|
bool checkerForSuggestion() {
|
||||||
return type == SearchEventType.product;
|
return type == SearchEventType.suggestion;
|
||||||
}
|
}
|
||||||
|
|
||||||
String? wishlistId;
|
String? wishlistId;
|
||||||
|
@ -65,8 +65,9 @@ class MessageBubble extends StatelessWidget {
|
|||||||
class ChatScreen extends StatefulWidget {
|
class ChatScreen extends StatefulWidget {
|
||||||
String wishlistId;
|
String wishlistId;
|
||||||
String wishlistName;
|
String wishlistName;
|
||||||
|
bool openedFromBottomBar;
|
||||||
|
|
||||||
ChatScreen({Key? key, required this.wishlistId, required this.wishlistName}) : super(key: key);
|
ChatScreen({Key? key, required this.wishlistId, required this.wishlistName, required this.openedFromBottomBar}) : super(key: key);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
State createState() => ChatScreenState();
|
State createState() => ChatScreenState();
|
||||||
@ -74,18 +75,23 @@ class ChatScreen extends StatefulWidget {
|
|||||||
|
|
||||||
class ChatScreenState extends State<ChatScreen> {
|
class ChatScreenState extends State<ChatScreen> {
|
||||||
var logger = Logger();
|
var logger = Logger();
|
||||||
final SearchService _searchService = SearchService();
|
SearchService _searchService = SearchService();
|
||||||
List<Message> messages = [];
|
List<Message> messages = [];
|
||||||
final TextEditingController _messageController = TextEditingController();
|
TextEditingController _messageController = TextEditingController();
|
||||||
|
List<String> suggestions = [];
|
||||||
|
bool showBackButton = false;
|
||||||
bool buttonsVisible = true;
|
bool buttonsVisible = true;
|
||||||
bool isSendButtonEnabled = false;
|
bool isSendButtonEnabled = false;
|
||||||
bool showButtonsContainer = true;
|
bool showButtonsContainer = true;
|
||||||
bool isWaitingForResponse = false;
|
bool isWaitingForResponse = false;
|
||||||
final ScrollController _scrollController = ScrollController();
|
ScrollController _scrollController = ScrollController();
|
||||||
late Widget appBarTitle;
|
late Widget appBarTitle;
|
||||||
|
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
|
if (widget.openedFromBottomBar) {
|
||||||
|
_resetState();
|
||||||
|
}
|
||||||
appBarTitle = Text('New Chat', style: TextStyle(fontSize: 18.0));
|
appBarTitle = Text('New Chat', style: TextStyle(fontSize: 18.0));
|
||||||
_searchService.sseStream.listen((event) {
|
_searchService.sseStream.listen((event) {
|
||||||
_handleSSEMessage(Message(text: '${event.data}'));
|
_handleSSEMessage(Message(text: '${event.data}'));
|
||||||
@ -94,11 +100,27 @@ class ChatScreenState extends State<ChatScreen> {
|
|||||||
if(!widget.wishlistId.isEmpty)
|
if(!widget.wishlistId.isEmpty)
|
||||||
{
|
{
|
||||||
_loadPreviousMessages();
|
_loadPreviousMessages();
|
||||||
|
showBackButton = true;
|
||||||
showButtonsContainer = false;
|
showButtonsContainer = false;
|
||||||
buttonsVisible = false;
|
buttonsVisible = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void _resetState() {
|
||||||
|
widget.wishlistId = '';
|
||||||
|
widget.wishlistName = '';
|
||||||
|
_searchService = SearchService();
|
||||||
|
messages = [];
|
||||||
|
_messageController = TextEditingController();
|
||||||
|
showBackButton = false;
|
||||||
|
buttonsVisible = true;
|
||||||
|
isSendButtonEnabled = false;
|
||||||
|
showButtonsContainer = true;
|
||||||
|
isWaitingForResponse = false;
|
||||||
|
_scrollController = ScrollController();
|
||||||
|
appBarTitle = const Text('New Chat', style: TextStyle(fontSize: 18.0));
|
||||||
|
}
|
||||||
|
|
||||||
Future<void> _loadPreviousMessages() async {
|
Future<void> _loadPreviousMessages() async {
|
||||||
final pageNumber = 1;
|
final pageNumber = 1;
|
||||||
final pageSize = 200;
|
final pageSize = 200;
|
||||||
@ -127,19 +149,30 @@ 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();
|
||||||
bool checker = false;
|
if(message.isSuggestion){
|
||||||
|
suggestions.add(message.text);
|
||||||
|
}
|
||||||
logger.d("Product status: ${message.isProduct}");
|
logger.d("Product status: ${message.isProduct}");
|
||||||
if (lastMessage != null && lastMessage.role != "User" && message.role != "User") {
|
logger.d("Suggestion status: ${message.isSuggestion}");
|
||||||
|
logger.d("Message text: ${message.text}");
|
||||||
|
if (lastMessage != null && lastMessage.role != "User" && message.role != "User" && !message.isSuggestion) {
|
||||||
|
String fullMessageText = lastMessage.text + message.text;
|
||||||
|
fullMessageText = fullMessageText.replaceAll("\\n", "");
|
||||||
|
logger.d("fullMessageText: $fullMessageText");
|
||||||
final updatedMessage = Message(
|
final updatedMessage = Message(
|
||||||
text: "${lastMessage.text}${message.text}",
|
text: fullMessageText,
|
||||||
role: "Application",
|
role: "Application",
|
||||||
isProduct: message.isProduct);
|
isProduct: message.isProduct);
|
||||||
messages.removeLast();
|
messages.removeLast();
|
||||||
messages.add(updatedMessage);
|
messages.add(updatedMessage);
|
||||||
} else {
|
} else {
|
||||||
messages.add(message);
|
String messageText = message.text.replaceAll("\\n", "");
|
||||||
|
if (!message.isSuggestion) {
|
||||||
|
messages.add(Message(text: messageText, role: message.role, isProduct: message.isProduct, isSuggestion: message.isSuggestion));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
setState(() {
|
setState(() {
|
||||||
isWaitingForResponse = false;
|
isWaitingForResponse = false;
|
||||||
});
|
});
|
||||||
@ -202,9 +235,17 @@ class ChatScreenState extends State<ChatScreen> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_messageController.clear();
|
_messageController.clear();
|
||||||
|
suggestions.clear();
|
||||||
_scrollToBottom();
|
_scrollToBottom();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void _handleSuggestion(String suggestion) {
|
||||||
|
_messageController.text = suggestion;
|
||||||
|
_sendMessage();
|
||||||
|
suggestions.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void _scrollToBottom() {
|
void _scrollToBottom() {
|
||||||
_scrollController.animateTo(
|
_scrollController.animateTo(
|
||||||
_scrollController.position.maxScrollExtent,
|
_scrollController.position.maxScrollExtent,
|
||||||
@ -233,18 +274,60 @@ class ChatScreenState extends State<ChatScreen> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Widget _generateSuggestionButtons() {
|
||||||
|
return Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsets.symmetric(horizontal: 16, vertical: 8),
|
||||||
|
child: Text(
|
||||||
|
'Several possible options',
|
||||||
|
style: TextStyle(fontSize: 16, fontWeight: FontWeight.bold, color: Colors.grey),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SingleChildScrollView(
|
||||||
|
scrollDirection: Axis.horizontal,
|
||||||
|
child: Row(
|
||||||
|
children: suggestions.map((suggestion) {
|
||||||
|
return Padding(
|
||||||
|
padding: EdgeInsets.symmetric(horizontal: 8, vertical: 5),
|
||||||
|
child: ElevatedButton(
|
||||||
|
onPressed: () {
|
||||||
|
_handleSuggestion(suggestion);
|
||||||
|
},
|
||||||
|
style: ElevatedButton.styleFrom(
|
||||||
|
padding: EdgeInsets.symmetric(horizontal: 30, vertical: 16),
|
||||||
|
shape: RoundedRectangleBorder(
|
||||||
|
borderRadius: BorderRadius.circular(10),
|
||||||
|
),
|
||||||
|
primary: Colors.white,
|
||||||
|
onPrimary: Colors.blue,
|
||||||
|
side: BorderSide(color: Colors.blue, width: 2.0),
|
||||||
|
),
|
||||||
|
child: Text(suggestion, style: TextStyle(color: Colors.black)),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}).toList(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
title: appBarTitle,
|
title: appBarTitle,
|
||||||
centerTitle: true,
|
centerTitle: true,
|
||||||
leading: IconButton(
|
leading: showBackButton
|
||||||
icon: Icon(Icons.arrow_back),
|
? IconButton(
|
||||||
onPressed: () {
|
icon: Icon(Icons.arrow_back),
|
||||||
print('Back button pressed');
|
onPressed: () {
|
||||||
},
|
Navigator.of(context).pop();
|
||||||
),
|
},
|
||||||
|
)
|
||||||
|
: null,
|
||||||
),
|
),
|
||||||
body: Column(
|
body: Column(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
@ -366,24 +449,8 @@ class ChatScreenState extends State<ChatScreen> {
|
|||||||
color: Colors.blue,
|
color: Colors.blue,
|
||||||
size: 25.0,
|
size: 25.0,
|
||||||
),
|
),
|
||||||
if (messages.any((message) => message.isSuggestion))
|
if (suggestions.isNotEmpty)
|
||||||
Container(
|
_generateSuggestionButtons(),
|
||||||
padding: EdgeInsets.all(8.0),
|
|
||||||
color: Colors.grey[300],
|
|
||||||
child: Row(
|
|
||||||
children: [
|
|
||||||
Icon(Icons.lightbulb),
|
|
||||||
SizedBox(width: 8.0),
|
|
||||||
Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: messages
|
|
||||||
.where((message) => message.isSuggestion)
|
|
||||||
.map((message) => Text(message.text))
|
|
||||||
.toList(),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Container(
|
Container(
|
||||||
margin: const EdgeInsets.all(8.0),
|
margin: const EdgeInsets.all(8.0),
|
||||||
child: Row(
|
child: Row(
|
||||||
@ -403,6 +470,7 @@ class ChatScreenState extends State<ChatScreen> {
|
|||||||
contentPadding: EdgeInsets.symmetric(vertical: 20.0),
|
contentPadding: EdgeInsets.symmetric(vertical: 20.0),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
IconButton(
|
IconButton(
|
||||||
|
@ -218,7 +218,7 @@ class _WishlistItemState extends State<WishlistItem> {
|
|||||||
Navigator.push(
|
Navigator.push(
|
||||||
context,
|
context,
|
||||||
MaterialPageRoute(
|
MaterialPageRoute(
|
||||||
builder: (context) => ChatScreen(wishlistId: widget._wishlist.id, wishlistName: widget._wishlist.name),
|
builder: (context) => ChatScreen(wishlistId: widget._wishlist.id, wishlistName: widget._wishlist.name, openedFromBottomBar: false),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user