mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-12-26 08:09:37 -05:00
9bb20f4dd2
refactor splash screen to process initialization in a better way more async tools for async cubit constructors greatly improved StateMapFollower class
155 lines
4.4 KiB
Dart
155 lines
4.4 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:bloc/bloc.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:freezed_annotation/freezed_annotation.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
import 'package:stream_transform/stream_transform.dart';
|
|
|
|
import '../../../account_manager/account_manager.dart';
|
|
import '../../layout/layout.dart';
|
|
import '../../settings/settings.dart';
|
|
import '../../tools/tools.dart';
|
|
import '../../veilid_processor/views/developer.dart';
|
|
|
|
part 'router_cubit.freezed.dart';
|
|
part 'router_cubit.g.dart';
|
|
part 'router_state.dart';
|
|
|
|
final _rootNavKey = GlobalKey<NavigatorState>(debugLabel: 'rootNavKey');
|
|
final _homeNavKey = GlobalKey<NavigatorState>(debugLabel: 'homeNavKey');
|
|
|
|
class RouterCubit extends Cubit<RouterState> {
|
|
RouterCubit(AccountRepository accountRepository)
|
|
: super(RouterState(
|
|
hasAnyAccount: accountRepository.getLocalAccounts().isNotEmpty,
|
|
hasActiveChat: false,
|
|
)) {
|
|
// Subscribe to repository streams
|
|
_accountRepositorySubscription = accountRepository.stream.listen((event) {
|
|
switch (event) {
|
|
case AccountRepositoryChange.localAccounts:
|
|
emit(state.copyWith(
|
|
hasAnyAccount: accountRepository.getLocalAccounts().isNotEmpty));
|
|
break;
|
|
case AccountRepositoryChange.userLogins:
|
|
case AccountRepositoryChange.activeLocalAccount:
|
|
break;
|
|
}
|
|
});
|
|
}
|
|
|
|
void setHasActiveChat(bool active) {
|
|
emit(state.copyWith(hasActiveChat: active));
|
|
}
|
|
|
|
@override
|
|
Future<void> close() async {
|
|
await _accountRepositorySubscription.cancel();
|
|
await super.close();
|
|
}
|
|
|
|
/// Our application routes
|
|
List<RouteBase> get routes => [
|
|
ShellRoute(
|
|
navigatorKey: _homeNavKey,
|
|
builder: (context, state, child) => HomeShell(
|
|
accountReadyBuilder: Builder(
|
|
builder: (context) =>
|
|
HomeAccountReadyShell(context: context, child: child))),
|
|
routes: [
|
|
GoRoute(
|
|
path: '/',
|
|
builder: (context, state) => const HomeAccountReadyMain(),
|
|
),
|
|
GoRoute(
|
|
path: '/chat',
|
|
builder: (context, state) => const HomeAccountReadyChat(),
|
|
),
|
|
],
|
|
),
|
|
GoRoute(
|
|
path: '/new_account',
|
|
builder: (context, state) => const NewAccountPage(),
|
|
),
|
|
GoRoute(
|
|
path: '/settings',
|
|
builder: (context, state) => const SettingsPage(),
|
|
),
|
|
GoRoute(
|
|
path: '/developer',
|
|
builder: (context, state) => const DeveloperPage(),
|
|
)
|
|
];
|
|
|
|
/// Redirects when our state changes
|
|
String? redirect(BuildContext context, GoRouterState goRouterState) {
|
|
// No matter where we are, if there's not
|
|
|
|
switch (goRouterState.matchedLocation) {
|
|
case '/new_account':
|
|
return state.hasAnyAccount ? '/' : null;
|
|
case '/':
|
|
if (!state.hasAnyAccount) {
|
|
return '/new_account';
|
|
}
|
|
if (responsiveVisibility(
|
|
context: context,
|
|
tablet: false,
|
|
tabletLandscape: false,
|
|
desktop: false)) {
|
|
if (state.hasActiveChat) {
|
|
return '/chat';
|
|
}
|
|
}
|
|
return null;
|
|
case '/chat':
|
|
if (!state.hasAnyAccount) {
|
|
return '/new_account';
|
|
}
|
|
if (responsiveVisibility(
|
|
context: context,
|
|
tablet: false,
|
|
tabletLandscape: false,
|
|
desktop: false)) {
|
|
if (!state.hasActiveChat) {
|
|
return '/';
|
|
}
|
|
} else {
|
|
return '/';
|
|
}
|
|
return null;
|
|
case '/settings':
|
|
return null;
|
|
case '/developer':
|
|
return null;
|
|
default:
|
|
return state.hasAnyAccount ? null : '/new_account';
|
|
}
|
|
}
|
|
|
|
/// Make a GoRouter instance that uses this cubit
|
|
GoRouter router() {
|
|
final r = _router;
|
|
if (r != null) {
|
|
return r;
|
|
}
|
|
return _router = GoRouter(
|
|
navigatorKey: _rootNavKey,
|
|
refreshListenable: StreamListenable(stream.startWith(state).distinct()),
|
|
debugLogDiagnostics: kDebugMode,
|
|
initialLocation: '/',
|
|
routes: routes,
|
|
redirect: redirect,
|
|
);
|
|
}
|
|
|
|
////////////////
|
|
|
|
late final StreamSubscription<AccountRepositoryChange>
|
|
_accountRepositorySubscription;
|
|
GoRouter? _router;
|
|
}
|