web_page.dart 16.5 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
import 'package:appframe/bloc/web_cubit.dart';
import 'package:appframe/config/constant.dart';
import 'package:appframe/config/evn_config.dart';
import 'package:appframe/config/locator.dart';
import 'package:appframe/config/routes.dart';
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:go_router/go_router.dart';
import 'package:shared_preferences/shared_preferences.dart';
import 'package:webview_flutter/webview_flutter.dart';

class WebPage extends StatelessWidget {
  const WebPage({super.key});

  @override
  Widget build(BuildContext buildContext) {
    final Map<String, dynamic>? extraData = GoRouterState.of(buildContext).extra as Map<String, dynamic>?;

    var sessionCode = extraData?['sessionCode'];
    var userCode = extraData?['userCode'];
    var classCode = extraData?['classCode'];
    var userType = extraData?['userType'];
    var stuId = extraData?['stuId'];

    if (sessionCode == null || sessionCode == '') {
      var sharedPreferences = getIt.get<SharedPreferences>();
      sessionCode = sharedPreferences.getString('auth_sessionCode');
      userCode = sharedPreferences.getString('auth_userCode');
      classCode = sharedPreferences.getString('auth_classCode');
      userType = sharedPreferences.getInt('auth_userType');
      stuId = sharedPreferences.getString('auth_stuId');
    }

    return BlocProvider(
      create: (context) => WebCubit(
        WebState(
          sessionCode: sessionCode,
          userCode: userCode,
          classCode: classCode,
          userType: userType,
          stuId: stuId,
        ),
      ),
      child: BlocConsumer<WebCubit, WebState>(
        builder: (ctx, state) {
          return PopScope(
            canPop: false,
            onPopInvokedWithResult: (didPop, result) {
              ctx.read<WebCubit>().handleBack();
            },
            child: Scaffold(
              appBar: _buildAppBar(ctx, state),
              endDrawer: _buildDrawer(ctx, state),
              body: Stack(
                children: [
                  state.loaded
                      ? SizedBox(
                    height: MediaQuery.of(ctx).size.height - 60, // 减去100像素留空
                    child: WebViewWidget(controller: ctx.read<WebCubit>().controller),
                  )
                      : const Center(
                    child: Column(
                      mainAxisAlignment: MainAxisAlignment.center,
                      children: [
                        CircularProgressIndicator(color: Color(0xFF7691fa)),
                        SizedBox(height: 16),
                        Text('加载中...'),
                      ],
                    ),
                  ),
                  // 添加升级遮罩层
                  if (state.isUpgrading)
                    Container(
                      color: Colors.black54,
                      child: const Center(
                        child: Column(
                          mainAxisAlignment: MainAxisAlignment.center,
                          children: [
                            CircularProgressIndicator(color: Color(0xFF7691fa)),
                            SizedBox(height: 16),
                            Text('资源更新中...', style: TextStyle(color: Colors.white)),
                          ],
                        ),
                      ),
                    ),
                ],
              ),
              bottomNavigationBar: state.showBottomNavBar
                  ? BottomNavigationBar(
                type: BottomNavigationBarType.fixed,
                currentIndex: state.selectedIndex,
                selectedItemColor: Color(0xFF7691fa),
                unselectedItemColor: Color(0xFF969799),
                onTap: (index) {
                  // 更新选中索引
                  ctx.read<WebCubit>().updateSelectedIndex(index);
                  // 根据 index 执行相应的操作
                },
                items: const [
                  BottomNavigationBarItem(
                    icon: Icon(Icons.home, size: 32),
                    label: '我的班级',
                  ),
                  BottomNavigationBarItem(
                    icon: Icon(Icons.contact_page, size: 32),
                    label: '通讯录',
                  ),
                  BottomNavigationBarItem(
                    icon: Icon(Icons.find_in_page, size: 32),
                    label: '发现',
                  ),
                  BottomNavigationBarItem(
                    icon: Icon(Icons.person, size: 32),
                    label: '我的',
                  ),
                ],
              )
                  : null,
            ),
          );
        },
        listener: (context, state) {
          if (state.suggestUpgrade) {
            context.read<WebCubit>().suggestUpgrade(context);
          } else if (state.orientationCmdFlag) {
            context.read<WebCubit>().getOrientation(context);
          } else if (state.windowInfoCmdFlag) {
            context.read<WebCubit>().getWindowInfo(context);
          } else if (state.chooseImageCmdFlag) {
            context.read<WebCubit>().chooseImage(context);
          } else if (state.chooseVideoCmdFlag) {
            context.read<WebCubit>().chooseVideo(context);
          }
        },
      ),
    );
  }

