Implement adding/removing favorite from location info menu
This commit is contained in:
parent
cbe1bc8abd
commit
a1c8a5e25e
@ -63,7 +63,7 @@ class _FavoritesPage extends State<FavoritesPage> {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return SideMenu(
|
return SideMenu(
|
||||||
selectedIndex: 1,
|
selectedIndex: 1,
|
||||||
body: Container(
|
body: SingleChildScrollView(child: Container(
|
||||||
decoration: const BoxDecoration(color: Color(0xFFF9F9F9)),
|
decoration: const BoxDecoration(color: Color(0xFFF9F9F9)),
|
||||||
width: MediaQuery.of(context).size.width,
|
width: MediaQuery.of(context).size.width,
|
||||||
padding: const EdgeInsets.all(20.0),
|
padding: const EdgeInsets.all(20.0),
|
||||||
@ -106,6 +106,6 @@ class _FavoritesPage extends State<FavoritesPage> {
|
|||||||
)).toList(),
|
)).toList(),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -47,13 +47,14 @@ class MyHomePage extends StatefulWidget {
|
|||||||
|
|
||||||
class _MyHomePageState extends State<MyHomePage> {
|
class _MyHomePageState extends State<MyHomePage> {
|
||||||
final GlobalKey<ScaffoldState> _scaffoldKey = GlobalKey<ScaffoldState>();
|
final GlobalKey<ScaffoldState> _scaffoldKey = GlobalKey<ScaffoldState>();
|
||||||
|
final GlobalKey<ScaffoldState> _locationScaffoldKey = GlobalKey<ScaffoldState>();
|
||||||
List<Favorite> _favorites = [];
|
List<Favorite> _favorites = [];
|
||||||
LatLng? _selectedPoint;
|
LatLng? _selectedPoint;
|
||||||
|
|
||||||
void _showLocation(TapPosition _, LatLng point) async {
|
void _showLocation(TapPosition _, LatLng point) async {
|
||||||
setState(() => _selectedPoint = point);
|
setState(() => _selectedPoint = point);
|
||||||
|
|
||||||
final location;
|
final dynamic location;
|
||||||
try {
|
try {
|
||||||
final response = await http.get(
|
final response = await http.get(
|
||||||
Uri.parse('https://nominatim.openstreetmap.org/reverse.php?lat=${point.latitude}&lon=${point.longitude}&zoom=18&format=jsonv2'),
|
Uri.parse('https://nominatim.openstreetmap.org/reverse.php?lat=${point.latitude}&lon=${point.longitude}&zoom=18&format=jsonv2'),
|
||||||
@ -77,47 +78,94 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
barrierColor: Colors.black.withOpacity(0.3),
|
barrierColor: Colors.black.withOpacity(0.3),
|
||||||
context: context,
|
context: context,
|
||||||
builder: (builder) {
|
builder: (builder) {
|
||||||
return Wrap(children: [
|
return StatefulBuilder(builder: (BuildContext context, StateSetter setModalState) {
|
||||||
Container(
|
return Wrap(children: [
|
||||||
color: Colors.white,
|
Container(
|
||||||
padding: const EdgeInsets.all(20),
|
color: Colors.white,
|
||||||
width: MediaQuery.of(context).size.width,
|
padding: const EdgeInsets.all(20),
|
||||||
child: Row(children: [
|
width: MediaQuery.of(context).size.width,
|
||||||
Expanded(child: Column(
|
child: Row(children: [
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
Expanded(child: Column(
|
||||||
children: [
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
Text(location['name'], style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 24)),
|
children: [
|
||||||
const SizedBox(height: 10),
|
Text(location['name'], style: const TextStyle(fontWeight: FontWeight.bold, fontSize: 24)),
|
||||||
Text(location['display_name']),
|
const SizedBox(height: 10),
|
||||||
],
|
Text(location['display_name']),
|
||||||
)),
|
],
|
||||||
const Column(children: [
|
)),
|
||||||
IconButton(icon: Icon(Icons.star), iconSize: 32, onPressed: null),
|
Column(children: [
|
||||||
IconButton(icon: Icon(Icons.rate_review), iconSize: 32, onPressed: null),
|
IconButton(
|
||||||
|
icon: const Icon(Icons.star),
|
||||||
|
iconSize: 32,
|
||||||
|
color: _favorites.where((fav) => fav.lat == point.latitude && fav.lng == point.longitude).isEmpty ? Colors.grey : Colors.yellow,
|
||||||
|
onPressed: () => _toggleFavorite(point, location['name'], location['display_name'], setModalState, context)
|
||||||
|
),
|
||||||
|
const IconButton(icon: Icon(Icons.rate_review), iconSize: 32, onPressed: null),
|
||||||
|
]),
|
||||||
]),
|
]),
|
||||||
]),
|
),
|
||||||
),
|
]);
|
||||||
]);
|
});
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
setState(() => _selectedPoint = null);
|
setState(() => _selectedPoint = null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void _toggleFavorite(LatLng point, String name, String description, StateSetter setModalState, BuildContext context) async {
|
||||||
|
final messenger = ScaffoldMessenger.of(context);
|
||||||
|
final favorite = _favorites.where((fav) => fav.lat == point.latitude && fav.lng == point.longitude).firstOrNull;
|
||||||
|
|
||||||
|
if (!await api.isLoggedIn(context)) {
|
||||||
|
messenger.showSnackBar(const SnackBar(content: Text('You need to login to do that')));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!context.mounted) return;
|
||||||
|
|
||||||
|
if (favorite == null) {
|
||||||
|
if (await api.request(context, api.ApiService.app, 'POST', '/favorites', {'lat': point.latitude, 'lng': point.longitude}) == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
_fetchFavorites();
|
||||||
|
setModalState(() {});
|
||||||
|
|
||||||
|
messenger.showSnackBar(const SnackBar(content: Text('Added to favorites')));
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (await api.request(context, api.ApiService.app, 'DELETE', '/favorites/${favorite.id}', null) == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setState(() {
|
||||||
|
_favorites = _favorites.where((fav) => fav.id != favorite.id).toList();
|
||||||
|
});
|
||||||
|
setModalState(() {});
|
||||||
|
|
||||||
|
messenger.showSnackBar(const SnackBar(content: Text('Removed from favorites')));
|
||||||
|
}
|
||||||
|
|
||||||
|
void _fetchFavorites() async {
|
||||||
|
final response = await api.request(context, api.ApiService.app, 'GET', '/favorites', null);
|
||||||
|
if (response == null) return;
|
||||||
|
|
||||||
|
final List<dynamic> favorites = jsonDecode(response);
|
||||||
|
setState(() {
|
||||||
|
_favorites = favorites.map((favorite) => Favorite(favorite['id'], favorite['user_id'], favorite['lat'], favorite['lng'], favorite['name'], favorite['description'])).toList();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void didChangeDependencies() {
|
void didChangeDependencies() {
|
||||||
super.didChangeDependencies();
|
super.didChangeDependencies();
|
||||||
|
|
||||||
api.isLoggedIn(context).then((isLoggedIn) async {
|
api.isLoggedIn(context).then((isLoggedIn) {
|
||||||
if (!isLoggedIn || !mounted) return;
|
if (!isLoggedIn || !mounted) return;
|
||||||
|
|
||||||
final response = await api.request(context, api.ApiService.app, 'GET', '/favorites', null);
|
_fetchFavorites();
|
||||||
if (response == null) return;
|
|
||||||
|
|
||||||
final List<dynamic> favorites = jsonDecode(response);
|
|
||||||
setState(() {
|
|
||||||
_favorites = favorites.map((favorite) => Favorite(favorite['id'], favorite['user_id'], favorite['lat'], favorite['lng'], favorite['name'], favorite['description'])).toList();
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -136,6 +184,24 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
),
|
),
|
||||||
children: [
|
children: [
|
||||||
openStreetMapTileLayer,
|
openStreetMapTileLayer,
|
||||||
|
...(
|
||||||
|
_selectedPoint != null ? [
|
||||||
|
MarkerLayer(markers: [
|
||||||
|
Marker(
|
||||||
|
point: _selectedPoint!,
|
||||||
|
width: 30,
|
||||||
|
height: 50,
|
||||||
|
alignment: Alignment.center,
|
||||||
|
child: const Stack(
|
||||||
|
children: [
|
||||||
|
Icon(Icons.location_pin, size: 30, color: Colors.red),
|
||||||
|
Icon(Icons.location_on_outlined, size: 30, color: Colors.black),
|
||||||
|
]
|
||||||
|
),
|
||||||
|
)
|
||||||
|
]),
|
||||||
|
] : []
|
||||||
|
),
|
||||||
..._favorites.map((favorite) =>
|
..._favorites.map((favorite) =>
|
||||||
MarkerLayer(markers: [
|
MarkerLayer(markers: [
|
||||||
Marker(
|
Marker(
|
||||||
@ -152,24 +218,6 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
)
|
)
|
||||||
]),
|
]),
|
||||||
),
|
),
|
||||||
...(
|
|
||||||
_selectedPoint != null ? [
|
|
||||||
MarkerLayer(markers: [
|
|
||||||
Marker(
|
|
||||||
point: _selectedPoint!,
|
|
||||||
width: 30,
|
|
||||||
height: 50,
|
|
||||||
alignment: Alignment.center,
|
|
||||||
child: const Stack(
|
|
||||||
children: [
|
|
||||||
Icon(Icons.location_pin, size: 30, color: Colors.red),
|
|
||||||
Icon(Icons.location_on_outlined, size: 30, color: Colors.black),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
)
|
|
||||||
]),
|
|
||||||
] : []
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
Loading…
Reference in New Issue
Block a user