-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathmain.dart
More file actions
604 lines (568 loc) · 18.5 KB
/
main.dart
File metadata and controls
604 lines (568 loc) · 18.5 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:material_design_icons_flutter/material_design_icons_flutter.dart';
import 'package:stream_feed_flutter/stream_feed_flutter.dart';
/// Defines sample users used to log into the sample application with.
///
/// You can "log in" to this sample application as any of these users.
class SampleUser {
const SampleUser.groovinChip()
: id = 'GroovinChip',
firstName = 'Reuben',
lastName = 'Turner',
token =
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoiR3Jvb3ZpbkNoaXAifQ.IiCLY_1h3mNIuf_yIMSWYZefzsII5R1djNVYPZjcgXo',
profileImage = 'https://avatars.githubusercontent.com/u/4250470?v=4',
handle = '@GroovinChip';
const SampleUser.sacha()
: id = 'SachaArbonel',
firstName = 'Sacha',
lastName = 'Arbonel',
token =
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoiU2FjaGFBcmJvbmVsIn0.xAhGqzgGa1wPuUF74aHTHcJnGRf_OljoAY2gy87ll88',
profileImage = 'https://avatars.githubusercontent.com/u/18029834?v=4',
handle = '@sachaarbonel';
/// The user's id.
final String id;
/// The user's firstt name.
final String firstName;
/// The user's last name
final String lastName;
String get fullName => '$firstName $lastName';
/// The user's login token.
///
/// In a production application, this should be generated by a backend service.
final String token;
/// The user's avatar url.
final String profileImage;
/// The user's "@" handle.
final String handle;
Map<String, Object> toJson() {
return {
'id': id,
'first_name': firstName,
'last_name': lastName,
'full_name': fullName,
'handle': handle,
'profile_image': profileImage,
};
}
}
const sampleUsers = [
SampleUser.groovinChip(),
SampleUser.sacha(),
];
/// A simple convenience mixin for shorter code.
mixin StreamFeedMixin<T extends StatefulWidget> on State<T> {
FeedBloc get bloc => FeedProvider.of(context).bloc;
StreamFeedClient get client => bloc.client;
}
/// The entrypoint of our application.
///
/// How to run and use this application:
/// 1. Create a run configuration with the following arguments for `flutter run`:
/// --dart-define=key=q4vr7jwek7a4 --dart-define=user_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoiR3Jvb3ZpbkNoaXAifQ.IiCLY_1h3mNIuf_yIMSWYZefzsII5R1djNVYPZjcgXo.
/// Alternatively, you can run `flutter run` in your
/// terminal and pass the `--dart-define` arguments there.
/// 2. Select a user to log in by tapping the tile that represents them.
/// 3. Play around with the app!
void main() {
const apiKey = String.fromEnvironment('key');
final client = StreamFeedClient(apiKey);
runApp(
MobileApp(
client: client,
),
);
}
class MobileApp extends StatelessWidget {
const MobileApp({
Key? key,
required this.client,
}) : super(key: key);
final StreamFeedClient client;
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Stream Feed Flutter Sample',
theme: ThemeData(
primaryColor: const Color(0xff005fff),
appBarTheme: const AppBarTheme(
backgroundColor: Color(0xff005fff),
),
floatingActionButtonTheme: const FloatingActionButtonThemeData(
backgroundColor: Color(0xff005fff),
),
bottomNavigationBarTheme: const BottomNavigationBarThemeData(
selectedItemColor: Color(0xff005fff),
),
textTheme: GoogleFonts.interTextTheme(
Theme.of(context).textTheme,
),
inputDecorationTheme: InputDecorationTheme(
border: const UnderlineInputBorder(
borderSide: BorderSide(
color: Color(0xff005fff),
),
),
focusedBorder: const UnderlineInputBorder(
borderSide: BorderSide(
color: Color(0xff005fff),
),
),
enabledBorder: const UnderlineInputBorder(
borderSide: BorderSide(
color: Color(0xff005fff),
),
),
filled: true,
fillColor: Colors.grey.shade300,
),
elevatedButtonTheme: ElevatedButtonThemeData(
style: ElevatedButton.styleFrom(
primary: const Color(0xff005fff),
),
),
),
builder: (context, child) {
return StreamFeed(
bloc: FeedBloc(client: client),
child: child!,
);
},
themeMode: ThemeMode.system,
home: const LoginScreen(),
debugShowCheckedModeBanner: false,
);
}
}
class LoginScreen extends StatefulWidget {
const LoginScreen({Key? key}) : super(key: key);
@override
State<LoginScreen> createState() => _LoginScreenState();
}
class _LoginScreenState extends State<LoginScreen> with StreamFeedMixin {
bool _loggingIn = false;
Future<void> login(SampleUser user) async {
setState(() => _loggingIn = true);
try {
await client.setUser(
User(
id: user.id,
data: user.toJson(),
),
Token(user.token),
);
final timeline = client.flatFeed('timeline');
final currentUserFeed = client.flatFeed('user', user.id);
await timeline.follow(currentUserFeed);
Navigator.of(context).pushReplacement(
MaterialPageRoute(
builder: (_) => const MyHomePage(),
),
);
} catch (e) {
debugPrint(e.toString());
setState(() => _loggingIn = false);
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Image.asset(
'assets/stream_logo.png',
height: 50,
),
const SizedBox(height: 16),
Text(
'Welcome to the Stream Feed Flutter Sample App!',
style: Theme.of(context).textTheme.headline6,
textAlign: TextAlign.center,
),
const SizedBox(height: 16),
const Text('Please choose a user to sign in as'),
const SizedBox(height: 8),
for (final sampleUser in sampleUsers)
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
child: Card(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
ListTile(
leading: CircleAvatar(
backgroundImage:
NetworkImage(sampleUser.profileImage),
),
title: Text(sampleUser.fullName),
subtitle: Text(sampleUser.handle),
onTap: () => login(sampleUser),
),
],
),
),
),
const SizedBox(height: 16),
AnimatedSwitcher(
duration: const Duration(milliseconds: 100),
child: _loggingIn
? const CircularProgressIndicator()
: const SizedBox.shrink(),
),
],
),
),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({
Key? key,
}) : super(key: key);
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> with StreamFeedMixin {
int _pageIndex = 0;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).canvasColor,
elevation: 0,
actionsIconTheme: Theme.of(context).iconTheme,
titleTextStyle: Theme.of(context).textTheme.headline6,
leading: Padding(
padding: const EdgeInsets.all(8),
child: Builder(builder: (context) {
return Avatar(
user: User(
data: bloc.currentUser?.data,
),
onUserTap: (user) {
Scaffold.of(context).openDrawer();
},
);
}),
),
title: const Text('Timeline'),
actions: [
IconButton(
icon: const Icon(Icons.search),
onPressed: () => showSearch(
context: context,
delegate: UserSearchDelegate(),
),
),
],
),
drawer: Drawer(
child: SafeArea(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Avatar(
user: User(
data: bloc.currentUser?.data,
),
),
const SizedBox(height: 8),
Text(
bloc.currentUser!.data!['full_name'].toString(),
style: Theme.of(context).textTheme.headline6,
),
const SizedBox(height: 4),
Text('${bloc.currentUser?.data!['handle']}'),
const SizedBox(height: 8),
Row(
children: [
GestureDetector(
onTap: () => Navigator.of(context).push(
MaterialPageRoute(
builder: (_) => const FollowingScreen(),
),
),
child: Text(
'${bloc.currentUser?.followingCount ?? 0} Following'),
),
const SizedBox(width: 8),
GestureDetector(
onTap: () => Navigator.of(context).push(
MaterialPageRoute(
builder: (_) => const FollowersScreen(),
),
),
child: Text(
'${bloc.currentUser?.followersCount ?? 0} Followers'),
),
],
),
const Divider(),
ListTile(
contentPadding: EdgeInsets.zero,
minLeadingWidth: 0,
leading: const Icon(Icons.person_outline),
title: const Text('Profile'),
onTap: () {
Navigator.of(context).pop();
Navigator.of(context).push(
MaterialPageRoute(
builder: (_) => const ProfileScreen(),
),
);
},
),
const Divider(),
ListTile(
contentPadding: EdgeInsets.zero,
minLeadingWidth: 0,
leading: const Icon(Icons.exit_to_app_outlined),
title: const Text('Log out'),
onTap: () {
bloc.clearAllActivities(['user', 'timeline']);
Navigator.of(context).pushAndRemoveUntil(
MaterialPageRoute(
builder: (_) => const LoginScreen(),
),
(route) => false,
);
},
),
],
),
),
),
),
body: IndexedStack(
index: _pageIndex,
children: [
FlatFeedListView(
flags: EnrichmentFlags()
.withReactionCounts()
.withOwnChildren()
.withOwnReactions(),
feedGroup: 'timeline',
nameJsonKey: 'full_name',
userId: bloc.currentUser?.id,
onHashtagTap: (hashtag) => debugPrint('hashtag pressed: $hashtag'),
onUserTap: (user) => Navigator.of(context).push(
MaterialPageRoute(
builder: (_) => ProfileScreen(
user: user!,
),
),
),
onMentionTap: (mention) => debugPrint('hashtag pressed: $mention'),
),
const Center(
child: Text('Notifications'),
),
],
),
floatingActionButton: FloatingActionButton(
child: const Icon(Icons.edit_outlined),
onPressed: () => Navigator.of(context).push(
MaterialPageRoute(
builder: (_) => ComposeScreen(
textEditingController: TextEditingController(),
),
fullscreenDialog: true,
),
),
),
bottomNavigationBar: BottomNavigationBar(
currentIndex: _pageIndex,
onTap: (value) {
setState(() => _pageIndex = value);
},
items: const [
BottomNavigationBarItem(
icon: Icon(Icons.timeline),
label: 'Timeline',
),
BottomNavigationBarItem(
icon: Icon(MdiIcons.bell),
label: 'Notifications',
),
],
),
);
}
}
class UserSearchDelegate extends SearchDelegate {
@override
List<Widget>? buildActions(BuildContext context) {
return [];
}
@override
Widget buildLeading(BuildContext context) {
return IconButton(
icon: const Icon(Icons.arrow_back),
onPressed: () => close(context, null),
);
}
@override
Widget buildResults(BuildContext context) {
return FutureBuilder<StreamUser>(
future: FeedProvider.of(context).bloc.client.user(query).get(),
builder: (context, snapshot) {
if (!snapshot.hasData) {
return const Center(
child: CircularProgressIndicator(),
);
} else {
return ListTile(
leading: CircleAvatar(
backgroundImage: NetworkImage(
snapshot.data!.data!['profile_image'].toString()),
),
title: Text(snapshot.data!.id),
onTap: () => Navigator.of(context).pushReplacement(
MaterialPageRoute(
builder: (_) => ProfileScreen(
user: User(
id: snapshot.data!.id,
data: snapshot.data!.data,
),
),
),
),
);
}
},
);
}
@override
Widget buildSuggestions(BuildContext context) {
return FutureBuilder<StreamUser>(
future: FeedProvider.of(context).bloc.client.user(query).get(),
builder: (context, snapshot) {
if (!snapshot.hasData) {
return const Center(
child:
Text('User not found. Type an exact username to find a user.'),
);
} else {
return ListTile(
leading: CircleAvatar(
backgroundImage: NetworkImage(
snapshot.data!.data!['profile_image'].toString()),
),
title: Text(snapshot.data!.id),
onTap: () => Navigator.of(context).pushReplacement(
MaterialPageRoute(
builder: (_) => ProfileScreen(
user: User(
id: snapshot.data!.id,
data: snapshot.data!.data,
),
),
),
),
);
}
},
);
}
}
class ProfileScreen extends StatefulWidget {
const ProfileScreen({
Key? key,
this.user,
}) : super(key: key);
final User? user;
@override
_ProfileScreenState createState() => _ProfileScreenState();
}
class _ProfileScreenState extends State<ProfileScreen> with StreamFeedMixin {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
centerTitle: false,
elevation: 0,
iconTheme: Theme.of(context).iconTheme,
backgroundColor: Theme.of(context).canvasColor,
title: Text(
widget.user?.id ?? bloc.currentUser!.id,
style: const TextStyle(
color: Colors.black,
),
),
),
body: CustomScrollView(
slivers: [
SliverToBoxAdapter(
child: SizedBox(
width: double.infinity,
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
const SizedBox(height: 8),
CircleAvatar(
radius: 50,
backgroundImage: NetworkImage(
'${widget.user?.data?['profile_image'] ?? bloc.currentUser!.data!['profile_image']}'),
),
const SizedBox(height: 8),
Text(
'${widget.user?.data?['full_name'] ?? bloc.currentUser!.data!['full_name']}',
style: Theme.of(context).textTheme.headline6,
),
const SizedBox(height: 8),
FollowStatsWidget(user: widget.user),
if (widget.user != null &&
widget.user!.id != bloc.currentUser!.id) ...[
Row(
children: [
const SizedBox(width: 16),
Expanded(
child: FollowButton(
user: widget.user,
),
),
const SizedBox(width: 8),
Expanded(
child: OutlinedButton(
child: const Text('Message'),
onPressed: () {},
),
),
const SizedBox(width: 16),
],
),
const Divider(),
],
],
),
),
),
SliverFillRemaining(
child: FlatFeedListView(
scrollPhysics: const NeverScrollableScrollPhysics(),
flags: EnrichmentFlags()
.withReactionCounts()
.withOwnChildren()
.withOwnReactions(),
feedGroup: 'user',
nameJsonKey: 'full_name',
userId: widget.user?.id ?? bloc.currentUser!.id,
onHashtagTap: (hashtag) =>
debugPrint('hashtag pressed: $hashtag'),
onUserTap: (user) =>
debugPrint('hashtag pressed: ${user!.toJson()}'),
onMentionTap: (mention) =>
debugPrint('hashtag pressed: $mention'),
),
),
],
),
);
}
}