-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathrestaurant_page.dart
More file actions
159 lines (140 loc) · 4.64 KB
/
restaurant_page.dart
File metadata and controls
159 lines (140 loc) · 4.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/*
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import 'dart:math';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/material.dart';
import 'data/restaurant_provider.dart';
import 'model/restaurant.dart';
import 'model/review.dart';
import 'widgets/dialogs/review_create.dart';
import 'widgets/restaurant_page_details.dart';
import 'widgets/restaurant_page_review_list.dart';
class RestaurantPage extends StatefulWidget {
static const route = '/restaurant';
final Restaurant restaurant;
const RestaurantPage({super.key, required this.restaurant});
@override
State<RestaurantPage> createState() => _RestaurantPageState();
}
class _RestaurantPageState extends State<RestaurantPage> {
_RestaurantPageState() {
_initAsyncData();
}
void _initAsyncData() async {
// widget is null or something
final reviews = await _firestoreRestaurantProvider
.getReviewsForRestaurant("wARqBbQnTHaxV8Tig7FM");
setState(() {
_isLoading = false;
_user = FirebaseAuth.instance.currentUser!;
_reviews = reviews;
});
}
late final User _user;
late List<Review> _reviews;
bool _isLoading = true;
final FirestoreRestaurantProvider _firestoreRestaurantProvider =
FirestoreRestaurantProvider();
void _onCreateReviewPressed(BuildContext context) async {
final newReview = await showDialog<Review>(
context: context,
builder: (BuildContext context) => ReviewCreateDialog(
userId: _user.uid,
userName: _user.displayName ?? 'Anonymous User',
),
);
if (newReview != null) {
// Save the review
await _firestoreRestaurantProvider.addReview(
restaurantId: widget.restaurant.id!,
review: newReview,
);
}
_updateReviews();
}
void _onAddRandomReviewsPressed() async {
// Await adding a random number of random reviews
final numReviews = Random().nextInt(5) + 5;
for (var i = 0; i < numReviews; i++) {
await _firestoreRestaurantProvider.addReview(
restaurantId: widget.restaurant.id!,
review: Review.random(
userId: _user.uid,
userName: _user.displayName ?? 'Anonymous User',
),
);
}
_updateReviews();
}
void _updateReviews() async {
final reviews = await _firestoreRestaurantProvider
.getReviewsForRestaurant(widget.restaurant.id!);
setState(() {
_reviews = reviews;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.restaurant.name),
),
floatingActionButton: _isLoading
? null
: FloatingActionButton(
tooltip: 'Tap to add a review',
onPressed: () => _onCreateReviewPressed(context),
child: const Icon(Icons.add),
),
body: Center(
child: Container(
color: Colors.white,
constraints: const BoxConstraints(maxWidth: 900),
alignment: Alignment.center,
child: Column(
children: [
RestaurantDetails(restaurant: widget.restaurant),
const Divider(thickness: 1),
_isLoading
? const Center(child: LinearProgressIndicator())
: RestaurantPageReviewList(reviews: _reviews),
if (!_isLoading && _reviews.isEmpty)
Padding(
padding: const EdgeInsets.only(top: 24.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
const Text(
'There are no reviews yet! Generate random reviews with button.',
),
ElevatedButton(
onPressed: _onAddRandomReviewsPressed,
child: const Text('Add Random Reviews'),
)
],
),
),
],
),
),
),
);
}
}
class RestaurantPageArguments {
final Restaurant restaurant;
RestaurantPageArguments(this.restaurant);
}