| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721 |
- import 'package:flutter/material.dart';
- import 'package:flutter/services.dart';
- import 'package:flutter_screenutil/flutter_screenutil.dart';
- import 'package:flutter_svg/flutter_svg.dart';
- import 'package:get/get.dart';
- import 'package:nomo/app/base/base_view.dart';
- import 'package:nomo/app/widgets/click_opacity.dart';
- import 'package:nomo/app/widgets/ix_app_bar.dart';
- import 'package:nomo/app/widgets/submit_btn.dart';
- import 'package:nomo/config/theme/theme_extensions/theme_extension.dart';
- import '../../../../config/theme/dark_theme_colors.dart';
- import '../../../../config/translations/strings_enum.dart';
- import '../../../../utils/device_manager.dart';
- import '../../../../utils/formater.dart';
- import '../../../constants/enums.dart';
- import '../../../data/sp/ix_sp.dart';
- import '../../../components/ix_snackbar.dart';
- import '../../../constants/assets.dart';
- import '../../../constants/iconfont/iconfont.dart';
- import '../../../dialog/all_dialog.dart';
- import '../../../routes/app_pages.dart';
- import '../../../widgets/ix_image.dart';
- import '../controllers/account_controller.dart';
- class AccountView extends BaseView<AccountController> {
- const AccountView({super.key});
- @override
- PreferredSizeWidget? get appBar => IXAppBar(title: Strings.account.tr);
- @override
- Widget buildContent(BuildContext context) {
- return Obx(() {
- return SingleChildScrollView(
- padding: EdgeInsets.symmetric(horizontal: 14.w, vertical: 10.w),
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- // Account 信息卡片
- // _buildAccountCard(isPremium),
- _buildAccountSection(),
- // Security Section
- if (!controller.apiController.isGuest)
- _buildSectionHeader(Strings.securitySection.tr),
- if (!controller.apiController.isGuest) _buildSecuritySection(),
- 20.verticalSpaceFromWidth,
- // 底部按钮
- _buildBottomButtons(),
- 20.verticalSpaceFromWidth,
- ],
- ),
- );
- });
- }
- /// 构建账户信息卡片
- Widget _buildAccountCard(bool isPremium) {
- return Container(
- decoration: BoxDecoration(
- color: Get.reactiveTheme.highlightColor,
- borderRadius: BorderRadius.circular(12.r),
- ),
- child: Column(
- children: [
- // Account 条目
- _buildAccountItem(isPremium),
- _buildDivider(),
- // UID 条目
- _buildUIDItem(),
- _buildDivider(),
- // Premium 功能列表
- _buildPremiumFeatures(isPremium),
- ],
- ),
- );
- }
- /// Account 条目
- Widget _buildAccountItem(bool isPremium) {
- return Container(
- height: 56.w,
- padding: EdgeInsets.symmetric(horizontal: 16.w),
- child: Row(
- children: [
- // 图标
- Container(
- width: 30.w,
- height: 30.w,
- decoration: BoxDecoration(
- color: Get.reactiveTheme.shadowColor,
- borderRadius: BorderRadius.circular(8.r),
- ),
- child: Icon(IconFont.icon29, size: 20.w, color: Colors.white),
- ),
- 10.horizontalSpace,
- // 标题
- Expanded(
- child: Text(
- Strings.account.tr,
- style: TextStyle(
- fontSize: 14.sp,
- color: Get.reactiveTheme.textTheme.bodyLarge!.color,
- fontWeight: FontWeight.w400,
- ),
- ),
- ),
- // 徽章
- IXImage(
- source: isPremium ? Assets.premium : Assets.free,
- width: isPremium ? 92.w : 64.w,
- height: 28.w,
- sourceType: ImageSourceType.asset,
- ),
- ],
- ),
- );
- }
- /// UID 条目
- Widget _buildUIDItem() {
- return ClickOpacity(
- onTap: () {
- Clipboard.setData(ClipboardData(text: controller.uid));
- Get.snackbar(Strings.copied.tr, 'UID ${Strings.copied.tr}');
- },
- child: Container(
- height: 56.w,
- padding: EdgeInsets.symmetric(horizontal: 16.w),
- child: Row(
- children: [
- // 图标
- Container(
- width: 30.w,
- height: 30.w,
- decoration: BoxDecoration(
- color: Get.reactiveTheme.shadowColor,
- borderRadius: BorderRadius.circular(8.r),
- ),
- child: Icon(IconFont.icon14, size: 20.w, color: Colors.white),
- ),
- 10.horizontalSpace,
- // UID
- Expanded(
- child: Text(
- controller.uid,
- style: TextStyle(
- fontSize: 14.sp,
- color: Get.reactiveTheme.textTheme.bodyLarge!.color,
- fontWeight: FontWeight.w400,
- ),
- ),
- ),
- // 复制图标
- Icon(
- IconFont.icon57,
- size: 20.w,
- color: Get.reactiveTheme.hintColor,
- ),
- ],
- ),
- ),
- );
- }
- Widget _buildPremiumFeatures(bool isPremium) {
- return Padding(
- padding: EdgeInsets.symmetric(horizontal: 14.w),
- child: Column(
- children: [
- _buildFeatureItem(IconFont.icon60, Strings.unlockAllFreeLocations.tr),
- _buildFeatureItem(IconFont.icon61, Strings.unlockSmartMode.tr),
- _buildFeatureItem(IconFont.icon62, Strings.unlockMultiHopMode.tr),
- _buildFeatureItem(
- IconFont.icon63,
- Strings.premiumCanShareXDevices.tr,
- ),
- _buildFeatureItem(
- IconFont.icon64,
- Strings.ownYourOwnPrivateServer.tr,
- ),
- _buildFeatureItem(IconFont.icon65, Strings.closeAds.tr),
- ],
- ),
- );
- }
- Widget _buildFeatureItem(IconData icon, String title) {
- return SizedBox(
- height: 44.w,
- child: Row(
- children: [
- Icon(icon, color: DarkThemeColors.subscriptionColor, size: 24.w),
- 12.horizontalSpace,
- Expanded(
- child: Text(
- title,
- style: TextStyle(
- fontSize: 13.sp,
- color: Get.reactiveTheme.hintColor,
- ),
- ),
- ),
- Container(
- width: 20.w,
- height: 20.w,
- decoration: BoxDecoration(
- shape: BoxShape.circle,
- color: DarkThemeColors.subscriptionSelectColor,
- ),
- child: Icon(Icons.check, color: Colors.white, size: 12.w),
- ),
- ],
- ),
- );
- }
- /// 底部按钮
- Widget _buildBottomButtons() {
- final isLight = ReactiveTheme.isLightTheme;
- return Column(
- children: [
- if (controller.apiController.isPremium) ...[
- if (controller.apiController.isGuest) ...[
- SubmitButton(
- text: Strings.changeSubscription.tr,
- bgColor: isLight
- ? Colors.black
- : Get.reactiveTheme.highlightColor,
- textColor: DarkThemeColors.subscriptionColor,
- onPressed: () {
- controller.toSubscription();
- },
- ),
- ] else ...[
- _buildSecondaryButton(
- text: Strings.changeSubscription.tr,
- icon: IconFont.icon23,
- onTap: () {
- controller.toSubscription();
- },
- ),
- ],
- ] else ...[
- // Upgrade to Premium 按钮
- _buildSecondaryButton(
- text: Strings.upgradeToPremium.tr,
- icon: IconFont.icon23,
- onTap: () {
- controller.toSubscription();
- },
- ),
- ],
- // 绑定邮箱 按钮
- if (controller.apiController.isGuest &&
- controller.apiController.isPremium) ...[
- 20.verticalSpaceFromWidth,
- _buildEmailButton(
- text: Strings.bindEmailMemberBenefits.tr,
- icon: IconFont.icon23,
- onTap: () {
- // TODO: 绑定邮箱
- AllDialog.showBindEmailMemberBenefits();
- },
- ),
- 10.verticalSpaceFromWidth,
- // 提示文字
- Text(
- Strings.bindingAccountEmailProtectsPreRights.tr,
- textAlign: TextAlign.center,
- style: TextStyle(
- fontSize: 12.sp,
- color: Get.reactiveTheme.hintColor,
- ),
- ),
- ],
- ],
- );
- }
- /// 次要按钮(黑色边框)
- Widget _buildSecondaryButton({
- required String text,
- required IconData icon,
- required VoidCallback onTap,
- }) {
- final isLight = ReactiveTheme.isLightTheme;
- return ClickOpacity(
- onTap: onTap,
- child: Container(
- height: 52.w,
- decoration: BoxDecoration(
- border: isLight
- ? null
- : Border.all(color: Get.reactiveTheme.dividerColor, width: 1.w),
- borderRadius: BorderRadius.circular(12.r),
- color: isLight ? Colors.black : null,
- ),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Text(
- text,
- style: TextStyle(
- fontSize: 16.sp,
- color: DarkThemeColors.subscriptionColor,
- fontWeight: FontWeight.w400,
- ),
- ),
- SizedBox(width: 8.w),
- Icon(icon, size: 20.w, color: DarkThemeColors.subscriptionColor),
- ],
- ),
- ),
- );
- }
- /// 次要按钮(黑色边框)
- Widget _buildEmailButton({
- required String text,
- required IconData icon,
- required VoidCallback onTap,
- }) {
- final isLight = ReactiveTheme.isLightTheme;
- return ClickOpacity(
- onTap: onTap,
- child: Container(
- height: 52.w,
- decoration: BoxDecoration(
- border: isLight
- ? null
- : Border.all(color: Get.reactiveTheme.dividerColor, width: 1.w),
- borderRadius: BorderRadius.circular(12.r),
- color: isLight ? Get.reactiveTheme.primaryColor : null,
- ),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Text(
- text,
- style: TextStyle(
- fontSize: 16.sp,
- color: isLight
- ? Colors.white
- : DarkThemeColors.subscriptionColor,
- fontWeight: FontWeight.w400,
- ),
- ),
- SizedBox(width: 8.w),
- Icon(
- icon,
- size: 20.w,
- color: isLight ? Colors.white : DarkThemeColors.subscriptionColor,
- ),
- ],
- ),
- ),
- );
- }
- /// 构建分割线
- Widget _buildDivider() {
- return Divider(height: 1.w, color: Get.reactiveTheme.dividerColor);
- }
- /// 构建分组标题
- Widget _buildSectionHeader(String title) {
- return Padding(
- padding: EdgeInsets.symmetric(vertical: 10.w),
- child: Text(
- title,
- style: TextStyle(
- fontSize: 16.sp,
- color: Get.reactiveTheme.hintColor,
- fontWeight: FontWeight.w500,
- ),
- ),
- );
- }
- /// Account 分组
- Widget _buildAccountSection() {
- return Obx(() {
- return Container(
- decoration: BoxDecoration(
- color: Get.reactiveTheme.highlightColor,
- borderRadius: BorderRadius.circular(12.r),
- ),
- child: Column(
- children: [
- _buildSettingItem(
- icon: IconFont.icon29,
- iconColor: Get.reactiveTheme.shadowColor,
- title: _getUserAccount().isNotEmpty
- ? _getUserAccount()
- : Strings.account.tr,
- trailing: Row(
- mainAxisSize: MainAxisSize.min,
- children: [
- IXImage(
- source: controller.apiController.userLevel == 3
- ? controller.apiController.remainTimeSeconds > 0
- ? Assets.premium
- : Assets.premiumExpired
- : controller.apiController.userLevel == 9999
- ? Assets.test
- : Assets.free,
- width: controller.apiController.userLevel == 3
- ? 92.w
- : 64.w,
- height: 28.w,
- sourceType: ImageSourceType.asset,
- ),
- ],
- ),
- onTap: () {
- Get.toNamed(Routes.ACCOUNT);
- },
- ),
- _buildDivider(),
- _buildSettingItem(
- icon: IconFont.icon14,
- iconColor: Get.reactiveTheme.shadowColor,
- title: 'UID ${formatDeviceId(DeviceManager.getCacheDeviceId())}',
- showInfo: true,
- trailing: ClickOpacity(
- onTap: () {
- Clipboard.setData(
- ClipboardData(text: DeviceManager.getCacheDeviceId()),
- );
- IXSnackBar.showIXSnackBar(
- title: Strings.copied.tr,
- message: Strings.copied.tr,
- );
- },
- child: Icon(
- IconFont.icon57,
- size: 20.w,
- color: Get.reactiveTheme.hintColor,
- ),
- ),
- onTap: () {},
- onInfoTap: () {
- AllDialog.showUidInfo();
- },
- ),
- _buildDivider(),
- // 根据用户类型显示不同的时间信息
- if (controller.apiController.isPremium) ...[
- // _buildSettingItem(
- // icon: IconFont.icon23,
- // iconColor: Get.reactiveTheme.shadowColor,
- // title: Strings.myPreCode.tr,
- // trailing: Row(
- // mainAxisSize: MainAxisSize.min,
- // children: [
- // Text(
- // '123***ADZ',
- // style: TextStyle(
- // fontSize: 13.sp,
- // color: Get.reactiveTheme.hintColor,
- // ),
- // ),
- // SizedBox(width: 4.w),
- // Icon(
- // IconFont.icon02,
- // size: 20.w,
- // color: Get.reactiveTheme.hintColor,
- // ),
- // ],
- // ),
- // onTap: () {
- // // TODO: 跳转到Pre Code页面
- // Get.toNamed(Routes.PRECODE);
- // },
- // ),
- // _buildDivider(),
- _buildSettingItem(
- icon: IconFont.icon30,
- iconColor: Get.reactiveTheme.shadowColor,
- title: Strings.validTerm.tr,
- trailing: Text(
- controller.apiController.remainTimeSeconds > 0
- ? controller.apiController.validTermText
- : Strings.expired.tr,
- style: TextStyle(
- fontSize: 13.sp,
- color: controller.apiController.remainTimeSeconds > 0
- ? Get.reactiveTheme.primaryColor
- : Colors.red,
- fontWeight: FontWeight.w500,
- ),
- ),
- onTap: () {
- // TODO: 跳转到有效期详情页面
- },
- ),
- ] else ...[
- _buildSettingItem(
- icon: IconFont.icon30,
- iconColor: Get.reactiveTheme.shadowColor,
- title: Strings.freeTime.tr,
- trailing: Text(
- controller.apiController.remainTimeFormatted,
- style: TextStyle(
- fontSize: 14.sp,
- color: controller.apiController.remainTimeSeconds > 0
- ? Get.reactiveTheme.primaryColor
- : Colors.red,
- fontWeight: FontWeight.w500,
- ),
- ),
- ),
- ],
- // _buildDivider(),
- // _buildSettingItem(
- // icon: IconFont.icon31,
- // iconColor: Get.reactiveTheme.shadowColor,
- // title: Strings.deviceAuthorization.tr,
- // trailing: Row(
- // mainAxisSize: MainAxisSize.min,
- // children: [
- // Text(
- // isPremium ? '1/4' : '0/1',
- // style: TextStyle(
- // fontSize: 13.sp,
- // color: Get.reactiveTheme.hintColor,
- // ),
- // ),
- // SizedBox(width: 4.w),
- // Icon(
- // IconFont.icon02,
- // size: 20.w,
- // color: Get.reactiveTheme.hintColor,
- // ),
- // ],
- // ),
- // onTap: () {
- // Get.toNamed(Routes.DEVICEAUTH);
- // },
- // ),
- ],
- ),
- );
- });
- }
- /// Security 分组
- Widget _buildSecuritySection() {
- return Container(
- decoration: BoxDecoration(
- color: Get.reactiveTheme.highlightColor,
- borderRadius: BorderRadius.circular(12.r),
- ),
- child: Column(
- children: [
- _buildSettingItem(
- icon: IconFont.icon11,
- iconColor: DarkThemeColors.settingSecurityLinearGradientStartColor,
- iconGradient: LinearGradient(
- colors: [
- DarkThemeColors.settingSecurityLinearGradientStartColor,
- DarkThemeColors.settingSecurityLinearGradientEndColor,
- ],
- begin: Alignment.topCenter,
- end: Alignment.bottomCenter,
- ),
- title: Strings.changePassword.tr,
- onTap: () {
- // TODO: 跳转到忘记密码页面
- Get.toNamed(Routes.FORGOTPWD);
- },
- ),
- _buildDivider(),
- _buildSettingItem(
- icon: IconFont.icon40,
- iconColor: DarkThemeColors.settingSecurityLinearGradientStartColor,
- iconGradient: LinearGradient(
- colors: [
- DarkThemeColors.settingSecurityLinearGradientStartColor,
- DarkThemeColors.settingSecurityLinearGradientEndColor,
- ],
- begin: Alignment.topCenter,
- end: Alignment.bottomCenter,
- ),
- title: Strings.deleteAccount.tr,
- onTap: () {
- AllDialog.showDeleteAccountConfirm(() {
- // 退出登录
- controller.handleDeleteAccount();
- });
- },
- ),
- _buildDivider(),
- _buildSettingItem(
- icon: IconFont.icon66,
- iconColor: DarkThemeColors.settingSecurityLinearGradientStartColor,
- iconGradient: LinearGradient(
- colors: [
- DarkThemeColors.settingSecurityLinearGradientStartColor,
- DarkThemeColors.settingSecurityLinearGradientEndColor,
- ],
- begin: Alignment.topCenter,
- end: Alignment.bottomCenter,
- ),
- title: Strings.logout.tr,
- titleColor: DarkThemeColors.errorColor,
- onTap: () {
- AllDialog.showLogoutConfirm(() {
- // 退出登录
- controller.handleLogout();
- });
- },
- ),
- ],
- ),
- );
- }
- /// 构建设置项
- Widget _buildSettingItem({
- IconData? icon,
- String? svgPath,
- required Color iconColor,
- Gradient? iconGradient,
- required String title,
- Color? titleColor,
- bool showInfo = false,
- Widget? trailing,
- VoidCallback? onTap,
- VoidCallback? onInfoTap,
- }) {
- // 确保至少提供了 icon 或 svgPath 之一
- assert(
- icon != null || svgPath != null,
- 'Must provide either icon or svgPath',
- );
- return ClickOpacity(
- onTap: onTap,
- child: Container(
- height: 56.w,
- padding: EdgeInsets.symmetric(horizontal: 14.w),
- child: Row(
- children: [
- // 图标
- Container(
- width: 30.w,
- height: 30.w,
- decoration: BoxDecoration(
- gradient: iconGradient,
- color: iconGradient == null ? iconColor : null,
- borderRadius: BorderRadius.circular(8.r),
- ),
- child: svgPath != null
- ? Padding(
- padding: EdgeInsets.all(5.w),
- child: SvgPicture.asset(
- svgPath,
- width: 20.w,
- height: 20.w,
- colorFilter: const ColorFilter.mode(
- Colors.white,
- BlendMode.srcIn,
- ),
- ),
- )
- : Icon(icon!, size: 20.w, color: Colors.white),
- ),
- 10.horizontalSpace,
- // 标题
- Expanded(
- child: Row(
- children: [
- Text(
- title,
- style: TextStyle(
- fontSize: 14.sp,
- color:
- titleColor ??
- Get.reactiveTheme.textTheme.bodyLarge!.color,
- fontWeight: FontWeight.w500,
- ),
- ),
- 4.horizontalSpace,
- if (showInfo)
- ClickOpacity(
- onTap: onInfoTap,
- child: Icon(
- IconFont.icon59,
- size: 20.w,
- color: Get.reactiveTheme.hintColor,
- ),
- ),
- ],
- ),
- ),
- // 右侧内容
- if (trailing != null) trailing,
- ],
- ),
- ),
- );
- }
- /// 获取用户账号显示文本
- String _getUserAccount() {
- final user = IXSP.getUser();
- if (user == null) return '';
- if (user.memberLevel == MemberLevel.normal.level) {
- return user.account?.username ?? '';
- }
- return '';
- }
- }
|