feat: refactor code

This commit is contained in:
2026-06-17 12:57:28 +03:30
parent e9f294fa19
commit 519752b478
106 changed files with 3459 additions and 2309 deletions
@@ -0,0 +1,101 @@
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:go_router/go_router.dart';
import '../../../../core/widgets/game_ui.dart';
import '../bloc/auth_bloc.dart';
import '../bloc/auth_event.dart';
import '../bloc/auth_state.dart';
import '../bloc/login_status.dart';
/// صفحه‌ی ورود شماره موبایل.
class MobileScreen extends StatefulWidget {
const MobileScreen({super.key});
@override
State<MobileScreen> createState() => _MobileScreenState();
}
class _MobileScreenState extends State<MobileScreen> {
final _controller = TextEditingController();
@override
void dispose() {
_controller.dispose();
super.dispose();
}
bool get _valid => RegExp(r'^09\d{9}$').hasMatch(_controller.text.trim());
@override
Widget build(BuildContext context) {
return Scaffold(
body: GameBackground(
child: BlocConsumer<AuthBloc, AuthState>(
listenWhen: (a, b) => a.loginStatus != b.loginStatus,
listener: (context, state) {
final s = state.loginStatus;
if (s is LoginSuccess) {
context.push('/otp');
} else if (s is LoginError) {
ScaffoldMessenger.of(context)
.showSnackBar(SnackBar(content: Text(s.message)));
}
},
builder: (context, state) {
final loading = state.loginStatus is LoginLoading;
return Center(
child: SingleChildScrollView(
padding: const EdgeInsets.all(24),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
const GlowText('سلطان حکم', size: 40),
const SizedBox(height: 28),
GamePanel(
padding: const EdgeInsets.all(22),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
const Text('برای ورود شماره موبایلت رو وارد کن',
style: TextStyle(color: Colors.white70)),
const SizedBox(height: 20),
TextField(
controller: _controller,
keyboardType: TextInputType.phone,
textAlign: TextAlign.center,
style:
const TextStyle(fontSize: 20, letterSpacing: 2),
inputFormatters: [
FilteringTextInputFormatter.digitsOnly,
LengthLimitingTextInputFormatter(11),
],
decoration:
const InputDecoration(hintText: '09xxxxxxxxx'),
onChanged: (_) => setState(() {}),
),
const SizedBox(height: 20),
GameButton(
label: 'دریافت کد',
width: double.infinity,
colors: const [Color(0xFF3FA34D), Color(0xFF1B5E20)],
onTap: (!_valid || loading)
? null
: () => context
.read<AuthBloc>()
.add(LoginOtpEvent(_controller.text.trim())),
),
],
),
),
],
),
),
);
},
),
),
);
}
}
@@ -0,0 +1,108 @@
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:go_router/go_router.dart';
import '../../../../core/theme/app_theme.dart';
import '../../../../core/widgets/game_ui.dart';
import '../bloc/auth_bloc.dart';
import '../bloc/auth_event.dart';
import '../bloc/auth_state.dart';
import '../bloc/otp_status.dart';
/// صفحه‌ی ورود کد یک‌بارمصرف (۵ رقمی).
class OtpScreen extends StatefulWidget {
const OtpScreen({super.key});
@override
State<OtpScreen> createState() => _OtpScreenState();
}
class _OtpScreenState extends State<OtpScreen> {
final _controller = TextEditingController();
@override
void dispose() {
_controller.dispose();
super.dispose();
}
bool get _valid => _controller.text.trim().length == 5;
@override
Widget build(BuildContext context) {
return Scaffold(
body: GameBackground(
child: BlocConsumer<AuthBloc, AuthState>(
listenWhen: (a, b) => a.otpStatus != b.otpStatus,
listener: (context, state) {
final s = state.otpStatus;
if (s is OtpSuccess) {
context.go(s.hasName ? '/lobby' : '/setup');
} else if (s is OtpError) {
ScaffoldMessenger.of(context)
.showSnackBar(SnackBar(content: Text(s.message)));
}
},
builder: (context, state) {
final loading = state.otpStatus is OtpLoading;
return Center(
child: SingleChildScrollView(
padding: const EdgeInsets.all(24),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
const GlowText('تأیید کد', size: 32),
const SizedBox(height: 24),
GamePanel(
padding: const EdgeInsets.all(22),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Text('کد پیامک‌شده به ${state.mobile} را وارد کنید',
textAlign: TextAlign.center,
style: const TextStyle(color: Colors.white70)),
const SizedBox(height: 20),
TextField(
controller: _controller,
keyboardType: TextInputType.number,
textAlign: TextAlign.center,
style: const TextStyle(
fontSize: 28, letterSpacing: 12),
inputFormatters: [
FilteringTextInputFormatter.digitsOnly,
LengthLimitingTextInputFormatter(5),
],
decoration:
const InputDecoration(hintText: '- - - - -'),
onChanged: (_) => setState(() {}),
),
const SizedBox(height: 20),
GameButton(
label: 'ورود',
width: double.infinity,
colors: const [Color(0xFF3FA34D), Color(0xFF1B5E20)],
onTap: (!_valid || loading)
? null
: () => context
.read<AuthBloc>()
.add(CheckOtpEvent(_controller.text.trim())),
),
TextButton(
onPressed: loading ? null : () => context.pop(),
child: const Text('تغییر شماره',
style: TextStyle(color: AppColors.gold)),
),
],
),
),
],
),
),
);
},
),
),
);
}
}
@@ -0,0 +1,146 @@
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:go_router/go_router.dart';
import 'package:random_avatar/random_avatar.dart';
import '../../../../core/theme/app_theme.dart';
import '../../../../core/widgets/game_ui.dart';
import '../bloc/auth_bloc.dart';
import '../bloc/auth_event.dart';
import '../bloc/auth_state.dart';
import '../bloc/profile_status.dart';
/// صفحه‌ی انتخاب نام و آواتار پس از اولین ورود.
class ProfileSetupScreen extends StatefulWidget {
const ProfileSetupScreen({super.key});
@override
State<ProfileSetupScreen> createState() => _ProfileSetupScreenState();
}
class _ProfileSetupScreenState extends State<ProfileSetupScreen> {
final _name = TextEditingController();
late List<String> _seeds;
int _selected = 0;
@override
void initState() {
super.initState();
_seeds = List.generate(12, (i) => 'hakem-${i + 1}');
}
@override
void dispose() {
_name.dispose();
super.dispose();
}
bool get _valid => _name.text.trim().length >= 2;
@override
Widget build(BuildContext context) {
return Scaffold(
body: GameBackground(
child: BlocConsumer<AuthBloc, AuthState>(
listenWhen: (a, b) => a.profileStatus != b.profileStatus,
listener: (context, state) {
final s = state.profileStatus;
if (s is ProfileSuccess) {
context.go('/lobby');
} else if (s is ProfileError) {
ScaffoldMessenger.of(context)
.showSnackBar(SnackBar(content: Text(s.message)));
}
},
builder: (context, state) {
final saving = state.profileStatus is ProfileLoading;
return Center(
child: SingleChildScrollView(
padding: const EdgeInsets.all(20),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
const GlowText('انتخاب نام و آواتار', size: 26),
const SizedBox(height: 20),
GamePanel(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Container(
padding: const EdgeInsets.all(6),
decoration: BoxDecoration(
shape: BoxShape.circle,
border:
Border.all(color: AppColors.gold, width: 2),
),
child: RandomAvatar(_seeds[_selected],
height: 84, width: 84),
),
const SizedBox(height: 14),
TextField(
controller: _name,
textAlign: TextAlign.center,
maxLength: 20,
inputFormatters: [
LengthLimitingTextInputFormatter(20),
],
decoration: const InputDecoration(
hintText: 'نام نمایشی (۲ تا ۲۰ حرف)',
counterText: ''),
onChanged: (_) => setState(() {}),
),
const SizedBox(height: 14),
const Text('یک آواتار انتخاب کن',
style: TextStyle(color: AppColors.gold)),
const SizedBox(height: 10),
GridView.count(
crossAxisCount: 4,
shrinkWrap: true,
physics: const NeverScrollableScrollPhysics(),
mainAxisSpacing: 10,
crossAxisSpacing: 10,
children: [
for (var i = 0; i < _seeds.length; i++)
GestureDetector(
onTap: () => setState(() => _selected = i),
child: Container(
decoration: BoxDecoration(
shape: BoxShape.circle,
color: AppColors.bgDark,
border: Border.all(
color: _selected == i
? AppColors.gold
: Colors.transparent,
width: 2.5,
),
),
child: RandomAvatar(_seeds[i]),
),
),
],
),
const SizedBox(height: 18),
GameButton(
label: saving ? 'در حال ذخیره…' : 'تأیید و ورود',
width: double.infinity,
colors: const [Color(0xFF3FA34D), Color(0xFF1B5E20)],
onTap: (!_valid || saving)
? null
: () => context.read<AuthBloc>().add(
UpdateProfileEvent(
_name.text.trim(), _seeds[_selected])),
),
],
),
),
],
),
),
);
},
),
),
);
}
}