fluffychat/lib/views/widgets/dialogs/recording_dialog.dart

138 lines
3.8 KiB
Dart
Raw Normal View History

2020-03-15 10:27:51 +00:00
import 'dart:async';
import 'dart:io';
import 'dart:math';
2020-03-15 10:27:51 +00:00
import 'package:flutter/material.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
import 'package:flutter_sound_lite/flutter_sound.dart';
import 'package:path_provider/path_provider.dart';
2020-03-15 10:27:51 +00:00
class RecordingDialog extends StatefulWidget {
2021-01-19 14:46:43 +00:00
const RecordingDialog({
Key key,
}) : super(key: key);
2020-03-15 10:27:51 +00:00
@override
_RecordingDialogState createState() => _RecordingDialogState();
}
class _RecordingDialogState extends State<RecordingDialog> {
final FlutterSoundRecorder flutterSound = FlutterSoundRecorder();
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;
String _recordedPath;
double _decibels = 0;
2020-03-15 10:49:59 +00:00
2020-03-15 10:27:51 +00:00
void startRecording() async {
2020-03-15 10:49:59 +00:00
try {
await flutterSound.openAudioSession();
await flutterSound.setSubscriptionDuration(Duration(milliseconds: 100));
final codec = Codec.aacADTS;
final tempDir = await getTemporaryDirectory();
_recordedPath = '${tempDir.path}/recording${ext[codec.index]}';
// delete any existing file
2021-04-14 08:37:15 +00:00
final outputFile = File(_recordedPath);
if (outputFile.existsSync()) {
await outputFile.delete();
}
await flutterSound.startRecorder(codec: codec, toFile: _recordedPath);
_recorderSubscription = flutterSound.onProgress.listen((e) {
setState(() {
_decibels = e.decibels;
time =
'${e.duration.inMinutes.toString().padLeft(2, '0')}:${(e.duration.inSeconds % 60).toString().padLeft(2, '0')}';
});
2020-03-15 10:49:59 +00:00
});
} 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();
flutterSound.closeAudioSession();
2020-03-15 10:27:51 +00:00
super.dispose();
}
@override
Widget build(BuildContext context) {
2020-03-15 10:49:59 +00:00
if (error) {
Timer(Duration(seconds: 1), () {
2021-02-24 11:17:23 +00:00
Navigator.of(context, rootNavigator: false).pop();
2020-03-15 10:49:59 +00:00
});
}
const maxDecibalWidth = 64.0;
final decibalWidth = min(_decibels / 2, maxDecibalWidth).toDouble();
2020-03-15 10:27:51 +00:00
return AlertDialog(
content: Row(
children: <Widget>[
Container(
width: maxDecibalWidth,
height: maxDecibalWidth,
alignment: Alignment.center,
child: AnimatedContainer(
duration: Duration(milliseconds: 50),
width: decibalWidth,
height: decibalWidth,
decoration: BoxDecoration(
color: Colors.red,
borderRadius: BorderRadius.circular(decibalWidth),
),
),
2020-03-15 10:27:51 +00:00
),
SizedBox(width: 8),
Expanded(
child: Text(
2021-02-24 11:17:23 +00:00
'${L10n.of(context).recording}: $time',
2020-03-15 10:27:51 +00:00
style: TextStyle(
fontSize: 18,
),
),
),
],
),
actions: <Widget>[
2021-02-27 06:53:34 +00:00
TextButton(
2021-03-04 11:28:06 +00:00
onPressed: () => Navigator.of(context, rootNavigator: false).pop(),
2020-03-15 10:27:51 +00:00
child: Text(
2021-02-24 11:17:23 +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
),
),
),
2021-02-27 06:53:34 +00:00
TextButton(
2021-03-04 11:28:06 +00:00
onPressed: () async {
await _recorderSubscription?.cancel();
await flutterSound.stopRecorder();
Navigator.of(context, rootNavigator: false)
.pop<String>(_recordedPath);
},
2020-03-15 10:27:51 +00:00
child: Row(
children: <Widget>[
2021-02-24 11:17:23 +00:00
Text(L10n.of(context).send.toUpperCase()),
2020-03-15 10:27:51 +00:00
SizedBox(width: 4),
2020-12-06 09:31:35 +00:00
Icon(Icons.send_outlined, size: 15),
2020-03-15 10:27:51 +00:00
],
),
),
],
);
}
}