2024-05-19 19:18:47 +00:00
|
|
|
import 'dart:developer';
|
|
|
|
|
2024-01-17 21:50:02 +00:00
|
|
|
import 'package:flutter/widgets.dart';
|
2022-12-25 15:16:23 +00:00
|
|
|
import 'package:go_router/go_router.dart';
|
2024-05-19 19:18:47 +00:00
|
|
|
import 'package:mchess/connection/ws_connection.dart';
|
|
|
|
import 'package:mchess/pages/join_game_handle_widget.dart';
|
2022-12-25 15:16:23 +00:00
|
|
|
import 'package:mchess/pages/lobby_selector.dart';
|
2024-05-19 19:18:47 +00:00
|
|
|
import 'package:mchess/pages/create_game_widget.dart';
|
|
|
|
import 'package:mchess/utils/passphrase.dart';
|
2022-12-25 15:16:23 +00:00
|
|
|
|
2024-01-17 21:50:02 +00:00
|
|
|
final navigatorKey = GlobalKey<NavigatorState>();
|
|
|
|
|
2022-12-25 19:30:42 +00:00
|
|
|
class ChessAppRouter {
|
|
|
|
static final ChessAppRouter _instance = ChessAppRouter._internal();
|
|
|
|
|
|
|
|
ChessAppRouter._internal();
|
|
|
|
|
|
|
|
static ChessAppRouter getInstance() {
|
|
|
|
return _instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
final router = GoRouter(
|
2024-01-17 21:50:02 +00:00
|
|
|
navigatorKey: navigatorKey,
|
2023-12-27 14:46:15 +00:00
|
|
|
debugLogDiagnostics: true,
|
2022-12-25 19:30:42 +00:00
|
|
|
routes: [
|
|
|
|
GoRoute(
|
|
|
|
path: '/',
|
2023-05-28 12:54:46 +00:00
|
|
|
name: 'lobbySelector',
|
2023-12-09 19:34:52 +00:00
|
|
|
builder: (context, state) {
|
|
|
|
return const LobbySelector();
|
|
|
|
},
|
2023-12-27 14:46:15 +00:00
|
|
|
routes: [
|
|
|
|
GoRoute(
|
2024-05-19 19:18:47 +00:00
|
|
|
path: 'createGame',
|
|
|
|
name: 'createGame',
|
2023-12-27 14:46:15 +00:00
|
|
|
builder: (context, state) {
|
2024-05-19 19:18:47 +00:00
|
|
|
return const CreateGameWidget();
|
2023-12-27 14:46:15 +00:00
|
|
|
}),
|
|
|
|
GoRoute(
|
2024-05-19 19:18:47 +00:00
|
|
|
path: 'game/:phrase',
|
2023-12-27 14:46:15 +00:00
|
|
|
name: 'game',
|
|
|
|
builder: (context, state) {
|
2024-05-19 19:18:47 +00:00
|
|
|
ServerConnection.getInstance().disconnectExistingConnection();
|
|
|
|
|
|
|
|
var urlPhrase = state.pathParameters['phrase'];
|
|
|
|
if (urlPhrase == null) {
|
|
|
|
log('in /game route builder: url phrase null');
|
|
|
|
return const LobbySelector();
|
|
|
|
}
|
2023-06-29 23:49:18 +00:00
|
|
|
|
2024-05-19 19:18:47 +00:00
|
|
|
return JoinGameHandleWidget(
|
|
|
|
passphrase: urlPhrase.toPhraseWithSpaces(),
|
2023-12-27 14:46:15 +00:00
|
|
|
);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
2022-12-25 19:30:42 +00:00
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|