You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.3 KiB
Dart
46 lines
1.3 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'package:go_router/go_router.dart';
|
|
import 'package:sentry_flutter/sentry_flutter.dart';
|
|
|
|
import 'package:fluffychat/widgets/matrix.dart';
|
|
|
|
//if on home with classcode in url and not logged in, then save it soemhow and after llogin, join class automatically
|
|
//if on home with classcode in url and logged in, then join class automatically
|
|
class JoinClassWithLink extends StatefulWidget {
|
|
final String? classCode;
|
|
const JoinClassWithLink({super.key, this.classCode});
|
|
|
|
@override
|
|
State<JoinClassWithLink> createState() => _JoinClassWithLinkState();
|
|
}
|
|
|
|
//PTODO - show class info in field so they know they're joining the right class
|
|
class _JoinClassWithLinkState extends State<JoinClassWithLink> {
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
|
|
Future.delayed(Duration.zero, () async {
|
|
if (widget.classCode == null) {
|
|
Sentry.addBreadcrumb(
|
|
Breadcrumb(
|
|
message:
|
|
"Navigated to join_with_link without class code query parameter",
|
|
),
|
|
);
|
|
return;
|
|
}
|
|
|
|
if (widget.classCode != null) {
|
|
await MatrixState.pangeaController.classController
|
|
.cacheSpaceCode(widget.classCode!);
|
|
}
|
|
context.go("/home");
|
|
});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) => const SizedBox();
|
|
}
|