mirror of
https://github.com/qinglong-app/qinglong_app.git
synced 2025-10-09 16:48:19 +08:00
484 lines
18 KiB
Dart
484 lines
18 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:flutter_slidable/flutter_slidable.dart';
|
|
import 'package:qinglong_app/base/base_state_widget.dart';
|
|
import 'package:qinglong_app/base/routes.dart';
|
|
import 'package:qinglong_app/base/theme.dart';
|
|
import 'package:qinglong_app/base/ui/empty_widget.dart';
|
|
import 'package:qinglong_app/base/ui/search_cell.dart';
|
|
import 'package:qinglong_app/module/env/env_bean.dart';
|
|
import 'package:qinglong_app/module/env/env_viewmodel.dart';
|
|
import 'package:qinglong_app/utils/extension.dart';
|
|
import 'package:qinglong_app/utils/utils.dart';
|
|
|
|
class EnvPage extends StatefulWidget {
|
|
const EnvPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_EnvPageState createState() => _EnvPageState();
|
|
}
|
|
|
|
class _EnvPageState extends State<EnvPage> {
|
|
final TextEditingController _searchController = TextEditingController();
|
|
String currentState = EnvViewModel.allStr;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_searchController.addListener(() {
|
|
setState(() {});
|
|
});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return BaseStateWidget<EnvViewModel>(
|
|
builder: (ref, model, child) {
|
|
List<EnvBean> prepareList = [];
|
|
List<EnvItemCell> list = [];
|
|
if (currentState == EnvViewModel.allStr) {
|
|
prepareList = model.list;
|
|
} else if (currentState == EnvViewModel.enabledStr) {
|
|
prepareList = model.enabledList;
|
|
} else {
|
|
prepareList = model.disabledList;
|
|
}
|
|
|
|
for (int i = 0; i < prepareList.length; i++) {
|
|
EnvBean value = prepareList[i];
|
|
if (_searchController.text.isEmpty ||
|
|
(value.name?.contains(_searchController.text) ?? false) ||
|
|
(value.value?.contains(_searchController.text) ?? false) ||
|
|
(value.remarks?.contains(_searchController.text) ?? false)) {
|
|
list.add(
|
|
EnvItemCell(
|
|
value,
|
|
i,
|
|
ref,
|
|
key: ValueKey(value.sId),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
return model.list.isEmpty
|
|
? const EmptyWidget()
|
|
: RefreshIndicator(
|
|
notificationPredicate: (_) {
|
|
return true;
|
|
},
|
|
color: Theme.of(context).primaryColor,
|
|
onRefresh: () async {
|
|
return model.loadData(false);
|
|
},
|
|
child: SlidableAutoCloseBehavior(
|
|
child: currentState == EnvViewModel.disabledStr
|
|
? ListView(
|
|
children: [
|
|
searchCell(context, ref),
|
|
...list,
|
|
],
|
|
)
|
|
: ReorderableListView(
|
|
keyboardDismissBehavior:
|
|
ScrollViewKeyboardDismissBehavior.onDrag,
|
|
header: searchCell(context, ref),
|
|
onReorder: (int oldIndex, int newIndex) {
|
|
if (list.length != model.list.length) {
|
|
"请先清空搜索关键词".toast();
|
|
return;
|
|
}
|
|
|
|
setState(
|
|
() {
|
|
//交换数据
|
|
if (newIndex > oldIndex) {
|
|
newIndex -= 1;
|
|
}
|
|
final EnvBean item =
|
|
model.list.removeAt(oldIndex);
|
|
model.list.insert(newIndex, item);
|
|
model.update(
|
|
item.sId ?? "", newIndex, oldIndex);
|
|
},
|
|
);
|
|
},
|
|
children: list,
|
|
),
|
|
),
|
|
);
|
|
},
|
|
model: envProvider,
|
|
onReady: (viewModel) {
|
|
viewModel.loadData(true);
|
|
},
|
|
);
|
|
}
|
|
|
|
Widget searchCell(BuildContext context, WidgetRef ref) {
|
|
return Container(
|
|
color: ref.watch(themeProvider).themeColor.settingBgColor(),
|
|
padding: const EdgeInsets.only(
|
|
left: 15,
|
|
),
|
|
child: Row(
|
|
children: [
|
|
Expanded(
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(
|
|
vertical: 10,
|
|
),
|
|
child: SearchCell(
|
|
controller: _searchController,
|
|
),
|
|
),
|
|
),
|
|
Material(
|
|
color: Colors.transparent,
|
|
child: PopupMenuButton<String>(
|
|
onSelected: (String result) {
|
|
currentState = result;
|
|
setState(() {});
|
|
},
|
|
itemBuilder: (BuildContext context) => [
|
|
PopupMenuItem(
|
|
child: Text(
|
|
EnvViewModel.allStr,
|
|
style: TextStyle(
|
|
color: currentState == EnvViewModel.allStr
|
|
? ref.watch(themeProvider).primaryColor
|
|
: ref.watch(themeProvider).themeColor.titleColor(),
|
|
fontSize: 14,
|
|
),
|
|
),
|
|
value: EnvViewModel.allStr,
|
|
),
|
|
PopupMenuItem(
|
|
child: Text(
|
|
EnvViewModel.enabledStr,
|
|
style: TextStyle(
|
|
color: currentState == EnvViewModel.enabledStr
|
|
? ref.watch(themeProvider).primaryColor
|
|
: ref.watch(themeProvider).themeColor.titleColor(),
|
|
fontSize: 14,
|
|
),
|
|
),
|
|
value: EnvViewModel.enabledStr,
|
|
),
|
|
PopupMenuItem(
|
|
child: Text(
|
|
EnvViewModel.disabledStr,
|
|
style: TextStyle(
|
|
color: currentState == EnvViewModel.disabledStr
|
|
? ref.watch(themeProvider).primaryColor
|
|
: ref.watch(themeProvider).themeColor.titleColor(),
|
|
fontSize: 14,
|
|
),
|
|
),
|
|
value: EnvViewModel.disabledStr,
|
|
),
|
|
],
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(
|
|
horizontal: 15,
|
|
vertical: 10,
|
|
),
|
|
child: Text(
|
|
"筛选",
|
|
style: TextStyle(
|
|
color: ref.watch(themeProvider).themeColor.descColor(),
|
|
fontSize: 14,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class EnvItemCell extends StatelessWidget {
|
|
final EnvBean bean;
|
|
final int index;
|
|
final WidgetRef ref;
|
|
|
|
const EnvItemCell(this.bean, this.index, this.ref, {Key? key})
|
|
: super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Slidable(
|
|
key: ValueKey(bean.sId),
|
|
endActionPane: ActionPane(
|
|
motion: const StretchMotion(),
|
|
extentRatio: 0.5,
|
|
children: [
|
|
SlidableAction(
|
|
backgroundColor: const Color(0xff5D5E70),
|
|
onPressed: (_) {
|
|
Navigator.of(context)
|
|
.pushNamed(Routes.routeAddEnv, arguments: bean);
|
|
},
|
|
foregroundColor: Colors.white,
|
|
icon: CupertinoIcons.pencil_outline,
|
|
),
|
|
SlidableAction(
|
|
backgroundColor: const Color(0xffA356D6),
|
|
onPressed: (_) {
|
|
enableEnv(context);
|
|
},
|
|
foregroundColor: Colors.white,
|
|
icon: bean.status == 0
|
|
? Icons.dnd_forwardslash
|
|
: Icons.check_circle_outline_sharp,
|
|
),
|
|
SlidableAction(
|
|
backgroundColor: const Color(0xffEA4D3E),
|
|
onPressed: (_) {
|
|
delEnv(context, ref);
|
|
},
|
|
foregroundColor: Colors.white,
|
|
icon: CupertinoIcons.delete,
|
|
),
|
|
],
|
|
),
|
|
child: SizedBox(
|
|
width: MediaQuery.of(context).size.width,
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Material(
|
|
color: ref.watch(themeProvider).themeColor.settingBgColor(),
|
|
child: InkWell(
|
|
onTap: () {
|
|
Navigator.of(context)
|
|
.pushNamed(Routes.routeEnvDetail, arguments: bean);
|
|
},
|
|
child: Container(
|
|
padding: const EdgeInsets.symmetric(
|
|
horizontal: 15,
|
|
vertical: 8,
|
|
),
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: [
|
|
Expanded(
|
|
child: Row(
|
|
children: [
|
|
bean.status == 1
|
|
? const SizedBox(
|
|
width: 18,
|
|
)
|
|
: Container(
|
|
padding: const EdgeInsets.symmetric(
|
|
horizontal: 5,
|
|
),
|
|
decoration: BoxDecoration(
|
|
borderRadius:
|
|
BorderRadius.circular(3),
|
|
border: Border.all(
|
|
color: ref
|
|
.watch(themeProvider)
|
|
.themeColor
|
|
.descColor(),
|
|
width: 1),
|
|
),
|
|
child: Text(
|
|
"${getIndexByIndex(context, index)}",
|
|
style: TextStyle(
|
|
color: ref
|
|
.watch(themeProvider)
|
|
.themeColor
|
|
.descColor(),
|
|
fontSize: 12,
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(
|
|
width: 5,
|
|
),
|
|
ConstrainedBox(
|
|
constraints: BoxConstraints.loose(
|
|
Size.fromWidth(
|
|
MediaQuery.of(context).size.width / 2,
|
|
),
|
|
),
|
|
child: Material(
|
|
color: Colors.transparent,
|
|
child: Text(
|
|
bean.name ?? "",
|
|
maxLines: 1,
|
|
style: TextStyle(
|
|
overflow: TextOverflow.ellipsis,
|
|
color: ref
|
|
.watch(themeProvider)
|
|
.themeColor
|
|
.titleColor(),
|
|
fontSize: 16,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(
|
|
width: 5,
|
|
),
|
|
ConstrainedBox(
|
|
constraints: BoxConstraints.loose(
|
|
Size.fromWidth(
|
|
MediaQuery.of(context).size.width / 3,
|
|
),
|
|
),
|
|
child: Visibility(
|
|
visible: bean.remarks != null &&
|
|
bean.remarks!.isNotEmpty,
|
|
child: Material(
|
|
color: Colors.transparent,
|
|
child: Text(
|
|
"(${bean.remarks})",
|
|
maxLines: 1,
|
|
style: TextStyle(
|
|
height: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
color: ref
|
|
.watch(themeProvider)
|
|
.themeColor
|
|
.descColor(),
|
|
fontSize: 12,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(
|
|
width: 7,
|
|
),
|
|
bean.status == 1
|
|
? Image.asset(
|
|
"assets/images/icon_disabled.png",
|
|
fit: BoxFit.cover,
|
|
width: 35,
|
|
)
|
|
: Image.asset(
|
|
"assets/images/icon_enable.png",
|
|
fit: BoxFit.cover,
|
|
width: 35,
|
|
)
|
|
],
|
|
),
|
|
),
|
|
const SizedBox(
|
|
width: 15,
|
|
),
|
|
Material(
|
|
color: Colors.transparent,
|
|
child: Text(
|
|
Utils.formatGMTTime(bean.timestamp ?? ""),
|
|
maxLines: 1,
|
|
style: TextStyle(
|
|
overflow: TextOverflow.ellipsis,
|
|
color: ref
|
|
.watch(themeProvider)
|
|
.themeColor
|
|
.descColor(),
|
|
fontSize: 12,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
const SizedBox(
|
|
height: 15,
|
|
),
|
|
Material(
|
|
color: Colors.transparent,
|
|
child: Text(
|
|
bean.value ?? "",
|
|
maxLines: 1,
|
|
style: TextStyle(
|
|
overflow: TextOverflow.ellipsis,
|
|
color:
|
|
ref.watch(themeProvider).themeColor.descColor(),
|
|
fontSize: 12,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
const Divider(
|
|
height: 1,
|
|
indent: 15,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
void enableEnv(BuildContext context) {
|
|
ref.read(envProvider).enableEnv(bean.sId!, bean.status!);
|
|
}
|
|
|
|
void delEnv(BuildContext context, WidgetRef ref) {
|
|
showCupertinoDialog(
|
|
useRootNavigator: false,
|
|
context: context,
|
|
builder: (context) => CupertinoAlertDialog(
|
|
title: const Text("确认删除"),
|
|
content: Text("确认删除环境变量 ${bean.name ?? ""} 吗"),
|
|
actions: [
|
|
CupertinoDialogAction(
|
|
child: const Text(
|
|
"取消",
|
|
style: TextStyle(
|
|
color: Color(0xff999999),
|
|
),
|
|
),
|
|
onPressed: () {
|
|
Navigator.of(context).pop();
|
|
},
|
|
),
|
|
CupertinoDialogAction(
|
|
child: Text(
|
|
"确定",
|
|
style: TextStyle(
|
|
color: ref.watch(themeProvider).primaryColor,
|
|
),
|
|
),
|
|
onPressed: () {
|
|
Navigator.of(context).pop();
|
|
ref.read(envProvider).delEnv(bean.sId!);
|
|
},
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
int getIndexByIndex(BuildContext context, int index) {
|
|
var list = ref.watch(envProvider.notifier).list;
|
|
int result = 0;
|
|
|
|
for (int i = 0; i <= index; i++) {
|
|
if (list.length > index && list[i].status == 0) {
|
|
result++;
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
}
|