Files
MWClash/lib/views/config/scripts.dart
chen08209 6e404ab19c Fix windows some issues
Optimize overwrite handle

Optimize access control page

Optimize some details
2025-12-12 14:33:03 +08:00

224 lines
6.5 KiB
Dart

import 'package:fl_clash/common/common.dart';
import 'package:fl_clash/enum/enum.dart';
import 'package:fl_clash/models/models.dart';
import 'package:fl_clash/pages/editor.dart';
import 'package:fl_clash/providers/app.dart';
import 'package:fl_clash/providers/config.dart';
import 'package:fl_clash/state.dart';
import 'package:fl_clash/widgets/input.dart';
import 'package:fl_clash/widgets/list.dart';
import 'package:fl_clash/widgets/null_status.dart';
import 'package:fl_clash/widgets/pop_scope.dart';
import 'package:fl_clash/widgets/scaffold.dart';
import 'package:fl_clash/widgets/theme.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
class ScriptsView extends ConsumerStatefulWidget {
const ScriptsView({super.key});
@override
ConsumerState<ScriptsView> createState() => _ScriptsViewState();
}
class _ScriptsViewState extends ConsumerState<ScriptsView> {
final _key = utils.id;
Future<void> _handleDelScript(String id) async {
final res = await globalState.showMessage(
message: TextSpan(
text: appLocalizations.deleteTip(appLocalizations.script),
),
);
if (res != true) {
return;
}
ref.read(scriptsProvider.notifier).del(id);
ref.read(selectedItemProvider(_key).notifier).value = '';
}
void _handleSelected(String id) {
ref.read(selectedItemProvider(_key).notifier).update((value) {
if (value == id) {
return '';
}
return id;
});
}
Widget _buildContent(List<Script> scripts, String selectedScriptId) {
if (scripts.isEmpty) {
return NullStatus(
illustration: ScriptEmptyIllustration(),
label: appLocalizations.nullTip(appLocalizations.script),
);
}
return ListView.builder(
padding: EdgeInsets.symmetric(vertical: 16),
itemCount: scripts.length,
itemBuilder: (_, index) {
final script = scripts[index];
return CommonSelectedListItem(
isSelected: selectedScriptId == script.id,
title: Text(
script.label,
style: context.textTheme.bodyLarge,
maxLines: 3,
),
onSelected: () {
_handleSelected(script.id);
},
onPressed: () {
_handleSelected(script.id);
},
);
},
);
}
Future<void> _handleEditorSave(
BuildContext _,
String title,
String content, {
Script? script,
}) async {
Script newScript =
script?.copyWith(label: title, content: content) ??
Script.create(label: title, content: content);
if (newScript.label.isEmpty) {
final res = await globalState.showCommonDialog<String>(
child: InputDialog(
title: appLocalizations.save,
value: '',
hintText: appLocalizations.pleaseEnterScriptName,
validator: (value) {
if (value == null || value.isEmpty) {
return appLocalizations.emptyTip(appLocalizations.name);
}
if (value != script?.label) {
final isExits = ref.read(scriptsProvider.notifier).isExits(value);
if (isExits) {
return appLocalizations.existsTip(appLocalizations.name);
}
}
return null;
},
),
);
if (res == null || res.isEmpty) {
return;
}
newScript = newScript.copyWith(label: res);
}
if (newScript.label != script?.label) {
final isExits = ref
.read(scriptsProvider.notifier)
.isExits(newScript.label);
if (isExits) {
globalState.showMessage(
message: TextSpan(
text: appLocalizations.existsTip(appLocalizations.name),
),
);
return;
}
}
ref.read(scriptsProvider.notifier).setScript(newScript);
if (mounted) {
Navigator.of(context).pop();
}
}
Future<bool> _handleEditorPop(
BuildContext _,
String title,
String content,
String raw, {
Script? script,
}) async {
if (content == raw) {
return true;
}
final res = await globalState.showMessage(
message: TextSpan(text: appLocalizations.saveChanges),
);
if (res == true && mounted) {
_handleEditorSave(context, title, content, script: script);
} else {
return true;
}
return false;
}
void _handleToEditor([String? id]) {
final script = ref.read(scriptsProvider.select((state) => state.get(id)));
final title = script?.label ?? '';
final raw = script?.content ?? scriptTemplate;
BaseNavigator.push(
context,
EditorPage(
titleEditable: true,
title: title,
supportRemoteDownload: true,
onSave: (context, title, content) {
_handleEditorSave(context, title, content, script: script);
},
onPop: (context, title, content) {
return _handleEditorPop(context, title, content, raw, script: script);
},
languages: const [Language.javaScript],
content: raw,
),
);
}
@override
Widget build(BuildContext context) {
final scripts = ref.watch(scriptsProvider);
final selectedScriptId = ref.watch(selectedItemProvider(_key));
return CommonPopScope(
onPop: (_) {
if (selectedScriptId.isNotEmpty) {
ref.read(selectedItemProvider(_key).notifier).value = '';
return false;
}
Navigator.of(context).pop();
return false;
},
child: CommonScaffold(
actions: [
if (selectedScriptId.isNotEmpty) ...[
CommonMinIconButtonTheme(
child: IconButton.filledTonal(
onPressed: () {
_handleDelScript(selectedScriptId);
},
icon: Icon(Icons.delete),
),
),
SizedBox(width: 2),
],
CommonMinFilledButtonTheme(
child: selectedScriptId.isNotEmpty
? FilledButton(
onPressed: () {
_handleToEditor(selectedScriptId);
},
child: Text(appLocalizations.edit),
)
: FilledButton.tonal(
onPressed: () {
_handleToEditor();
},
child: Text(appLocalizations.add),
),
),
SizedBox(width: 8),
],
body: _buildContent(scripts, selectedScriptId),
title: appLocalizations.script,
),
);
}
}