2022-12-25 15:16:23 +00:00
|
|
|
import 'package:go_router/go_router.dart';
|
2023-06-29 23:49:18 +00:00
|
|
|
import 'package:mchess/pages/chess_game.dart';
|
2022-12-25 15:16:23 +00:00
|
|
|
import 'package:mchess/pages/lobby_selector.dart';
|
2023-06-29 23:49:18 +00:00
|
|
|
import 'package:mchess/pages/host_game.dart';
|
2022-12-25 15:16:23 +00:00
|
|
|
|
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(
|
|
|
|
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();
|
|
|
|
},
|
2022-12-25 19:30:42 +00:00
|
|
|
),
|
2023-06-29 23:49:18 +00:00
|
|
|
GoRoute(
|
|
|
|
path: '/host',
|
|
|
|
name: 'host',
|
|
|
|
builder: (context, state) {
|
|
|
|
return const HostGameWidget();
|
|
|
|
}),
|
|
|
|
GoRoute(
|
|
|
|
path: '/game',
|
|
|
|
name: 'game',
|
|
|
|
builder: (context, state) {
|
|
|
|
var args = state.extra as ChessGameArguments;
|
|
|
|
|
|
|
|
return ChessGame(
|
|
|
|
lobbyID: args.lobbyID,
|
|
|
|
playerID: args.playerID,
|
|
|
|
passphrase: args.passphrase,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
)
|
2022-12-25 19:30:42 +00:00
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|