FurryChat/lib/components/dialogs/recording_dialog.dart

109 lines
2.7 KiB
Dart
Raw Normal View History

2020-03-15 10:27:51 +00:00
import 'dart:async';
2020-05-07 05:52:40 +00:00
import 'package:fluffychat/l10n/l10n.dart';
2020-03-15 10:27:51 +00:00
import 'package:flutter/material.dart';
import 'package:flutter_sound/flutter_sound.dart';
import 'package:intl/intl.dart';
class RecordingDialog extends StatefulWidget {
final Function onFinished;
const RecordingDialog({this.onFinished, Key key}) : super(key: key);
@override
_RecordingDialogState createState() => _RecordingDialogState();
}
class _RecordingDialogState extends State<RecordingDialog> {
FlutterSound flutterSound = FlutterSound();
2020-05-13 13:58:59 +00:00
String time = '00:00:00';
2020-03-15 10:27:51 +00:00
StreamSubscription _recorderSubscription;
2020-03-15 10:49:59 +00:00
bool error = false;
2020-03-15 10:27:51 +00:00
void startRecording() async {
2020-03-15 10:49:59 +00:00
try {
await flutterSound.startRecorder(
codec: t_CODEC.CODEC_AAC,
);
_recorderSubscription = flutterSound.onRecorderStateChanged.listen((e) {
2020-05-13 13:58:59 +00:00
var date =
2020-03-15 10:49:59 +00:00
DateTime.fromMillisecondsSinceEpoch(e.currentPosition.toInt());
setState(() => time = DateFormat('mm:ss:SS', 'en_US').format(date));
});
} catch (e) {
error = true;
}
2020-03-15 10:27:51 +00:00
}
@override
void initState() {
super.initState();
startRecording();
}
@override
void dispose() {
if (flutterSound.isRecording) flutterSound.stopRecorder();
_recorderSubscription?.cancel();
super.dispose();
}
@override
Widget build(BuildContext context) {
2020-03-15 10:49:59 +00:00
if (error) {
Timer(Duration(seconds: 1), () {
Navigator.of(context).pop();
});
}
2020-03-15 10:27:51 +00:00
return AlertDialog(
content: Row(
children: <Widget>[
CircleAvatar(
backgroundColor: Colors.red,
radius: 8,
),
SizedBox(width: 8),
Expanded(
child: Text(
2020-05-13 13:58:59 +00:00
'${L10n.of(context).recording}: $time',
2020-03-15 10:27:51 +00:00
style: TextStyle(
fontSize: 18,
),
),
),
],
),
actions: <Widget>[
FlatButton(
child: Text(
2020-05-07 05:52:40 +00:00
L10n.of(context).cancel.toUpperCase(),
2020-03-15 10:27:51 +00:00
style: TextStyle(
2020-05-06 16:43:30 +00:00
color: Theme.of(context).textTheme.bodyText2.color.withAlpha(150),
2020-03-15 10:27:51 +00:00
),
),
onPressed: () => Navigator.of(context).pop(),
),
FlatButton(
child: Row(
children: <Widget>[
2020-05-07 05:52:40 +00:00
Text(L10n.of(context).send.toUpperCase()),
2020-03-15 10:27:51 +00:00
SizedBox(width: 4),
Icon(Icons.send, size: 15),
],
),
onPressed: () async {
await _recorderSubscription?.cancel();
2020-05-13 13:58:59 +00:00
final result = await flutterSound.stopRecorder();
2020-03-15 10:27:51 +00:00
if (widget.onFinished != null) {
widget.onFinished(result);
}
Navigator.of(context).pop();
},
),
],
);
}
}