-
Notifications
You must be signed in to change notification settings - Fork 22
/
ai_playlist_generator.dart
742 lines (677 loc) · 20.1 KB
/
ai_playlist_generator.dart
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
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
import 'dart:async';
import 'package:flutter/foundation.dart'
show TargetPlatform, defaultTargetPlatform;
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:go_router/go_router.dart';
import 'package:smooth_sheets/smooth_sheets.dart';
void main() {
// Make the system navigation bar transparent on Android.
if (defaultTargetPlatform == TargetPlatform.android) {
WidgetsFlutterBinding.ensureInitialized();
SystemChrome.setEnabledSystemUIMode(
SystemUiMode.edgeToEdge,
overlays: [SystemUiOverlay.top],
).then((_) {
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.dark.copyWith(
systemNavigationBarColor: Colors.transparent,
systemNavigationBarDividerColor: Colors.transparent,
));
});
}
runApp(const _AiPlaylistGeneratorExample());
}
class _AiPlaylistGeneratorExample extends StatelessWidget {
const _AiPlaylistGeneratorExample();
@override
Widget build(BuildContext context) {
return MaterialApp.router(
debugShowCheckedModeBanner: false,
routerConfig: router,
);
}
}
// ----------------------------------------------------------
// Routes
// ----------------------------------------------------------
final sheetTransitionObserver = NavigationSheetTransitionObserver();
final router = GoRouter(
routes: [
GoRoute(
path: '/',
builder: (context, state) => const _Root(),
routes: [_sheetShellRoute],
),
],
);
// A ShellRoute is used to create a new Navigator for nested navigation in the sheet.
final _sheetShellRoute = ShellRoute(
observers: [sheetTransitionObserver],
pageBuilder: (context, state, navigator) {
// Use ModalSheetPage to show a modal sheet.
return ModalSheetPage(
swipeDismissible: true,
child: _SheetShell(
navigator: navigator,
transitionObserver: sheetTransitionObserver,
),
);
},
routes: [_introRoute],
);
final _introRoute = GoRoute(
path: 'intro',
pageBuilder: (context, state) {
return const DraggableNavigationSheetPage(child: _IntroPage());
},
routes: [_genreRoute],
);
final _genreRoute = GoRoute(
path: 'genre',
pageBuilder: (context, state) {
return const DraggableNavigationSheetPage(child: _SelectGenrePage());
},
routes: [_moodRoute],
);
final _moodRoute = GoRoute(
path: 'mood',
pageBuilder: (context, state) {
return const DraggableNavigationSheetPage(child: _SelectMoodPage());
},
routes: [_seedTrackRoute],
);
final _seedTrackRoute = GoRoute(
path: 'seed-track',
pageBuilder: (context, state) {
return const ScrollableNavigationSheetPage(child: _SelectSeedTrackPage());
},
routes: [_confirmRoute],
);
final _confirmRoute = GoRoute(
path: 'confirm',
pageBuilder: (context, state) {
return const ScrollableNavigationSheetPage(
initialPosition: SheetAnchor.proportional(0.7),
minPosition: SheetAnchor.proportional(0.7),
physics: BouncingSheetPhysics(
parent: SnappingSheetPhysics(),
),
child: _ConfirmPage(),
);
},
routes: [_generateRoute],
);
final _generateRoute = GoRoute(
path: 'generate',
pageBuilder: (context, state) {
return const DraggableNavigationSheetPage(child: _GeneratingPage());
},
);
// ----------------------------------------------------------
// Pages
// ----------------------------------------------------------
class _Root extends StatelessWidget {
const _Root();
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: ElevatedButton(
onPressed: () => context.go('/intro'),
child: const Text('Generate Playlist'),
),
));
}
}
class _SheetShell extends StatelessWidget {
const _SheetShell({
required this.transitionObserver,
required this.navigator,
});
final NavigationSheetTransitionObserver transitionObserver;
final Widget navigator;
@override
Widget build(BuildContext context) {
Future<bool?> showCancelDialog() {
return showDialog<bool?>(
context: context,
builder: (context) {
return AlertDialog(
title: const Text('Are you sure?'),
content:
const Text('Do you want to cancel the playlist generation?'),
actions: [
TextButton(
onPressed: () => Navigator.pop(context, true),
child: const Text('Yes'),
),
TextButton(
onPressed: () => Navigator.pop(context, false),
child: const Text('No'),
),
],
);
},
);
}
return SafeArea(
bottom: false,
child: PopScope(
canPop: false,
onPopInvoked: (didPop) async {
if (!didPop) {
final shouldPop = await showCancelDialog() ?? false;
if (shouldPop && context.mounted) {
context.go('/');
}
}
},
child: SheetViewport(
child: NavigationSheet(
transitionObserver: sheetTransitionObserver,
child: Material(
// Add circular corners to the sheet.
borderRadius: BorderRadius.circular(16),
clipBehavior: Clip.antiAlias,
color: Theme.of(context).colorScheme.surface,
child: navigator,
),
),
),
),
);
}
}
class _IntroPage extends StatelessWidget {
const _IntroPage();
@override
Widget build(BuildContext context) {
return SheetContentScaffold(
appBar: _SharedAppBarHero(
appbar: AppBar(
leading: IconButton(
onPressed: () => context.go('/'),
icon: const Icon(Icons.close),
),
),
),
body: SafeArea(
child: Padding(
padding: const EdgeInsets.symmetric(
horizontal: 32,
vertical: 8,
),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(
"Hello there!\n"
"I'm your AI music assistant. "
"Ready to create the perfect playlist for you. 😊",
textAlign: TextAlign.center,
style: Theme.of(context).textTheme.headlineMediumBold,
),
const SizedBox(height: 64),
FilledButton(
onPressed: () => context.go('/intro/genre'),
style: _largeFilledButtonStyle,
child: const Text('Continue'),
),
const SizedBox(height: 16),
TextButton(
onPressed: () => context.go('/'),
style: _largeTextButtonStyle,
child: const Text('No, thanks'),
),
],
),
),
),
);
}
}
class _SelectGenrePage extends StatelessWidget {
const _SelectGenrePage();
@override
Widget build(BuildContext context) {
return SheetContentScaffold(
appBar: _SharedAppBarHero(appbar: AppBar()),
// Wrap the body in a SingleChildScrollView to prevent
// the content from overflowing on small screens.
body: SingleChildScrollView(
padding: const EdgeInsets.symmetric(
vertical: 8,
horizontal: 32,
),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(
'What genre do you like? (1/3)',
style: Theme.of(context).textTheme.headlineMediumBold,
),
const SizedBox(height: 24),
Wrap(
spacing: 10,
children: [
for (final genre in _genres)
_SelectableChip(
label: Text(genre),
),
],
),
],
),
),
bottomBar: _BottomActionBar(
label: 'Next',
onPressed: () => context.go('/intro/genre/mood'),
),
);
}
}
class _SelectMoodPage extends StatelessWidget {
const _SelectMoodPage();
@override
Widget build(BuildContext context) {
return SheetContentScaffold(
appBar: _SharedAppBarHero(appbar: AppBar()),
body: SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.only(top: 8, bottom: 24),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Padding(
padding: const EdgeInsets.symmetric(horizontal: 32),
child: Text(
'What kind of mood are you aiming for in this playlist? (2/3)',
style: Theme.of(context).textTheme.headlineMediumBold,
),
),
const SizedBox(height: 24),
const Padding(
padding: EdgeInsets.only(left: 16),
child: _SelectableMoodList(),
),
],
),
),
),
bottomBar: _BottomActionBar(
label: 'Next',
onPressed: () => context.go('/intro/genre/mood/seed-track'),
),
);
}
}
class _SelectSeedTrackPage extends StatelessWidget {
const _SelectSeedTrackPage();
@override
Widget build(BuildContext context) {
return SheetContentScaffold(
appBar: _SharedAppBarHero(appbar: AppBar()),
body: ListView.builder(
itemCount: _seedTracks.length + 1,
itemBuilder: (context, index) {
return switch (index) {
0 => Padding(
padding:
const EdgeInsets.symmetric(horizontal: 32, vertical: 8),
child: Text(
'Select seed tracks to get started (3/3)',
style: Theme.of(context).textTheme.headlineMediumBold,
),
),
_ => _SelectableListTile(
padding: const EdgeInsets.only(left: 16),
title: _seedTracks[index - 1],
),
};
},
),
bottomBar: _BottomActionBar(
label: 'Next',
showDivider: true,
onPressed: () => context.go('/intro/genre/mood/seed-track/confirm'),
),
);
}
}
class _ConfirmPage extends StatelessWidget {
const _ConfirmPage();
@override
Widget build(BuildContext context) {
return SheetContentScaffold(
appBar: _SharedAppBarHero(appbar: AppBar()),
body: Padding(
padding: const EdgeInsets.only(left: 32),
child: CustomScrollView(
slivers: [
SliverToBoxAdapter(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Padding(
padding: const EdgeInsets.only(right: 32),
child: Text(
'Confirm your choices',
style: Theme.of(context).textTheme.headlineMediumBold,
),
),
const SizedBox(height: 24),
ListTile(
title: const Text('Genres'),
trailing: IconButton(
onPressed: () => context.go('/intro/genre'),
icon: const Icon(Icons.edit_outlined),
),
),
Padding(
padding: const EdgeInsets.only(right: 32),
child: Wrap(
spacing: 10,
children: [
for (final genre in _genres.take(5))
FilterChip(
selected: true,
label: Text(genre),
onSelected: (_) {},
),
],
),
),
const Divider(height: 32),
ListTile(
title: const Text('Mood'),
trailing: IconButton(
onPressed: () => context.go('/intro/genre/mood'),
icon: const Icon(Icons.edit_outlined),
),
),
RadioListTile(
title: Text(_moods.first.label),
secondary: Text(
_moods.first.emoji,
style: const TextStyle(fontSize: 24),
),
controlAffinity: ListTileControlAffinity.trailing,
value: '',
groupValue: '',
onChanged: (_) {},
),
const Divider(height: 32),
ListTile(
title: const Text('Seed tracks'),
trailing: IconButton(
onPressed: () =>
context.go('/intro/genre/mood/seed-track'),
icon: const Icon(Icons.edit_outlined),
),
),
],
),
),
SliverList.builder(
itemCount: (_seedTracks.length * 0.4).floor(),
itemBuilder: (context, index) {
return CheckboxListTile(
title: Text(_seedTracks[index]),
value: true,
onChanged: (_) {},
);
},
),
],
),
),
bottomBar: _BottomActionBar(
label: "OK, let's go!",
showDivider: true,
onPressed: () async {
context.go('/intro/genre/mood/seed-track/confirm/generate');
await Future<void>.delayed(const Duration(seconds: 2));
if (context.mounted) {
context.go('/');
}
},
),
);
}
}
class _GeneratingPage extends StatelessWidget {
const _GeneratingPage();
@override
Widget build(BuildContext context) {
return SheetContentScaffold(
appBar: _SharedAppBarHero(appbar: AppBar()),
body: SafeArea(
child: SizedBox(
width: double.infinity,
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 32),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text(
'Generating your playlist...',
style: Theme.of(context).textTheme.headlineMediumBold,
),
const Padding(
padding: EdgeInsets.symmetric(vertical: 64),
child: CircularProgressIndicator(strokeWidth: 6),
),
],
),
),
),
),
);
}
}
// ----------------------------------------------------------
// Utilities
// ----------------------------------------------------------
extension on TextTheme {
TextStyle? get headlineMediumBold =>
headlineMedium?.copyWith(fontWeight: FontWeight.bold);
}
final _largeFilledButtonStyle = FilledButton.styleFrom(
minimumSize: const Size.fromHeight(56),
);
final _largeTextButtonStyle = TextButton.styleFrom(
minimumSize: const Size.fromHeight(56),
);
class _SelectableChip extends StatefulWidget {
const _SelectableChip({
required this.label,
});
final Widget label;
@override
State<_SelectableChip> createState() => _SelectableChipState();
}
class _SelectableChipState extends State<_SelectableChip> {
bool isSelected = false;
@override
Widget build(BuildContext context) {
return FilterChip(
onSelected: (isSelected) {
setState(() => this.isSelected = isSelected);
},
selected: isSelected,
label: widget.label,
);
}
}
class _SelectableListTile extends StatefulWidget {
const _SelectableListTile({
required this.title,
required this.padding,
});
final String title;
final EdgeInsets padding;
@override
State<_SelectableListTile> createState() => _SelectableListTileState();
}
class _SelectableListTileState extends State<_SelectableListTile> {
bool isSelected = false;
@override
Widget build(BuildContext context) {
return Padding(
padding: widget.padding,
child: CheckboxListTile(
title: Text(widget.title),
value: isSelected,
onChanged: (selected) {
setState(() => isSelected = selected!);
},
),
);
}
}
class _SelectableMoodList extends StatefulWidget {
const _SelectableMoodList();
@override
State<_SelectableMoodList> createState() => _SelectableMoodListState();
}
class _SelectableMoodListState extends State<_SelectableMoodList> {
String? selectedMood = _moods.first.label;
@override
Widget build(BuildContext context) {
return Column(
mainAxisSize: MainAxisSize.min,
children: [
for (final mood in _moods)
RadioListTile(
title: Text(mood.label),
secondary: Text(
mood.emoji,
style: const TextStyle(fontSize: 24),
),
controlAffinity: ListTileControlAffinity.trailing,
selected: mood.label == selectedMood,
value: mood.label,
groupValue: selectedMood,
onChanged: (newMooed) => setState(() {
selectedMood = newMooed;
}),
),
],
);
}
}
class _BottomActionBar extends StatelessWidget {
const _BottomActionBar({
required this.label,
required this.onPressed,
this.showDivider = false,
});
final String label;
final VoidCallback? onPressed;
final bool showDivider;
@override
Widget build(BuildContext context) {
const horizontalPadding = 32.0;
const verticalPadding = 16.0;
// Insert bottom padding only if there's no system viewport bottom inset.
final systemBottomInset = MediaQuery.of(context).padding.bottom;
return StickyBottomBarVisibility(
child: ColoredBox(
color: Theme.of(context).colorScheme.surface,
child: SafeArea(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
if (showDivider) const Divider(height: 1),
Padding(
padding: EdgeInsets.fromLTRB(
horizontalPadding,
verticalPadding,
horizontalPadding,
systemBottomInset == 0 ? verticalPadding : 0,
),
child: FilledButton(
onPressed: onPressed,
style: _largeFilledButtonStyle,
child: Text(label),
),
),
],
),
),
),
);
}
}
/// This widget makes it possible to create a (visually) shared appbar across the pages.
///
/// For better maintainability, it is recommended to create a page-specific app bar for each page
/// instead of a single 'super' shared app bar that includes all the functionality for every page.
class _SharedAppBarHero extends StatelessWidget implements PreferredSizeWidget {
const _SharedAppBarHero({
required this.appbar,
});
final AppBar appbar;
@override
Size get preferredSize => appbar.preferredSize;
@override
Widget build(BuildContext context) {
return Hero(tag: 'HeroAppBar', child: appbar);
}
}
// ----------------------------------------------------------
// Constants
// ----------------------------------------------------------
const _genres = [
'Pop',
'Rock',
'Hip Hop',
'R&B',
'Country',
'Jazz',
'Classical',
'Electronic',
'Folk',
'Reggae',
'Blues',
'Metal',
'Punk',
'Disco',
'Funk',
'Soul',
'Techno',
'House',
'Ambient',
'Indie',
'Alternative',
'K-Pop',
'Latin',
];
const _moods = [
(label: 'Energetic and Upbeat', emoji: '🎉'),
(label: 'Laid-back and Chill:', emoji: '🍹'),
(label: 'Mellow and Reflective', emoji: '🛌'),
(label: 'Uplifting and Positive', emoji: '💪'),
];
const _seedTracks = [
"Groove Odyssey",
"Funky Fusion Fiesta",
"Soul Serenade Shuffle",
"Rhythm Revival Rendezvous",
"Bassline Bliss",
"Jazzed-up Jamboree",
"Funkadelic Dreamscape",
"Smooth Sunset Serenity",
"Electric Euphoria Express",
"Syncopation Celebration",
"Funky Mirage Melody",
"Saxophone Sunshine Soiree",
"Dancefloor Diplomacy",
"Bass Bounce Bonanza",
"Vibraphone Voyage",
"Funk Frontier Fantasy",
"Sonic Soul Safari",
"Guitar Groove Gala",
"Brass Bliss Bouquet",
"Funky Cosmic Carnival",
];