From 4754a2b07c93bbe79a6fa846d74cd72f2fff6a56 Mon Sep 17 00:00:00 2001 From: stasex Date: Fri, 24 Nov 2023 00:16:34 +0200 Subject: [PATCH] fig for name changer --- lib/network/search_service.dart | 23 +++++++++++++++++++++++ lib/screens/chat.dart | 18 +++++++++++++++--- 2 files changed, 38 insertions(+), 3 deletions(-) diff --git a/lib/network/search_service.dart b/lib/network/search_service.dart index 3856656..71a7e25 100644 --- a/lib/network/search_service.dart +++ b/lib/network/search_service.dart @@ -37,6 +37,29 @@ class SearchService { String? wishlistId; + Future generateNameForPersonalWishlist(String wishlistId) async { + final options = MutationOptions( + document: gql(''' + mutation GenerateNameForPersonalWishlist(\$wishlistId: String!) { + generateNameForPersonalWishlist(wishlistId: \$wishlistId) { + id + name + } + } + '''), + variables: {'wishlistId': wishlistId}, + ); + + final result = await client.mutate(options); + + if (result != null && result.containsKey('generateNameForPersonalWishlist')) { + final name = result['generateNameForPersonalWishlist']['name']; + return name; + } + + return null; + } + Future startPersonalWishlist(String message) async { await _authenticationService.initialize(); diff --git a/lib/screens/chat.dart b/lib/screens/chat.dart index d021f6c..53f9afd 100644 --- a/lib/screens/chat.dart +++ b/lib/screens/chat.dart @@ -46,8 +46,8 @@ class MessageBubble extends StatelessWidget { print('View Product button pressed'); }, style: ElevatedButton.styleFrom( - primary: Colors.indigo, - onPrimary: Colors.white, + primary: Colors.indigo, + onPrimary: Colors.white, minimumSize: Size(300, 50) ), child: Text('View Product'), @@ -72,11 +72,13 @@ class ChatScreenState extends State { bool isSendButtonEnabled = false; bool showButtonsContainer = true; final ScrollController _scrollController = ScrollController(); + late Widget appBarTitle; String wishlistId = ''; void initState() { super.initState(); + appBarTitle = Text('New Chat'); _searchService.sseStream.listen((event) { _handleSSEMessage(Message(text: '${event.data}')); }); @@ -100,6 +102,15 @@ class ChatScreenState extends State { _scrollToBottom(); } + Future updateChatTitle(String wishlistId) async { + final wishlistName = await _searchService.generateNameForPersonalWishlist(wishlistId); + if (wishlistName != null) { + setState(() { + // Оновіть назву чату з результатом методу generateNameForPersonalWishlist + appBarTitle = Text(wishlistName); + }); + } + } Future _startPersonalWishlist(String message) async { setState(() { @@ -108,6 +119,7 @@ class ChatScreenState extends State { }); await _searchService.initializeAuthenticationService(); await _searchService.startPersonalWishlist(message); + updateChatTitle(_searchService.wishlistId.toString()); _scrollToBottom(); } @@ -172,7 +184,7 @@ class ChatScreenState extends State { Widget build(BuildContext context) { return Scaffold( appBar: AppBar( - title: Text('New Chat'), + title: appBarTitle, centerTitle: true, leading: IconButton( icon: Icon(Icons.arrow_back),