FurryChat/lib/components/audio_player.dart

156 lines
4.5 KiB
Dart
Raw Normal View History

2020-03-15 10:27:51 +00:00
import 'dart:async';
import 'dart:typed_data';
import 'package:famedlysdk/famedlysdk.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter_sound/flutter_sound.dart';
import 'package:intl/intl.dart';
2020-04-27 11:36:39 +00:00
import 'dialogs/simple_dialogs.dart';
2020-03-15 10:27:51 +00:00
class AudioPlayer extends StatefulWidget {
final Color color;
2020-03-29 18:13:25 +00:00
final Event event;
2020-03-15 10:27:51 +00:00
2020-03-29 18:13:25 +00:00
static String currentId;
2020-03-15 13:15:45 +00:00
2020-03-29 18:13:25 +00:00
const AudioPlayer(this.event, {this.color = Colors.black, Key key})
2020-03-15 10:27:51 +00:00
: super(key: key);
@override
_AudioPlayerState createState() => _AudioPlayerState();
}
enum AudioPlayerStatus { NOT_DOWNLOADED, DOWNLOADING, DOWNLOADED }
class _AudioPlayerState extends State<AudioPlayer> {
AudioPlayerStatus status = AudioPlayerStatus.NOT_DOWNLOADED;
FlutterSound flutterSound = FlutterSound();
StreamSubscription soundSubscription;
Uint8List audioFile;
2020-05-13 13:58:59 +00:00
String statusText = '00:00';
2020-03-15 10:27:51 +00:00
double currentPosition = 0;
double maxPosition = 0;
@override
void dispose() {
if (flutterSound.audioState == t_AUDIO_STATE.IS_PLAYING) {
flutterSound.stopPlayer();
}
soundSubscription?.cancel();
super.dispose();
}
2020-05-13 13:58:59 +00:00
Future<void> _downloadAction() async {
2020-03-15 10:27:51 +00:00
if (status != AudioPlayerStatus.NOT_DOWNLOADED) return;
setState(() => status = AudioPlayerStatus.DOWNLOADING);
2020-04-27 11:36:39 +00:00
final matrixFile = await SimpleDialogs(context)
2020-03-29 18:13:25 +00:00
.tryRequestWithErrorToast(widget.event.downloadAndDecryptAttachment());
2020-03-15 10:27:51 +00:00
setState(() {
2020-03-29 18:13:25 +00:00
audioFile = matrixFile.bytes;
2020-03-15 10:27:51 +00:00
status = AudioPlayerStatus.DOWNLOADED;
});
_playAction();
}
2020-05-13 13:58:59 +00:00
void _playAction() async {
2020-03-29 18:13:25 +00:00
if (AudioPlayer.currentId != widget.event.eventId) {
if (AudioPlayer.currentId != null) {
2020-03-15 11:00:25 +00:00
if (flutterSound.audioState != t_AUDIO_STATE.IS_STOPPED) {
await flutterSound.stopPlayer();
2020-03-15 16:12:16 +00:00
setState(() => null);
2020-03-15 11:00:25 +00:00
}
}
2020-03-29 18:13:25 +00:00
AudioPlayer.currentId = widget.event.eventId;
2020-03-15 11:00:25 +00:00
}
2020-03-15 10:27:51 +00:00
switch (flutterSound.audioState) {
case t_AUDIO_STATE.IS_PLAYING:
await flutterSound.pausePlayer();
break;
case t_AUDIO_STATE.IS_PAUSED:
await flutterSound.resumePlayer();
break;
case t_AUDIO_STATE.IS_RECORDING:
break;
case t_AUDIO_STATE.IS_STOPPED:
await flutterSound.startPlayerFromBuffer(
audioFile,
codec: t_CODEC.CODEC_AAC,
);
soundSubscription ??= flutterSound.onPlayerStateChanged.listen((e) {
2020-03-29 18:13:25 +00:00
if (AudioPlayer.currentId != widget.event.eventId) {
2020-03-15 11:00:25 +00:00
soundSubscription?.cancel()?.then((f) => soundSubscription = null);
2020-05-13 13:58:59 +00:00
setState(() {
2020-03-15 11:00:25 +00:00
currentPosition = 0;
2020-05-13 13:58:59 +00:00
statusText = '00:00';
2020-03-15 11:00:25 +00:00
});
2020-03-29 18:13:25 +00:00
AudioPlayer.currentId = null;
2020-03-15 11:00:25 +00:00
} else if (e != null) {
2020-05-13 13:58:59 +00:00
var date =
2020-03-15 10:27:51 +00:00
DateTime.fromMillisecondsSinceEpoch(e.currentPosition.toInt());
2020-05-13 13:58:59 +00:00
var txt = DateFormat('mm:ss', 'en_US').format(date);
setState(() {
2020-03-15 10:27:51 +00:00
maxPosition = e.duration;
currentPosition = e.currentPosition;
statusText = txt;
});
if (e.duration == e.currentPosition) {
soundSubscription
?.cancel()
?.then((f) => soundSubscription = null);
}
}
});
break;
}
}
@override
Widget build(BuildContext context) {
return Row(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Container(
2020-03-15 10:47:35 +00:00
width: 30,
2020-03-15 10:27:51 +00:00
child: status == AudioPlayerStatus.DOWNLOADING
2020-03-15 10:47:35 +00:00
? CircularProgressIndicator(strokeWidth: 2)
2020-03-15 10:27:51 +00:00
: IconButton(
icon: Icon(
flutterSound.audioState == t_AUDIO_STATE.IS_PLAYING
? Icons.pause
: Icons.play_arrow,
color: widget.color,
),
onPressed: () {
if (status == AudioPlayerStatus.DOWNLOADED) {
_playAction();
} else {
_downloadAction();
}
},
),
),
2020-03-15 10:47:35 +00:00
Expanded(
child: Slider(
value: currentPosition,
onChanged: (double position) =>
flutterSound.seekToPlayer(position.toInt()),
max: status == AudioPlayerStatus.DOWNLOADED ? maxPosition : 0,
min: 0,
),
2020-03-15 10:27:51 +00:00
),
Text(
statusText,
style: TextStyle(
color: widget.color,
),
),
],
);
}
}