mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-03-29 06:59:46 +08:00
308 lines
9.4 KiB
Dart
308 lines
9.4 KiB
Dart
/*
|
|
* Copyright 2023 Hongen Wang All rights reserved.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
library flutter_json_widget;
|
|
|
|
import 'dart:convert';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:proxypin/l10n/app_localizations.dart';
|
|
import 'package:proxypin/ui/component/json/theme.dart';
|
|
import 'package:proxypin/ui/component/json/toast.dart';
|
|
|
|
class JsonViewer extends StatelessWidget {
|
|
final dynamic jsonObj;
|
|
final ColorTheme colorTheme;
|
|
|
|
const JsonViewer(this.jsonObj, {super.key, required this.colorTheme});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return DefaultTextStyle.merge(
|
|
style: const TextStyle(
|
|
fontWeight: FontWeight.w600,
|
|
),
|
|
child: getContentWidget(jsonObj));
|
|
}
|
|
|
|
Widget getContentWidget(dynamic content) {
|
|
if (content is List) {
|
|
return JsonArrayViewer(content, notRoot: false, colorTheme: colorTheme);
|
|
} else if (content is Map<String, dynamic>) {
|
|
return JsonObjectViewer(content, notRoot: false, colorTheme: colorTheme);
|
|
} else {
|
|
return Text(content?.toString() ?? '');
|
|
}
|
|
}
|
|
}
|
|
|
|
class JsonObjectViewer extends StatefulWidget {
|
|
final ColorTheme colorTheme;
|
|
|
|
final Map<String, dynamic> jsonObj;
|
|
final bool notRoot;
|
|
|
|
const JsonObjectViewer(this.jsonObj, {super.key, this.notRoot = false, required this.colorTheme});
|
|
|
|
@override
|
|
JsonObjectViewerState createState() => JsonObjectViewerState();
|
|
}
|
|
|
|
class JsonObjectViewerState extends State<JsonObjectViewer> {
|
|
Map<String, bool> openFlag = {};
|
|
|
|
@override
|
|
void didUpdateWidget(covariant JsonObjectViewer oldWidget) {
|
|
super.didUpdateWidget(oldWidget);
|
|
openFlag = {};
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
if (widget.notRoot) {
|
|
return Container(
|
|
padding: const EdgeInsets.only(left: 14.0),
|
|
child: Column(crossAxisAlignment: CrossAxisAlignment.start, children: _getList()),
|
|
);
|
|
}
|
|
return Column(crossAxisAlignment: CrossAxisAlignment.start, children: _getList());
|
|
}
|
|
|
|
_getList() {
|
|
List<Widget> list = [];
|
|
for (MapEntry entry in widget.jsonObj.entries) {
|
|
if (openFlag[entry.key] == null) {
|
|
openFlag[entry.key] = widget.notRoot == false && _isExtensible(entry.value);
|
|
}
|
|
|
|
list.add(Row(
|
|
children: <Widget>[
|
|
getKeyWidget(entry),
|
|
Text(':', style: TextStyle(color: widget.colorTheme.colon)),
|
|
const SizedBox(width: 3),
|
|
_copyValue(context, _getValueWidget(entry.value, widget.colorTheme), entry.value),
|
|
],
|
|
));
|
|
list.add(const SizedBox(height: 4));
|
|
|
|
if ((openFlag[entry.key] ?? false) && entry.value != null) {
|
|
list.add(getContentWidget(entry.value, widget.colorTheme));
|
|
}
|
|
}
|
|
return list;
|
|
}
|
|
|
|
// key
|
|
Widget getKeyWidget(MapEntry entry) {
|
|
//是否有子层级
|
|
if (_isExtensible(entry.value)) {
|
|
return InkWell(
|
|
onTap: () {
|
|
setState(() {
|
|
openFlag[entry.key] = !(openFlag[entry.key] ?? false);
|
|
});
|
|
},
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: [
|
|
(openFlag[entry.key] ?? false)
|
|
? const Icon(Icons.keyboard_arrow_down, size: 18)
|
|
: const Icon(Icons.keyboard_arrow_right, size: 18),
|
|
Text(entry.key, style: TextStyle(color: widget.colorTheme.propertyKey)),
|
|
],
|
|
));
|
|
}
|
|
|
|
return Row(children: [
|
|
const Icon(Icons.keyboard_arrow_right, color: Color.fromARGB(0, 0, 0, 0), size: 18),
|
|
Text(entry.key, style: TextStyle(color: widget.colorTheme.propertyKey)),
|
|
]);
|
|
}
|
|
|
|
static getContentWidget(dynamic content, ColorTheme colorTheme) {
|
|
if (content is List) {
|
|
return JsonArrayViewer(content, notRoot: true, colorTheme: colorTheme);
|
|
} else {
|
|
return JsonObjectViewer(content, notRoot: true, colorTheme: colorTheme);
|
|
}
|
|
}
|
|
}
|
|
|
|
class JsonArrayViewer extends StatefulWidget {
|
|
final ColorTheme colorTheme;
|
|
final List<dynamic> jsonArray;
|
|
final bool notRoot;
|
|
|
|
const JsonArrayViewer(this.jsonArray, {super.key, this.notRoot = false, required this.colorTheme});
|
|
|
|
@override
|
|
State<JsonArrayViewer> createState() => _JsonArrayViewerState();
|
|
}
|
|
|
|
class _JsonArrayViewerState extends State<JsonArrayViewer> {
|
|
late List<bool> openFlag;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
if (widget.notRoot) {
|
|
return Container(
|
|
padding: const EdgeInsets.only(left: 14.0),
|
|
child: Column(crossAxisAlignment: CrossAxisAlignment.start, children: _getList()));
|
|
}
|
|
return Column(crossAxisAlignment: CrossAxisAlignment.start, children: _getList());
|
|
}
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
openFlag = List.filled(widget.jsonArray.length, false);
|
|
}
|
|
|
|
_getList() {
|
|
List<Widget> list = [];
|
|
int i = 0;
|
|
for (dynamic content in widget.jsonArray) {
|
|
list.add(Row(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: <Widget>[
|
|
getKeyWidget(content, i),
|
|
Text(':', style: TextStyle(color: widget.colorTheme.colon)),
|
|
const SizedBox(width: 3),
|
|
_copyValue(context, _getValueWidget(content, widget.colorTheme), content)
|
|
],
|
|
));
|
|
list.add(const SizedBox(height: 4));
|
|
if (openFlag[i]) {
|
|
list.add(JsonObjectViewerState.getContentWidget(content, widget.colorTheme));
|
|
}
|
|
i++;
|
|
}
|
|
return list;
|
|
}
|
|
|
|
// key
|
|
Widget getKeyWidget(dynamic content, int index) {
|
|
//是否有子层级
|
|
if (_isExtensible(content)) {
|
|
return InkWell(
|
|
onTap: () {
|
|
setState(() {
|
|
openFlag[index] = !(openFlag[index]);
|
|
});
|
|
},
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
openFlag[index]
|
|
? const Icon(Icons.keyboard_arrow_down, size: 18)
|
|
: const Icon(Icons.keyboard_arrow_right, size: 18),
|
|
Text('[$index]', style: TextStyle(color: widget.colorTheme.propertyKey)),
|
|
],
|
|
));
|
|
}
|
|
|
|
return Row(children: [
|
|
const Icon(Icons.arrow_right, color: Color.fromARGB(0, 0, 0, 0), size: 18),
|
|
Text('[$index]', style: TextStyle(color: widget.colorTheme.propertyKey)),
|
|
]);
|
|
}
|
|
}
|
|
|
|
Widget _getValueWidget(dynamic value, ColorTheme colorTheme) {
|
|
if (value == null) {
|
|
return Text('null', style: TextStyle(color: colorTheme.keyword));
|
|
} else if (value is num) {
|
|
return Text(value.toString(), style: TextStyle(color: colorTheme.keyword));
|
|
} else if (value is String) {
|
|
return Text('"$value"', style: TextStyle(color: colorTheme.string));
|
|
} else if (value is bool) {
|
|
return Text(value.toString(), style: TextStyle(color: colorTheme.keyword));
|
|
} else if (value is List) {
|
|
if (value.isEmpty) {
|
|
return const Text('Array[0]');
|
|
} else {
|
|
return Text('Array<${_getTypeName(value[0])}>[${value.length}]');
|
|
}
|
|
}
|
|
return const Text('Object', style: TextStyle(fontSize: 13));
|
|
}
|
|
|
|
///获取值的类型
|
|
String _getTypeName(dynamic content) {
|
|
if (content is int) {
|
|
return 'int';
|
|
} else if (content is String) {
|
|
return 'String';
|
|
} else if (content is bool) {
|
|
return 'bool';
|
|
} else if (content is double) {
|
|
return 'double';
|
|
} else if (content is List) {
|
|
return 'List';
|
|
}
|
|
return 'Object';
|
|
}
|
|
|
|
/// 复制值
|
|
Widget _copyValue(BuildContext context, Widget child, Object? value) {
|
|
AppLocalizations localizations = AppLocalizations.of(context)!;
|
|
|
|
return Flexible(
|
|
child: InkWell(
|
|
child: child,
|
|
onSecondaryTapDown: (details) {
|
|
//显示复制菜单
|
|
showMenu(
|
|
context: context,
|
|
position: RelativeRect.fromLTRB(
|
|
details.globalPosition.dx,
|
|
details.globalPosition.dy,
|
|
details.globalPosition.dx,
|
|
details.globalPosition.dy,
|
|
),
|
|
items: [
|
|
PopupMenuItem(
|
|
height: 30,
|
|
child: Text(localizations.copy),
|
|
onTap: () {
|
|
Clipboard.setData(ClipboardData(text: value is String ? value : jsonEncode(value)))
|
|
.then((value) => Toast.show(localizations.copied, context));
|
|
})
|
|
]);
|
|
},
|
|
onTap: () {
|
|
Clipboard.setData(ClipboardData(text: value is String ? value : jsonEncode(value)))
|
|
.then((value) => Toast.show(localizations.copied, context));
|
|
}));
|
|
}
|
|
|
|
/// 是否可展开
|
|
bool _isExtensible(dynamic content) {
|
|
if (content == null) {
|
|
return false;
|
|
} else if (content is int) {
|
|
return false;
|
|
} else if (content is String) {
|
|
return false;
|
|
} else if (content is bool) {
|
|
return false;
|
|
} else if (content is double) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|