mirror of
https://github.com/Shchoholiev/shopping-assistant-mobile-client.git
synced 2025-04-05 00:59:38 +00:00
SA-178 cards screen created
This commit is contained in:
parent
bba9d575e7
commit
19813c2f66
@ -107,36 +107,3 @@ class _MyAppState extends State<MyApp> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Use to seed wishlists for new user
|
|
||||||
// final ApiClient client = ApiClient();
|
|
||||||
//
|
|
||||||
// const String startPersonalWishlistMutations = r'''
|
|
||||||
// mutation startPersonalWishlist($dto: WishlistCreateDtoInput!) {
|
|
||||||
// startPersonalWishlist(dto: $dto) {
|
|
||||||
// createdById, id, name, type
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// ''';
|
|
||||||
//
|
|
||||||
// MutationOptions mutationOptions = MutationOptions(
|
|
||||||
// document: gql(startPersonalWishlistMutations),
|
|
||||||
// variables: const <String, dynamic>{
|
|
||||||
// 'dto': {
|
|
||||||
// 'firstMessageText': 'Gaming mechanical keyboard',
|
|
||||||
// 'type': 'Product'
|
|
||||||
// },
|
|
||||||
// });
|
|
||||||
//
|
|
||||||
// var client = ApiClient();
|
|
||||||
// // for (var i = 0; i < 5; i++) {
|
|
||||||
// // client
|
|
||||||
// // .mutate(mutationOptions)
|
|
||||||
// // .then((result) => print(jsonEncode(result)));
|
|
||||||
// // sleep(Duration(milliseconds: 100));
|
|
||||||
// // }
|
|
||||||
//
|
|
@ -22,6 +22,8 @@ SearchEventType type = SearchEventType.message;
|
|||||||
class SearchService {
|
class SearchService {
|
||||||
final ApiClient client = ApiClient();
|
final ApiClient client = ApiClient();
|
||||||
|
|
||||||
|
List<String> products = [];
|
||||||
|
|
||||||
late final _sseController = StreamController<ServerSentEvent>();
|
late final _sseController = StreamController<ServerSentEvent>();
|
||||||
|
|
||||||
Stream<ServerSentEvent> get sseStream => _sseController.stream;
|
Stream<ServerSentEvent> get sseStream => _sseController.stream;
|
||||||
@ -92,6 +94,11 @@ class SearchService {
|
|||||||
|
|
||||||
final event = ServerSentEvent(chunk.event, cleanedMessage);
|
final event = ServerSentEvent(chunk.event, cleanedMessage);
|
||||||
type = chunk.event;
|
type = chunk.event;
|
||||||
|
if(type == SearchEventType.product) {
|
||||||
|
String pattern = r'[\\\"]';
|
||||||
|
String product = event.data.replaceAll(RegExp(pattern), '');
|
||||||
|
products.add(product);
|
||||||
|
}
|
||||||
_sseController.add(event);
|
_sseController.add(event);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
60
lib/screens/cards.dart
Normal file
60
lib/screens/cards.dart
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class Cards extends StatefulWidget {
|
||||||
|
final String wishlistName;
|
||||||
|
List<String> products = [];
|
||||||
|
|
||||||
|
Cards({required this.wishlistName, required this.products});
|
||||||
|
|
||||||
|
@override
|
||||||
|
_CardsState createState() => _CardsState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _CardsState extends State<Cards> {
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Scaffold(
|
||||||
|
appBar: AppBar(
|
||||||
|
title: Text(widget.wishlistName),
|
||||||
|
centerTitle: true,
|
||||||
|
),
|
||||||
|
body: Center(
|
||||||
|
child: Stack(
|
||||||
|
children: [
|
||||||
|
// Back Card with increased rotation effect
|
||||||
|
Positioned(
|
||||||
|
left: 10, // Adjust the left position as needed
|
||||||
|
child: Transform.rotate(
|
||||||
|
angle: -5 * 3.1415926535 / 180, // Rotation angle
|
||||||
|
child: Container(
|
||||||
|
width: 400, // Increased width
|
||||||
|
height: 600, // Increased height
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
borderRadius: BorderRadius.circular(10),
|
||||||
|
color: Colors.white,
|
||||||
|
border: Border.all(
|
||||||
|
color: Color(0xFF009FFF),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
// Main Card
|
||||||
|
Container(
|
||||||
|
width: 300, // Set the width of the main card
|
||||||
|
height: 500, // Set the height of the main card
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
borderRadius: BorderRadius.circular(10),
|
||||||
|
color: Colors.white,
|
||||||
|
border: Border.all(
|
||||||
|
color: Color(0xFF009FFF),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -3,6 +3,7 @@ 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:logger/logger.dart';
|
||||||
import 'package:shopping_assistant_mobile_client/network/search_service.dart';
|
import 'package:shopping_assistant_mobile_client/network/search_service.dart';
|
||||||
|
import 'package:shopping_assistant_mobile_client/screens/cards.dart';
|
||||||
|
|
||||||
class Message {
|
class Message {
|
||||||
final String text;
|
final String text;
|
||||||
@ -39,22 +40,11 @@ class MessageBubble extends StatelessWidget {
|
|||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
message.trim(),
|
message.trim(),
|
||||||
style: TextStyle(color: isOutgoing ? Colors.white : Colors.black,
|
style: TextStyle(
|
||||||
fontSize: 18.0
|
color: isOutgoing ? Colors.white : Colors.black,
|
||||||
|
fontSize: 18.0,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
if (isProduct)
|
|
||||||
ElevatedButton(
|
|
||||||
onPressed: () {
|
|
||||||
print('View Product button pressed');
|
|
||||||
},
|
|
||||||
style: ElevatedButton.styleFrom(
|
|
||||||
primary: Colors.indigo,
|
|
||||||
onPrimary: Colors.white,
|
|
||||||
minimumSize: Size(300, 50)
|
|
||||||
),
|
|
||||||
child: Text('View Product'),
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@ -151,6 +141,7 @@ class ChatScreenState extends State<ChatScreen> {
|
|||||||
if (wishlistName != null) {
|
if (wishlistName != null) {
|
||||||
setState(() {
|
setState(() {
|
||||||
appBarTitle = Text(wishlistName, style: TextStyle(fontSize: 18.0));
|
appBarTitle = Text(wishlistName, style: TextStyle(fontSize: 18.0));
|
||||||
|
this.widget.wishlistName = wishlistName;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -181,6 +172,14 @@ class ChatScreenState extends State<ChatScreen> {
|
|||||||
_scrollToBottom();
|
_scrollToBottom();
|
||||||
|
|
||||||
setState(() {
|
setState(() {
|
||||||
|
if(_searchService.checkerForProduct()){
|
||||||
|
Navigator.push(
|
||||||
|
context,
|
||||||
|
MaterialPageRoute(
|
||||||
|
builder: (context) => Cards(wishlistName: this.widget.wishlistName, products: this._searchService.products,),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
isWaitingForResponse = false;
|
isWaitingForResponse = false;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
26
pubspec.lock
26
pubspec.lock
@ -45,10 +45,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: collection
|
name: collection
|
||||||
sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687
|
sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.17.2"
|
version: "1.18.0"
|
||||||
connectivity_plus:
|
connectivity_plus:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@ -308,10 +308,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: meta
|
name: meta
|
||||||
sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3"
|
sha256: a6e590c838b18133bb482a2745ad77c5bb7715fb0451209e1a7567d416678b8e
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.9.1"
|
version: "1.10.0"
|
||||||
nm:
|
nm:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@ -497,18 +497,18 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: stack_trace
|
name: stack_trace
|
||||||
sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5
|
sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.11.0"
|
version: "1.11.1"
|
||||||
stream_channel:
|
stream_channel:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: stream_channel
|
name: stream_channel
|
||||||
sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8"
|
sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.1"
|
version: "2.1.2"
|
||||||
string_scanner:
|
string_scanner:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@ -529,10 +529,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: test_api
|
name: test_api
|
||||||
sha256: "75760ffd7786fffdfb9597c35c5b27eaeec82be8edfb6d71d32651128ed7aab8"
|
sha256: "5c2f730018264d276c20e4f1503fd1308dfbbae39ec8ee63c5236311ac06954b"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.6.0"
|
version: "0.6.1"
|
||||||
typed_data:
|
typed_data:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@ -649,10 +649,10 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: web
|
name: web
|
||||||
sha256: dc8ccd225a2005c1be616fe02951e2e342092edf968cf0844220383757ef8f10
|
sha256: afe077240a270dcfd2aafe77602b4113645af95d0ad31128cc02bce5ac5d5152
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.1.4-beta"
|
version: "0.3.0"
|
||||||
web_socket_channel:
|
web_socket_channel:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@ -694,5 +694,5 @@ packages:
|
|||||||
source: hosted
|
source: hosted
|
||||||
version: "3.1.2"
|
version: "3.1.2"
|
||||||
sdks:
|
sdks:
|
||||||
dart: ">=3.1.4 <4.0.0"
|
dart: ">=3.2.0-194.0.dev <4.0.0"
|
||||||
flutter: ">=3.13.0"
|
flutter: ">=3.13.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user