2024-05-31 17:25:45 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
import 'package:solian/exts.dart';
|
|
|
|
import 'package:solian/models/call.dart';
|
|
|
|
import 'package:solian/models/channel.dart';
|
|
|
|
import 'package:solian/models/realm.dart';
|
|
|
|
import 'package:solian/providers/auth.dart';
|
|
|
|
|
|
|
|
class ChatCallButton extends StatefulWidget {
|
|
|
|
final Realm? realm;
|
|
|
|
final Channel channel;
|
|
|
|
final Call? ongoingCall;
|
|
|
|
final Function? onStarted;
|
|
|
|
final Function? onEnded;
|
|
|
|
|
|
|
|
const ChatCallButton({
|
|
|
|
super.key,
|
|
|
|
required this.realm,
|
|
|
|
required this.channel,
|
|
|
|
required this.ongoingCall,
|
|
|
|
this.onStarted,
|
|
|
|
this.onEnded,
|
|
|
|
});
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<ChatCallButton> createState() => _ChatCallButtonState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _ChatCallButtonState extends State<ChatCallButton> {
|
|
|
|
bool _isBusy = false;
|
|
|
|
|
|
|
|
Future<void> makeCall() async {
|
|
|
|
final AuthProvider auth = Get.find();
|
|
|
|
if (!await auth.isAuthorized) return;
|
|
|
|
|
2024-06-22 14:39:32 +00:00
|
|
|
final client = auth.configureClient('messaging');
|
2024-05-31 17:25:45 +00:00
|
|
|
|
|
|
|
setState(() => _isBusy = true);
|
|
|
|
|
|
|
|
final scope = (widget.realm?.alias.isNotEmpty ?? false)
|
|
|
|
? widget.realm?.alias
|
|
|
|
: 'global';
|
|
|
|
final resp = await client.post(
|
2024-07-16 11:46:53 +00:00
|
|
|
'/channels/$scope/${widget.channel.alias}/calls',
|
2024-05-31 17:25:45 +00:00
|
|
|
{},
|
|
|
|
);
|
|
|
|
if (resp.statusCode == 200) {
|
|
|
|
if (widget.onStarted != null) widget.onStarted!();
|
|
|
|
} else {
|
|
|
|
context.showErrorDialog(resp.bodyString);
|
|
|
|
}
|
|
|
|
|
|
|
|
setState(() => _isBusy = false);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> endsCall() async {
|
|
|
|
final AuthProvider auth = Get.find();
|
|
|
|
if (!await auth.isAuthorized) return;
|
|
|
|
|
2024-06-22 14:39:32 +00:00
|
|
|
final client = auth.configureClient('messaging');
|
2024-05-31 17:25:45 +00:00
|
|
|
|
|
|
|
setState(() => _isBusy = true);
|
|
|
|
|
|
|
|
final scope = (widget.realm?.alias.isNotEmpty ?? false)
|
|
|
|
? widget.realm?.alias
|
|
|
|
: 'global';
|
|
|
|
final resp = await client
|
2024-07-16 11:46:53 +00:00
|
|
|
.delete('/channels/$scope/${widget.channel.alias}/calls/ongoing');
|
2024-05-31 17:25:45 +00:00
|
|
|
if (resp.statusCode == 200) {
|
|
|
|
if (widget.onEnded != null) widget.onEnded!();
|
|
|
|
} else {
|
|
|
|
context.showErrorDialog(resp.bodyString);
|
|
|
|
}
|
|
|
|
|
|
|
|
setState(() => _isBusy = false);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return IconButton(
|
|
|
|
onPressed: _isBusy
|
|
|
|
? null
|
|
|
|
: widget.ongoingCall == null
|
|
|
|
? makeCall
|
|
|
|
: endsCall,
|
|
|
|
icon: widget.ongoingCall == null
|
|
|
|
? const Icon(Icons.call)
|
|
|
|
: const Icon(Icons.call_end),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|