  AppBar _buildAppBar(BuildContext ctx, WebState state) {
    return AppBar(
      title: Text(state.title, style: TextStyle(color: Color(state.titleColor), fontSize: 18)),
      centerTitle: true,
      automaticallyImplyLeading: false,
      backgroundColor: Color(state.bgColor),
      actionsIconTheme: IconThemeData(color: Colors.white),
      leading: state.opIcon == 'back'
          ? IconButton(
        icon: const Icon(Icons.arrow_back, color: Colors.white),
        onPressed: () {
          ctx.read<WebCubit>().handleBack();
        },
      )
          : (state.opIcon == 'home'
          ? IconButton(
        icon: const Icon(Icons.home, color: Colors.white),
        onPressed: () {
          ctx.read<WebCubit>().handleHome();
        },
      )
          : null),
    );
  }

  Drawer _buildDrawer(BuildContext ctx, WebState state) {
    return Drawer(
        width: MediaQuery.of(ctx).size.width * 0.8,
        child: Column(children: [
          DrawerHeader(
            decoration: BoxDecoration(
              color: Color(0xFF7691FA),
            ),
            child: Align(
              alignment: Alignment.centerLeft,
              child: Text(
                '设置',
                style: TextStyle(
                  // color: Theme.of(ctx).colorScheme.onPrimary,
                  fontSize: 24,
                  color: Colors.white,
                ),
              ),
            ),
          ),
          Expanded(
            child: SingleChildScrollView(
              child: Column(
                crossAxisAlignment: CrossAxisAlignment.stretch,
                children: [
                  Card(
                    margin: const EdgeInsets.symmetric(horizontal: 16, vertical: 2),
                    shape: RoundedRectangleBorder(
                      borderRadius: BorderRadius.circular(6),
                    ),
                    child: Column(
                      children: [
                        ListTile(
                          leading: const Icon(Icons.lock, size: 20),
                          title: const Text('账号与安全', style: TextStyle(fontSize: 14)),
                          onTap: () {
                            Navigator.pop(ctx);
                            ctx.read<WebCubit>().goAccount();
                          },
                          contentPadding: const EdgeInsets.symmetric(horizontal: 16, vertical: 4),
                          trailing: Icon(Icons.arrow_forward_ios, size: 14),
                          dense: true,
                          visualDensity: VisualDensity.compact,
                        ),
                      ],
                    ),
                  ),
                  SizedBox(height: 8),
                  Card(
                    margin: const EdgeInsets.symmetric(horizontal: 16, vertical: 2),
                    shape: RoundedRectangleBorder(
                      borderRadius: BorderRadius.circular(6),
                    ),
                    child: Column(
                      children: [
                        ListTile(
                          leading: const Icon(Icons.book_outlined, size: 20),
                          title: const Text('版本记录', style: TextStyle(fontSize: 14)),
                          onTap: () {
                            Navigator.pop(ctx);
                            router.push(
                              '/link',
                              extra: {'url': 'https://bxr.banxiaoer.net/apps/index.html', 'title': '版本记录'},
                            );
                          },
                          contentPadding: const EdgeInsets.symmetric(horizontal: 16, vertical: 4),
                          trailing: Icon(Icons.arrow_forward_ios, size: 14),
                          dense: true,
                          visualDensity: VisualDensity.compact,
                        ),
                        Divider(height: 1, thickness: 0.5, indent: 16, endIndent: 16),
                        ListTile(
                          leading: const Icon(Icons.book_outlined, size: 20),
                          title: const Text('用户协议', style: TextStyle(fontSize: 14)),
                          onTap: () {
                            Navigator.pop(ctx);
                            router.push(
                              '/link',
                              extra: {'url': 'https://www.baidu.com/duty/', 'title': '用户协议'},
                            );
                          },
                          contentPadding: const EdgeInsets.symmetric(horizontal: 16, vertical: 4),
                          trailing: Icon(Icons.arrow_forward_ios, size: 14),
                          dense: true,
                          visualDensity: VisualDensity.compact,
                        ),
                        Divider(height: 1, thickness: 0.5, indent: 16, endIndent: 16),
                        ListTile(
                          leading: const Icon(Icons.book_outlined, size: 20),
                          title: const Text('隐私设置', style: TextStyle(fontSize: 14)),
                          onTap: () {
                            Navigator.pop(ctx);
                            router.push(
                              '/link',
                              extra: {'url': 'https://www.baidu.com/duty/', 'title': '隐私设置'},
                            );
                          },
                          contentPadding: const EdgeInsets.symmetric(horizontal: 16, vertical: 4),
                          trailing: Icon(Icons.arrow_forward_ios, size: 14),
                          dense: true,
                          visualDensity: VisualDensity.compact,
                        ),
                        Divider(height: 1, thickness: 0.5, indent: 16, endIndent: 16),
                        ListTile(
                          leading: const Icon(Icons.book_outlined, size: 20),
                          title: const Text('关于', style: TextStyle(fontSize: 14)),
                          onTap: () {
                            Navigator.pop(ctx);
                            router.push(
                              '/link',
                              extra: {'url': 'https://bxr.banxiaoer.net/apps/produce.html', 'title': '关于'},
                            );
                          },
                          contentPadding: const EdgeInsets.symmetric(horizontal: 16, vertical: 4),
                          trailing: Icon(Icons.arrow_forward_ios, size: 14),
                          dense: true,
                          visualDensity: VisualDensity.compact,
                        ),
                      ],
                    ),
                  ),
                  SizedBox(height: 8),
                  Card(
                    margin: const EdgeInsets.symmetric(horizontal: 16, vertical: 2),
                    shape: RoundedRectangleBorder(
                      borderRadius: BorderRadius.circular(6),
                    ),
                    child: Column(
                      children: [
                        ListTile(
                          leading: const Icon(Icons.cleaning_services, size: 20),
                          title: const Text('清理缓存', style: TextStyle(fontSize: 14)),
                          onTap: () {
                            Navigator.pop(ctx);
                            _showClearCacheDialog(ctx);
                          },
                          contentPadding: const EdgeInsets.symmetric(horizontal: 16, vertical: 4),
                          dense: true,
                          visualDensity: VisualDensity.compact,
                        ),
                        Divider(height: 1, thickness: 0.5, indent: 16, endIndent: 16),
                        ListTile(
                          leading: const Icon(Icons.logout, size: 20),
                          title: const Text('退出登录', style: TextStyle(fontSize: 14)),
                          onTap: () {
                            Navigator.pop(ctx);
                            ctx.read<WebCubit>().logout();
                          },
                          contentPadding: const EdgeInsets.symmetric(horizontal: 16, vertical: 4),
                          dense: true,
                          visualDensity: VisualDensity.compact,
                        ),
                      ],
                    ),
                  ),
                  SizedBox(height: 8),
                  Card(
                    margin: const EdgeInsets.symmetric(horizontal: 16, vertical: 2),
                    shape: RoundedRectangleBorder(
                      borderRadius: BorderRadius.circular(6),
                    ),
                    child: Column(
                      children: [
                        ListTile(
                          leading: const Icon(Icons.timeline, size: 20),
                          title: const Text('切换日志模式', style: TextStyle(fontSize: 14)),
                          onTap: () {
                            Navigator.pop(ctx);
                            ctx.read<WebCubit>().handleToggleDebug();
                          },
                          contentPadding: const EdgeInsets.symmetric(horizontal: 16, vertical: 4),
                          // trailing: Icon(Icons.arrow_forward_ios, size: 14),
                          dense: true,
                          visualDensity: VisualDensity.compact, // 视觉密度设为紧凑
                        ),
                      ],
                    ),
                  ),
                ],
              ),
            ),
          ),
          const Divider(),
          Container(
            width: double.infinity,
            padding: const EdgeInsets.all(1),
            child: Center(
              child: Column(
                children: [
                  Text(
                    EnvConfig.isDev() ? '开发版' : '正式版',
                    style: TextStyle(
                      color: Colors.grey,
                      fontSize: 14,
                    ),
                  ),
                  SizedBox(height: 4),
                  Text(
                    'Version ${Constant.appVersion}-${state.h5Version}',
                    style: TextStyle(
                      color: Colors.grey,
                      fontSize: 12,
                    ),
                  ),
                  SizedBox(height: 8),
                  Text(
                    'Copyright © 中山班小二科技有限公司',
                  ),
                  SizedBox(height: 8),
                ],
              ),
            ),
          ),
        ]));
  }

  void _showClearCacheDialog(BuildContext ctx) {
    showDialog(
      context: ctx,
      builder: (BuildContext context) {
        return AlertDialog(
          title: Text('清理缓存'),
          content: Text('清理缓存后将需要重新登录,是否继续?'),
          actions: <Widget>[
            TextButton(
              child: Text('取消'),
              onPressed: () {
                Navigator.of(context).pop();
              },
            ),
            TextButton(
              child: Text('确认'),
              onPressed: () {
                Navigator.of(context).pop();
                var webCubit = ctx.read<WebCubit>();
                webCubit.clearStorage();
                webCubit.goLogin();
              },
            ),
          ],
        );
      },
    );
  }
}