2020-06-23 19:23:12 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:audio_service/audio_service.dart';
|
2020-10-16 18:54:04 +00:00
|
|
|
import 'package:flutter/services.dart';
|
2020-07-18 21:45:48 +00:00
|
|
|
import 'package:flutter_screenutil/screenutil.dart';
|
2020-10-19 19:28:45 +00:00
|
|
|
import 'package:freezer/api/cache.dart';
|
2020-06-23 19:23:12 +00:00
|
|
|
import 'package:freezer/api/deezer.dart';
|
|
|
|
import 'package:freezer/api/player.dart';
|
2020-10-16 18:54:04 +00:00
|
|
|
import 'package:freezer/settings.dart';
|
2020-09-18 17:36:41 +00:00
|
|
|
import 'package:freezer/translations.i18n.dart';
|
2020-10-19 19:28:45 +00:00
|
|
|
import 'package:freezer/ui/elements.dart';
|
2020-06-23 19:23:12 +00:00
|
|
|
import 'package:freezer/ui/menu.dart';
|
2020-07-18 21:45:48 +00:00
|
|
|
import 'package:freezer/ui/settings_screen.dart';
|
2020-06-23 19:23:12 +00:00
|
|
|
import 'package:freezer/ui/tiles.dart';
|
2020-06-24 14:52:53 +00:00
|
|
|
import 'package:async/async.dart';
|
2020-08-13 17:39:22 +00:00
|
|
|
import 'package:just_audio/just_audio.dart';
|
2020-07-19 12:41:05 +00:00
|
|
|
import 'package:marquee/marquee.dart';
|
2020-06-23 19:23:12 +00:00
|
|
|
|
|
|
|
import 'cached_image.dart';
|
|
|
|
import '../api/definitions.dart';
|
|
|
|
import 'player_bar.dart';
|
|
|
|
|
2020-09-18 17:36:41 +00:00
|
|
|
import 'dart:ui';
|
|
|
|
import 'dart:async';
|
|
|
|
|
2020-06-23 19:23:12 +00:00
|
|
|
class PlayerScreen extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
_PlayerScreenState createState() => _PlayerScreenState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _PlayerScreenState extends State<PlayerScreen> {
|
|
|
|
|
2020-10-16 18:54:04 +00:00
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
|
|
|
|
systemNavigationBarColor: settings.themeData.bottomAppBarColor,
|
|
|
|
));
|
|
|
|
super.dispose();
|
|
|
|
}
|
2020-06-23 19:23:12 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-07-18 21:45:48 +00:00
|
|
|
//Responsive
|
|
|
|
ScreenUtil.init(context, allowFontScaling: true);
|
|
|
|
|
2020-06-23 19:23:12 +00:00
|
|
|
return Scaffold(
|
2020-06-24 13:19:14 +00:00
|
|
|
body: SafeArea(
|
|
|
|
child: StreamBuilder(
|
2020-06-24 14:52:53 +00:00
|
|
|
stream: StreamZip([AudioService.playbackStateStream, AudioService.currentMediaItemStream]),
|
2020-06-24 13:19:14 +00:00
|
|
|
builder: (BuildContext context, AsyncSnapshot snapshot) {
|
2020-06-23 19:23:12 +00:00
|
|
|
|
2020-06-24 14:52:53 +00:00
|
|
|
//When disconnected
|
|
|
|
if (AudioService.currentMediaItem == null) {
|
|
|
|
playerHelper.startService();
|
|
|
|
return Center(child: CircularProgressIndicator(),);
|
|
|
|
}
|
2020-10-09 18:52:45 +00:00
|
|
|
|
2020-07-18 21:45:48 +00:00
|
|
|
return OrientationBuilder(
|
|
|
|
builder: (context, orientation) {
|
|
|
|
//Landscape
|
|
|
|
if (orientation == Orientation.landscape) {
|
|
|
|
return PlayerScreenHorizontal();
|
|
|
|
}
|
|
|
|
//Portrait
|
|
|
|
return PlayerScreenVertical();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
},
|
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Landscape
|
|
|
|
class PlayerScreenHorizontal extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
_PlayerScreenHorizontalState createState() => _PlayerScreenHorizontalState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _PlayerScreenHorizontalState extends State<PlayerScreenHorizontal> {
|
|
|
|
|
|
|
|
bool _lyrics = false;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Row(
|
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
|
|
|
children: <Widget>[
|
|
|
|
Padding(
|
2020-10-14 19:09:16 +00:00
|
|
|
padding: EdgeInsets.fromLTRB(16, 0, 16, 8),
|
|
|
|
child: Container(
|
2020-07-18 21:45:48 +00:00
|
|
|
width: ScreenUtil().setWidth(500),
|
|
|
|
child: Stack(
|
|
|
|
children: <Widget>[
|
2020-10-15 18:37:36 +00:00
|
|
|
BigAlbumArt(),
|
2020-07-18 21:45:48 +00:00
|
|
|
if (_lyrics) LyricsWidget(
|
2020-08-13 17:39:22 +00:00
|
|
|
artUri: AudioService.currentMediaItem.extras['thumb'],
|
2020-07-18 21:45:48 +00:00
|
|
|
trackId: AudioService.currentMediaItem.id,
|
|
|
|
lyrics: Track.fromMediaItem(AudioService.currentMediaItem).lyrics,
|
|
|
|
height: ScreenUtil().setWidth(500),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
2020-10-14 19:09:16 +00:00
|
|
|
),
|
2020-07-18 21:45:48 +00:00
|
|
|
),
|
|
|
|
//Right side
|
|
|
|
SizedBox(
|
|
|
|
width: ScreenUtil().setWidth(500),
|
|
|
|
child: Column(
|
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: <Widget>[
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.fromLTRB(8, 16, 8, 0),
|
|
|
|
child: Container(
|
|
|
|
child: PlayerScreenTopRow(
|
2020-10-19 19:28:45 +00:00
|
|
|
textSize: ScreenUtil().setSp(24),
|
|
|
|
iconSize: ScreenUtil().setSp(36),
|
|
|
|
textWidth: ScreenUtil().setWidth(350),
|
2020-07-18 21:45:48 +00:00
|
|
|
short: true
|
|
|
|
),
|
|
|
|
)
|
|
|
|
),
|
|
|
|
Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: <Widget>[
|
2020-07-19 12:41:05 +00:00
|
|
|
Container(
|
|
|
|
height: ScreenUtil().setSp(40),
|
|
|
|
child: AudioService.currentMediaItem.displayTitle.length >= 22 ?
|
|
|
|
Marquee(
|
|
|
|
text: AudioService.currentMediaItem.displayTitle,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: ScreenUtil().setSp(40),
|
|
|
|
fontWeight: FontWeight.bold
|
|
|
|
),
|
|
|
|
blankSpace: 32.0,
|
|
|
|
startPadding: 10.0,
|
|
|
|
accelerationDuration: Duration(seconds: 1),
|
|
|
|
pauseAfterRound: Duration(seconds: 2),
|
|
|
|
):
|
|
|
|
Text(
|
|
|
|
AudioService.currentMediaItem.displayTitle,
|
|
|
|
maxLines: 1,
|
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: ScreenUtil().setSp(40),
|
|
|
|
fontWeight: FontWeight.bold
|
|
|
|
),
|
|
|
|
)
|
2020-07-18 21:45:48 +00:00
|
|
|
),
|
|
|
|
Container(height: 4,),
|
|
|
|
Text(
|
2020-10-25 09:47:56 +00:00
|
|
|
AudioService.currentMediaItem.displaySubtitle ?? '',
|
2020-07-18 21:45:48 +00:00
|
|
|
maxLines: 1,
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
overflow: TextOverflow.clip,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: ScreenUtil().setSp(32),
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
Container(
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 16.0),
|
|
|
|
child: SeekBar(),
|
|
|
|
),
|
2020-10-19 19:28:45 +00:00
|
|
|
PlaybackControls(ScreenUtil().setSp(60)),
|
2020-07-18 21:45:48 +00:00
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.fromLTRB(8, 0, 8, 16),
|
|
|
|
child: Container(
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 2.0),
|
|
|
|
child: Row(
|
2020-06-24 14:52:53 +00:00
|
|
|
mainAxisSize: MainAxisSize.max,
|
2020-07-18 21:45:48 +00:00
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
2020-06-24 14:52:53 +00:00
|
|
|
children: <Widget>[
|
2020-07-18 21:45:48 +00:00
|
|
|
IconButton(
|
|
|
|
icon: Icon(Icons.subtitles, size: ScreenUtil().setWidth(32)),
|
|
|
|
onPressed: () {
|
|
|
|
setState(() => _lyrics = !_lyrics);
|
|
|
|
},
|
2020-06-24 14:52:53 +00:00
|
|
|
),
|
2020-11-01 19:23:24 +00:00
|
|
|
if (AudioService.currentMediaItem.extras['qualityString'] != null)
|
|
|
|
FlatButton(
|
|
|
|
onPressed: () => Navigator.push(
|
|
|
|
context,
|
|
|
|
MaterialPageRoute(builder: (context) => QualitySettings())
|
|
|
|
),
|
|
|
|
child: Text(
|
|
|
|
AudioService.currentMediaItem.extras['qualityString'] ?? '',
|
|
|
|
style: TextStyle(fontSize: ScreenUtil().setSp(24)),
|
|
|
|
),
|
2020-06-24 14:52:53 +00:00
|
|
|
),
|
2020-11-01 19:23:24 +00:00
|
|
|
RepeatButton(ScreenUtil().setWidth(32)),
|
2020-07-18 21:45:48 +00:00
|
|
|
IconButton(
|
|
|
|
icon: Icon(Icons.more_vert, size: ScreenUtil().setWidth(32)),
|
|
|
|
onPressed: () {
|
|
|
|
Track t = Track.fromMediaItem(AudioService.currentMediaItem);
|
|
|
|
MenuSheet m = MenuSheet(context);
|
2020-10-15 20:10:17 +00:00
|
|
|
m.defaultTrackMenu(t, options: [m.sleepTimer()]);
|
2020-07-18 21:45:48 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2020-06-23 19:23:12 +00:00
|
|
|
|
2020-07-18 21:45:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
//Portrait
|
|
|
|
class PlayerScreenVertical extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
_PlayerScreenVerticalState createState() => _PlayerScreenVerticalState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _PlayerScreenVerticalState extends State<PlayerScreenVertical> {
|
|
|
|
bool _lyrics = false;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Column(
|
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: <Widget>[
|
|
|
|
Padding(
|
2020-10-19 19:28:45 +00:00
|
|
|
padding: EdgeInsets.fromLTRB(30, 4, 16, 0),
|
|
|
|
child: PlayerScreenTopRow()
|
2020-06-24 13:19:14 +00:00
|
|
|
),
|
2020-07-18 21:45:48 +00:00
|
|
|
Padding(
|
2020-10-19 19:28:45 +00:00
|
|
|
padding: EdgeInsets.fromLTRB(16, 0, 16, 0),
|
|
|
|
child: Container(
|
|
|
|
height: ScreenUtil().setHeight(1000),
|
|
|
|
child: Stack(
|
|
|
|
children: <Widget>[
|
|
|
|
BigAlbumArt(),
|
|
|
|
if (_lyrics) LyricsWidget(
|
|
|
|
artUri: AudioService.currentMediaItem.extras['thumb'],
|
|
|
|
trackId: AudioService.currentMediaItem.id,
|
|
|
|
lyrics: Track.fromMediaItem(AudioService.currentMediaItem).lyrics,
|
|
|
|
height: ScreenUtil().setHeight(1000),
|
|
|
|
),
|
|
|
|
],
|
2020-10-14 19:09:16 +00:00
|
|
|
),
|
2020-10-19 19:28:45 +00:00
|
|
|
),
|
2020-07-18 21:45:48 +00:00
|
|
|
),
|
2020-10-19 19:28:45 +00:00
|
|
|
Container(height: 4.0),
|
2020-07-18 21:45:48 +00:00
|
|
|
Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: <Widget>[
|
2020-07-19 12:41:05 +00:00
|
|
|
Container(
|
|
|
|
height: ScreenUtil().setSp(64),
|
|
|
|
child: AudioService.currentMediaItem.displayTitle.length >= 24 ?
|
|
|
|
Marquee(
|
|
|
|
text: AudioService.currentMediaItem.displayTitle,
|
|
|
|
style: TextStyle(
|
2020-07-18 21:45:48 +00:00
|
|
|
fontSize: ScreenUtil().setSp(64),
|
|
|
|
fontWeight: FontWeight.bold
|
2020-07-19 12:41:05 +00:00
|
|
|
),
|
|
|
|
blankSpace: 32.0,
|
|
|
|
startPadding: 10.0,
|
|
|
|
accelerationDuration: Duration(seconds: 1),
|
|
|
|
pauseAfterRound: Duration(seconds: 2),
|
|
|
|
):
|
|
|
|
Text(
|
|
|
|
AudioService.currentMediaItem.displayTitle,
|
|
|
|
maxLines: 1,
|
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: ScreenUtil().setSp(64),
|
|
|
|
fontWeight: FontWeight.bold
|
|
|
|
),
|
|
|
|
)
|
2020-07-18 21:45:48 +00:00
|
|
|
),
|
|
|
|
Container(height: 4,),
|
|
|
|
Text(
|
2020-10-25 09:47:56 +00:00
|
|
|
AudioService.currentMediaItem.displaySubtitle ?? '',
|
2020-07-18 21:45:48 +00:00
|
|
|
maxLines: 1,
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
overflow: TextOverflow.clip,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: ScreenUtil().setSp(52),
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
SeekBar(),
|
2020-10-19 19:28:45 +00:00
|
|
|
PlaybackControls(ScreenUtil().setWidth(100)),
|
2020-07-18 21:45:48 +00:00
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.symmetric(vertical: 0, horizontal: 16.0),
|
|
|
|
child: Row(
|
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: <Widget>[
|
|
|
|
IconButton(
|
|
|
|
icon: Icon(Icons.subtitles, size: ScreenUtil().setWidth(46)),
|
|
|
|
onPressed: () {
|
|
|
|
setState(() => _lyrics = !_lyrics);
|
|
|
|
},
|
|
|
|
),
|
2020-11-01 19:23:24 +00:00
|
|
|
if (AudioService.currentMediaItem.extras['qualityString'] != null)
|
|
|
|
FlatButton(
|
|
|
|
onPressed: () => Navigator.push(
|
|
|
|
context,
|
|
|
|
MaterialPageRoute(builder: (context) => QualitySettings())
|
|
|
|
),
|
|
|
|
child: Text(
|
|
|
|
AudioService.currentMediaItem.extras['qualityString'] ?? '',
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: ScreenUtil().setSp(32),
|
|
|
|
),
|
2020-07-18 21:45:48 +00:00
|
|
|
),
|
|
|
|
),
|
2020-11-01 19:23:24 +00:00
|
|
|
RepeatButton(ScreenUtil().setWidth(46)),
|
2020-07-18 21:45:48 +00:00
|
|
|
IconButton(
|
|
|
|
icon: Icon(Icons.more_vert, size: ScreenUtil().setWidth(46)),
|
|
|
|
onPressed: () {
|
|
|
|
Track t = Track.fromMediaItem(AudioService.currentMediaItem);
|
|
|
|
MenuSheet m = MenuSheet(context);
|
2020-10-15 20:10:17 +00:00
|
|
|
m.defaultTrackMenu(t, options: [m.sleepTimer()]);
|
2020-07-18 21:45:48 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
2020-06-23 19:23:12 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-01 19:23:24 +00:00
|
|
|
|
|
|
|
class RepeatButton extends StatefulWidget {
|
2020-10-19 19:28:45 +00:00
|
|
|
|
|
|
|
final double iconSize;
|
2020-11-01 19:23:24 +00:00
|
|
|
RepeatButton(this.iconSize, {Key key}): super(key: key);
|
2020-10-19 19:28:45 +00:00
|
|
|
|
|
|
|
@override
|
2020-11-01 19:23:24 +00:00
|
|
|
_RepeatButtonState createState() => _RepeatButtonState();
|
2020-10-19 19:28:45 +00:00
|
|
|
}
|
|
|
|
|
2020-11-01 19:23:24 +00:00
|
|
|
class _RepeatButtonState extends State<RepeatButton> {
|
2020-10-19 19:28:45 +00:00
|
|
|
|
|
|
|
Icon get repeatIcon {
|
|
|
|
switch (playerHelper.repeatType) {
|
|
|
|
case LoopMode.off:
|
|
|
|
return Icon(
|
|
|
|
Icons.repeat,
|
2020-11-01 19:23:24 +00:00
|
|
|
size: widget.iconSize
|
2020-10-19 19:28:45 +00:00
|
|
|
);
|
|
|
|
case LoopMode.all:
|
|
|
|
return Icon(
|
|
|
|
Icons.repeat,
|
|
|
|
color: Theme.of(context).primaryColor,
|
2020-11-01 19:23:24 +00:00
|
|
|
size: widget.iconSize
|
2020-10-19 19:28:45 +00:00
|
|
|
);
|
|
|
|
case LoopMode.one:
|
|
|
|
return Icon(
|
|
|
|
Icons.repeat_one,
|
|
|
|
color: Theme.of(context).primaryColor,
|
2020-11-01 19:23:24 +00:00
|
|
|
size: widget.iconSize
|
2020-10-19 19:28:45 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-01 19:23:24 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return IconButton(
|
|
|
|
icon: repeatIcon,
|
|
|
|
onPressed: () async {
|
|
|
|
await playerHelper.changeRepeat();
|
|
|
|
setState(() {});
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class PlaybackControls extends StatefulWidget {
|
|
|
|
|
|
|
|
final double iconSize;
|
|
|
|
PlaybackControls(this.iconSize, {Key key}): super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
_PlaybackControlsState createState() => _PlaybackControlsState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _PlaybackControlsState extends State<PlaybackControls> {
|
|
|
|
|
2020-10-19 19:28:45 +00:00
|
|
|
Icon get libraryIcon {
|
|
|
|
if (cache.checkTrackFavorite(Track.fromMediaItem(AudioService.currentMediaItem))) {
|
|
|
|
return Icon(Icons.favorite, size: widget.iconSize * 0.64);
|
|
|
|
}
|
|
|
|
return Icon(Icons.favorite_border, size: widget.iconSize * 0.64);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Padding(
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 8.0),
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
|
children: [
|
|
|
|
IconButton(
|
2020-11-01 19:23:24 +00:00
|
|
|
icon: Icon(Icons.sentiment_very_dissatisfied, size: ScreenUtil().setWidth(46)),
|
|
|
|
onPressed: () async {
|
|
|
|
await deezerAPI.dislikeTrack(AudioService.currentMediaItem.id);
|
|
|
|
if (playerHelper.queueIndex < (AudioService.queue??[]).length - 1) {
|
|
|
|
AudioService.skipToNext();
|
|
|
|
}
|
|
|
|
}
|
2020-10-19 19:28:45 +00:00
|
|
|
),
|
|
|
|
PrevNextButton(widget.iconSize, prev: true),
|
|
|
|
PlayPauseButton(widget.iconSize * 1.25),
|
|
|
|
PrevNextButton(widget.iconSize),
|
|
|
|
IconButton(
|
|
|
|
icon: libraryIcon,
|
|
|
|
onPressed: () async {
|
|
|
|
if (cache.libraryTracks == null)
|
|
|
|
cache.libraryTracks = [];
|
|
|
|
|
|
|
|
if (cache.checkTrackFavorite(Track.fromMediaItem(AudioService.currentMediaItem))) {
|
|
|
|
//Remove from library
|
|
|
|
setState(() => cache.libraryTracks.remove(AudioService.currentMediaItem.id));
|
|
|
|
await deezerAPI.removeFavorite(AudioService.currentMediaItem.id);
|
|
|
|
await cache.save();
|
|
|
|
} else {
|
|
|
|
//Add
|
|
|
|
setState(() => cache.libraryTracks.add(AudioService.currentMediaItem.id));
|
|
|
|
await deezerAPI.addFavoriteTrack(AudioService.currentMediaItem.id);
|
|
|
|
await cache.save();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-15 18:37:36 +00:00
|
|
|
class BigAlbumArt extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
_BigAlbumArtState createState() => _BigAlbumArtState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _BigAlbumArtState extends State<BigAlbumArt> {
|
|
|
|
|
|
|
|
PageController _pageController = PageController(
|
|
|
|
initialPage: playerHelper.queueIndex,
|
|
|
|
);
|
|
|
|
StreamSubscription _currentItemSub;
|
|
|
|
bool _animationLock = true;
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
_currentItemSub = AudioService.currentMediaItemStream.listen((event) async {
|
|
|
|
_animationLock = true;
|
|
|
|
await _pageController.animateToPage(playerHelper.queueIndex, duration: Duration(milliseconds: 300), curve: Curves.easeInOut);
|
|
|
|
_animationLock = false;
|
|
|
|
});
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
if (_currentItemSub != null)
|
|
|
|
_currentItemSub.cancel();
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-10-19 19:28:45 +00:00
|
|
|
return GestureDetector(
|
|
|
|
onVerticalDragUpdate: (DragUpdateDetails details) {
|
|
|
|
if (details.delta.dy > 16) {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
}
|
2020-10-15 18:37:36 +00:00
|
|
|
},
|
2020-10-19 19:28:45 +00:00
|
|
|
child: PageView(
|
|
|
|
controller: _pageController,
|
|
|
|
onPageChanged: (int index) {
|
|
|
|
if (_animationLock) return;
|
|
|
|
AudioService.skipToQueueItem(AudioService.queue[index].id);
|
|
|
|
},
|
2020-10-22 21:24:30 +00:00
|
|
|
children: List.generate(AudioService.queue.length, (i) => ZoomableImage(url: AudioService.queue[i].artUri)),
|
2020-10-19 19:28:45 +00:00
|
|
|
),
|
2020-10-15 18:37:36 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2020-07-18 21:45:48 +00:00
|
|
|
|
|
|
|
|
2020-06-23 19:23:12 +00:00
|
|
|
class LyricsWidget extends StatefulWidget {
|
|
|
|
|
|
|
|
final Lyrics lyrics;
|
|
|
|
final String trackId;
|
|
|
|
final String artUri;
|
|
|
|
final double height;
|
|
|
|
LyricsWidget({this.artUri, this.lyrics, this.trackId, this.height, Key key}): super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
_LyricsWidgetState createState() => _LyricsWidgetState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _LyricsWidgetState extends State<LyricsWidget> {
|
|
|
|
|
|
|
|
bool _loading = true;
|
|
|
|
Lyrics _l;
|
|
|
|
Color _textColor = Colors.black;
|
|
|
|
ScrollController _scrollController = ScrollController();
|
|
|
|
Timer _timer;
|
|
|
|
int _currentIndex;
|
|
|
|
double _boxHeight;
|
2020-07-19 12:41:05 +00:00
|
|
|
double _lyricHeight = 128;
|
2020-07-18 21:45:48 +00:00
|
|
|
String _trackId;
|
2020-06-23 19:23:12 +00:00
|
|
|
|
|
|
|
Future _load() async {
|
2020-07-18 21:45:48 +00:00
|
|
|
_trackId = widget.trackId;
|
|
|
|
|
2020-06-23 19:23:12 +00:00
|
|
|
//Get text color by album art (black or white)
|
|
|
|
if (widget.artUri != null) {
|
|
|
|
bool bw = await imagesDatabase.isDark(widget.artUri);
|
|
|
|
if (bw != null) setState(() => _textColor = bw?Colors.white:Colors.black);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (widget.lyrics.lyrics == null || widget.lyrics.lyrics.length == 0) {
|
|
|
|
//Load from api
|
|
|
|
try {
|
2020-07-18 21:45:48 +00:00
|
|
|
_l = await deezerAPI.lyrics(_trackId);
|
2020-06-23 19:23:12 +00:00
|
|
|
setState(() => _loading = false);
|
|
|
|
} catch (e) {
|
2020-10-09 18:52:45 +00:00
|
|
|
print(e);
|
2020-06-23 19:23:12 +00:00
|
|
|
//Error Lyrics
|
2020-10-09 18:52:45 +00:00
|
|
|
setState(() => _l = Lyrics.error());
|
|
|
|
}
|
|
|
|
|
|
|
|
//Empty lyrics
|
|
|
|
if (_l.lyrics.length == 0) {
|
|
|
|
setState(() {
|
|
|
|
_l = Lyrics.error();
|
|
|
|
_loading = false;
|
|
|
|
});
|
2020-06-23 19:23:12 +00:00
|
|
|
}
|
2020-10-09 18:52:45 +00:00
|
|
|
|
2020-06-23 19:23:12 +00:00
|
|
|
} else {
|
|
|
|
//Use provided lyrics
|
|
|
|
_l = widget.lyrics;
|
|
|
|
setState(() => _loading = false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
this._boxHeight = widget.height??400.0;
|
|
|
|
_load();
|
2020-07-18 21:45:48 +00:00
|
|
|
|
2020-06-23 19:23:12 +00:00
|
|
|
Timer.periodic(Duration(milliseconds: 500), (timer) {
|
|
|
|
_timer = timer;
|
|
|
|
if (_loading) return;
|
|
|
|
//Update index of current lyric
|
|
|
|
setState(() {
|
|
|
|
_currentIndex = _l.lyrics.lastIndexWhere((l) => l.offset <= AudioService.playbackState.currentPosition);
|
|
|
|
});
|
|
|
|
//Scroll to current lyric
|
|
|
|
if (_currentIndex <= 0) return;
|
|
|
|
_scrollController.animateTo(
|
2020-07-19 12:41:05 +00:00
|
|
|
(_lyricHeight * _currentIndex) + (_lyricHeight / 2) - (_boxHeight / 2),
|
2020-06-23 19:23:12 +00:00
|
|
|
duration: Duration(milliseconds: 250),
|
|
|
|
curve: Curves.ease
|
|
|
|
);
|
|
|
|
|
|
|
|
});
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
if (_timer != null) _timer.cancel();
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
2020-07-18 21:45:48 +00:00
|
|
|
@override
|
|
|
|
void didUpdateWidget(LyricsWidget oldWidget) {
|
|
|
|
if (this._trackId != widget.trackId) {
|
|
|
|
setState(() {
|
|
|
|
_loading = true;
|
|
|
|
this._trackId = widget.trackId;
|
|
|
|
});
|
|
|
|
_load();
|
|
|
|
}
|
|
|
|
super.didUpdateWidget(oldWidget);
|
|
|
|
}
|
|
|
|
|
2020-06-23 19:23:12 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Container(
|
|
|
|
height: _boxHeight,
|
|
|
|
width: _boxHeight,
|
|
|
|
child: BackdropFilter(
|
|
|
|
filter: ImageFilter.blur(
|
|
|
|
sigmaX: 7.0,
|
|
|
|
sigmaY: 7.0
|
|
|
|
),
|
|
|
|
child: Container(
|
|
|
|
child: _loading?
|
|
|
|
Center(child: CircularProgressIndicator(),) :
|
|
|
|
SingleChildScrollView(
|
|
|
|
controller: _scrollController,
|
|
|
|
child: Column(
|
|
|
|
children: List.generate(_l.lyrics.length, (i) {
|
|
|
|
return Container(
|
2020-07-19 12:41:05 +00:00
|
|
|
height: _lyricHeight,
|
2020-06-23 19:23:12 +00:00
|
|
|
child: Center(
|
2020-07-18 21:45:48 +00:00
|
|
|
child: Stack(
|
|
|
|
children: <Widget>[
|
|
|
|
Text(
|
|
|
|
_l.lyrics[i].text,
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
style: TextStyle(
|
2020-07-19 12:41:05 +00:00
|
|
|
fontSize: 28.0,
|
2020-07-18 21:45:48 +00:00
|
|
|
fontWeight: (_currentIndex == i)?FontWeight.bold:FontWeight.normal,
|
|
|
|
foreground: Paint()
|
|
|
|
..strokeWidth = 6
|
|
|
|
..style = PaintingStyle.stroke
|
|
|
|
..color = (_textColor==Colors.black)?Colors.white:Colors.black,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
_l.lyrics[i].text,
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
style: TextStyle(
|
|
|
|
color: _textColor,
|
2020-07-19 12:41:05 +00:00
|
|
|
fontSize: 28.0,
|
2020-07-18 21:45:48 +00:00
|
|
|
fontWeight: (_currentIndex == i)?FontWeight.bold:FontWeight.normal
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
)
|
2020-06-23 19:23:12 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Top row containing QueueSource, queue...
|
|
|
|
class PlayerScreenTopRow extends StatelessWidget {
|
2020-07-18 21:45:48 +00:00
|
|
|
|
|
|
|
double textSize;
|
|
|
|
double iconSize;
|
|
|
|
double textWidth;
|
|
|
|
bool short;
|
|
|
|
PlayerScreenTopRow({this.textSize, this.iconSize, this.textWidth, this.short});
|
|
|
|
|
2020-06-23 19:23:12 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Row(
|
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
2020-10-19 19:28:45 +00:00
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
2020-06-23 19:23:12 +00:00
|
|
|
children: <Widget>[
|
2020-10-19 19:28:45 +00:00
|
|
|
Container(
|
|
|
|
width: this.textWidth??ScreenUtil().setWidth(800),
|
|
|
|
child: Text(
|
|
|
|
(short??false)?(playerHelper.queueSource.text??''):'Playing from:'.i18n + ' ' + (playerHelper.queueSource?.text??''),
|
|
|
|
maxLines: 1,
|
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
textAlign: TextAlign.left,
|
|
|
|
style: TextStyle(fontSize: this.textSize??ScreenUtil().setSp(38)),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
IconButton(
|
|
|
|
icon: Icon(Icons.menu),
|
|
|
|
iconSize: this.iconSize??ScreenUtil().setSp(52),
|
|
|
|
splashRadius: this.iconSize??ScreenUtil().setWidth(52),
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.of(context).push(MaterialPageRoute(
|
|
|
|
builder: (context) => QueueScreen()
|
|
|
|
));
|
|
|
|
},
|
2020-06-23 19:23:12 +00:00
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SeekBar extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
_SeekBarState createState() => _SeekBarState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _SeekBarState extends State<SeekBar> {
|
|
|
|
|
|
|
|
bool _seeking = false;
|
|
|
|
double _pos;
|
|
|
|
|
|
|
|
double get position {
|
|
|
|
if (_seeking) return _pos;
|
|
|
|
if (AudioService.playbackState == null) return 0.0;
|
|
|
|
double p = AudioService.playbackState.currentPosition.inMilliseconds.toDouble()??0.0;
|
|
|
|
if (p > duration) return duration;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Duration to mm:ss
|
|
|
|
String _timeString(double pos) {
|
|
|
|
Duration d = Duration(milliseconds: pos.toInt());
|
|
|
|
return "${d.inMinutes}:${d.inSeconds.remainder(60).toString().padLeft(2, '0')}";
|
|
|
|
}
|
|
|
|
|
|
|
|
double get duration {
|
|
|
|
if (AudioService.currentMediaItem == null) return 1.0;
|
|
|
|
return AudioService.currentMediaItem.duration.inMilliseconds.toDouble();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return StreamBuilder(
|
|
|
|
stream: Stream.periodic(Duration(milliseconds: 250)),
|
|
|
|
builder: (BuildContext context, AsyncSnapshot snapshot) {
|
|
|
|
return Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: <Widget>[
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.symmetric(vertical: 0.0, horizontal: 24.0),
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: <Widget>[
|
|
|
|
Text(
|
|
|
|
_timeString(position),
|
|
|
|
style: TextStyle(
|
2020-07-18 21:45:48 +00:00
|
|
|
fontSize: ScreenUtil().setSp(35)
|
2020-06-23 19:23:12 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
_timeString(duration),
|
|
|
|
style: TextStyle(
|
2020-07-18 21:45:48 +00:00
|
|
|
fontSize: ScreenUtil().setSp(35)
|
2020-06-23 19:23:12 +00:00
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Container(
|
|
|
|
height: 32.0,
|
|
|
|
child: Slider(
|
|
|
|
value: position,
|
|
|
|
max: duration,
|
|
|
|
onChangeStart: (double d) {
|
|
|
|
setState(() {
|
|
|
|
_seeking = true;
|
|
|
|
_pos = d;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onChanged: (double d) {
|
|
|
|
setState(() {
|
|
|
|
_pos = d;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onChangeEnd: (double d) async {
|
|
|
|
await AudioService.seekTo(Duration(milliseconds: d.round()));
|
|
|
|
setState(() {
|
|
|
|
_pos = d;
|
|
|
|
_seeking = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class QueueScreen extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
_QueueScreenState createState() => _QueueScreenState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _QueueScreenState extends State<QueueScreen> {
|
2020-08-13 17:39:22 +00:00
|
|
|
|
2020-10-17 19:20:26 +00:00
|
|
|
StreamSubscription _queueSub;
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
_queueSub = AudioService.queueStream.listen((event) {setState((){});});
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
if (_queueSub != null)
|
|
|
|
_queueSub.cancel();
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
2020-06-23 19:23:12 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
2020-10-19 19:28:45 +00:00
|
|
|
appBar: FreezerAppBar(
|
|
|
|
'Queue'.i18n,
|
2020-06-23 19:23:12 +00:00
|
|
|
actions: <Widget>[
|
|
|
|
IconButton(
|
2020-08-13 17:39:22 +00:00
|
|
|
icon: Icon(
|
|
|
|
Icons.shuffle,
|
|
|
|
),
|
2020-06-23 19:23:12 +00:00
|
|
|
onPressed: () async {
|
2020-08-13 17:39:22 +00:00
|
|
|
await playerHelper.toggleShuffle();
|
|
|
|
setState(() {});
|
2020-06-23 19:23:12 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
2020-10-16 18:54:04 +00:00
|
|
|
body: ReorderableListView(
|
|
|
|
onReorder: (int oldIndex, int newIndex) async {
|
|
|
|
if (oldIndex == playerHelper.queueIndex) return;
|
|
|
|
await playerHelper.reorder(oldIndex, newIndex);
|
|
|
|
setState(() {});
|
|
|
|
},
|
|
|
|
children: List.generate(AudioService.queue.length, (int i) {
|
2020-06-23 19:23:12 +00:00
|
|
|
Track t = Track.fromMediaItem(AudioService.queue[i]);
|
|
|
|
return TrackTile(
|
|
|
|
t,
|
|
|
|
onTap: () async {
|
|
|
|
await AudioService.playFromMediaId(t.id);
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
},
|
2020-10-16 18:54:04 +00:00
|
|
|
key: Key(t.id),
|
2020-06-23 19:23:12 +00:00
|
|
|
);
|
2020-10-16 18:54:04 +00:00
|
|
|
}),
|
2020-06-23 19:23:12 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|