-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy pathutils.dart
More file actions
580 lines (544 loc) · 16 KB
/
utils.dart
File metadata and controls
580 lines (544 loc) · 16 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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
import 'dart:io';
import 'package:device_info_plus/device_info_plus.dart';
import 'package:flutter/services.dart';
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
import 'package:permission_handler/permission_handler.dart';
import 'package:remixicon/remixicon.dart';
import 'package:simple_live_app/app/app_style.dart';
import 'package:intl/intl.dart';
import 'package:package_info_plus/package_info_plus.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:simple_live_app/app/log.dart';
import 'package:simple_live_app/requests/common_request.dart';
import 'package:url_launcher/url_launcher_string.dart';
typedef TextValidate = bool Function(String text);
class Utils {
static late PackageInfo packageInfo;
static DateFormat dateFormat = DateFormat("MM-dd HH:mm");
static DateFormat dateFormatWithYear = DateFormat("yyyy-MM-dd HH:mm");
static DateFormat timeFormat = DateFormat("HH:mm:ss");
/// 处理时间
static String parseTime(DateTime? dt) {
if (dt == null) {
return "";
}
var dtNow = DateTime.now();
if (dt.year == dtNow.year &&
dt.month == dtNow.month &&
dt.day == dtNow.day) {
return "${dt.hour.toString().padLeft(2, '0')}:${dt.minute.toString().padLeft(2, '0')}";
}
if (dt.year == dtNow.year) {
return dateFormat.format(dt);
}
return dateFormatWithYear.format(dt);
}
/// 提示弹窗
/// - `content` 内容
/// - `title` 弹窗标题
/// - `confirm` 确认按钮内容,留空为确定
/// - `cancel` 取消按钮内容,留空为取消
static Future<bool> showAlertDialog(
String content, {
String title = '',
String confirm = '',
String cancel = '',
bool selectable = false,
List<Widget>? actions,
}) async {
var result = await Get.dialog(
AlertDialog(
title: Text(title),
content: Container(
constraints: const BoxConstraints(
maxHeight: 400,
),
child: SingleChildScrollView(
child: Padding(
padding: AppStyle.edgeInsetsV12,
child: selectable ? SelectableText(content) : Text(content),
),
),
),
actions: [
...?actions,
TextButton(
onPressed: (() => Get.back(result: false)),
child: Text(cancel.isEmpty ? "取消" : cancel),
),
TextButton(
onPressed: (() => Get.back(result: true)),
child: Text(confirm.isEmpty ? "确定" : confirm),
),
],
),
);
return result ?? false;
}
/// 提示弹窗
/// - `content` 内容
/// - `title` 弹窗标题
/// - `confirm` 确认按钮内容,留空为确定
static Future<bool> showMessageDialog(String content,
{String title = '', String confirm = '', bool selectable = false}) async {
var result = await Get.dialog(
AlertDialog(
title: Text(title),
content: Padding(
padding: AppStyle.edgeInsetsV12,
child: selectable ? SelectableText(content) : Text(content),
),
actions: [
TextButton(
onPressed: (() => Get.back(result: true)),
child: Text(confirm.isEmpty ? "确定" : confirm),
),
],
),
);
return result ?? false;
}
static void showRightDialog({
required String title,
Function()? onDismiss,
required Widget child,
double width = 320,
bool useSystem = false,
}) {
SmartDialog.show(
alignment: Alignment.topRight,
animationBuilder: (controller, child, animationParam) {
//从右到左
return SlideTransition(
position: Tween<Offset>(
begin: const Offset(1, 0),
end: Offset.zero,
).animate(controller.view),
child: child,
);
},
useSystem: useSystem,
maskColor: Colors.transparent,
animationTime: const Duration(milliseconds: 200),
builder: (context) => Container(
width: width + MediaQuery.of(context).padding.right,
padding: EdgeInsets.only(right: MediaQuery.of(context).padding.right),
decoration: BoxDecoration(
color: Get.theme.cardColor,
borderRadius: const BorderRadius.only(
topLeft: Radius.circular(4),
bottomLeft: Radius.circular(4),
),
),
child: SafeArea(
left: false,
right: false,
child: MediaQuery(
data: const MediaQueryData(padding: EdgeInsets.zero),
child: Column(
children: [
ListTile(
visualDensity: VisualDensity.compact,
contentPadding: EdgeInsets.zero,
leading: IconButton(
onPressed: () {
SmartDialog.dismiss(status: SmartStatus.allCustom).then(
(value) => onDismiss?.call(),
);
},
icon: const Icon(Icons.arrow_back),
),
title: Text(
title,
style: Get.textTheme.titleMedium,
),
),
Divider(
height: 1,
color: Colors.grey.withAlpha(25),
),
Expanded(
child: child,
),
],
),
),
),
),
);
}
static void hideRightDialog() {
SmartDialog.dismiss(status: SmartStatus.allCustom);
}
static Future showBottomSheet({
required String title,
required Widget child,
double maxWidth = 600,
}) async {
var result = await showModalBottomSheet(
context: Get.context!,
constraints: BoxConstraints(
maxWidth: maxWidth,
),
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.only(
topLeft: Radius.circular(12),
topRight: Radius.circular(12),
),
),
builder: (_) => Column(
children: [
ListTile(
contentPadding: const EdgeInsets.only(
left: 12,
),
title: Text(title),
trailing: IconButton(
onPressed: Get.back,
icon: const Icon(Remix.close_line),
),
),
Expanded(
child: child,
),
],
),
);
return result;
}
/// 文本编辑的弹窗
/// - `content` 编辑框默认的内容
/// - `title` 弹窗标题
/// - `confirm` 确认按钮内容
/// - `cancel` 取消按钮内容
static Future<String?> showEditTextDialog(
String content, {
String title = '',
String? hintText,
String confirm = '',
String cancel = '',
TextValidate? validate,
}) async {
final TextEditingController textEditingController =
TextEditingController(text: content);
var result = await Get.dialog(
AlertDialog(
title: Text(title),
content: Padding(
padding: AppStyle.edgeInsetsT12,
child: TextField(
controller: textEditingController,
decoration: InputDecoration(
border: const OutlineInputBorder(),
//prefixText: title,
contentPadding: AppStyle.edgeInsetsA12,
hintText: hintText ?? title,
),
// style: TextStyle(
// height: 1.0,
// color: Get.isDarkMode ? Colors.white : Colors.black),
autofocus: true,
),
),
actions: [
TextButton(
onPressed: Get.back,
child: const Text("取消"),
),
TextButton(
onPressed: () {
if (validate != null && !validate(textEditingController.text)) {
return;
}
Get.back(result: textEditingController.text);
},
child: const Text("确定"),
),
],
),
// barrierColor:
// Get.isDarkMode ? Colors.grey.withOpacity(.3) : Colors.black38,
);
return result;
}
static Future<T?> showOptionDialog<T>(
List<T> contents,
T value, {
String title = '',
}) async {
var result = await Get.dialog(
SimpleDialog(
title: Text(title),
children: contents
.map(
(e) => RadioListTile<T>(
title: Text(e.toString()),
value: e,
groupValue: value,
onChanged: (e) {
Get.back(result: e);
},
),
)
.toList(),
),
);
return result;
}
/// 多段指引用户内容的弹窗
/// - `content` 内容:可滚动
/// - `title` 顶部弹窗标题
/// - `actions` 底部按钮
static Future<T?> showInformationHelpDialog<T>({
required List<Widget> content,
Widget? title,
List<Widget>? actions,
}) async {
var result = await Get.dialog(
AlertDialog(
title: title ?? const Text("帮助"),
scrollable: true,
content: SingleChildScrollView(child: ListBody(children: content)),
actions: actions??[
TextButton(
onPressed: Get.back,
child: const Text("确定"),
),
],
),
);
return result;
}
static Future showStatement() async {
var text = await rootBundle.loadString("assets/statement.txt");
var result = await showAlertDialog(
text,
selectable: true,
title: "免责声明",
confirm: "已阅读并同意",
cancel: "退出",
);
if (!result) {
exit(0);
}
}
static Future<T?> showMapOptionDialog<T>(
Map<T, String> contents,
T value, {
String title = '',
}) async {
var result = await Get.dialog(
SimpleDialog(
title: Text(title),
children: contents.keys
.map(
(e) => RadioListTile<T>(
title: Text((contents[e] ?? '-').tr),
value: e,
groupValue: value,
onChanged: (e) {
Get.back(result: e);
},
),
)
.toList(),
),
);
return result;
}
static void checkUpdate({bool showMsg = false}) async {
try {
int currentVer = Utils.parseVersion(packageInfo.version);
CommonRequest request = CommonRequest();
var versionInfo = await request.checkUpdate();
if (versionInfo.versionNum > currentVer) {
Get.dialog(
AlertDialog(
title: Text(
"发现新版本 ${versionInfo.version}",
textAlign: TextAlign.center,
style: const TextStyle(fontSize: 18),
),
content: Text(
versionInfo.versionDesc,
style: const TextStyle(fontSize: 14, height: 1.4),
),
actionsPadding: AppStyle.edgeInsetsH12,
actions: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Expanded(
child: TextButton(
onPressed: () {
Get.back();
},
child: const Text("取消"),
),
),
AppStyle.hGap12,
Expanded(
child: ElevatedButton(
style: ElevatedButton.styleFrom(
elevation: 0,
),
onPressed: () {
launchUrlString(
versionInfo.downloadUrl,
mode: LaunchMode.externalApplication,
);
},
child: const Text("更新"),
),
),
],
),
],
),
);
} else {
if (showMsg) {
SmartDialog.showToast("当前已经是最新版本了");
}
}
} catch (e) {
Log.logPrint(e);
if (showMsg) {
SmartDialog.showToast("检查更新失败");
}
}
}
static int parseVersion(String version) {
var sp = version.split('.');
var num = "";
for (var item in sp) {
num = num + item.padLeft(2, '0');
}
return int.parse(num);
}
static String onlineToString(int num) {
if (num >= 10000) {
return "${(num / 10000.0).toStringAsFixed(1)}万";
}
return num.toString();
}
/// 检查相册权限
static Future<bool> checkPhotoPermission() async {
try {
if (!Platform.isIOS) {
return true;
}
var status = await Permission.photos.status;
if (status == PermissionStatus.granted) {
return true;
}
status = await Permission.photos.request();
if (status.isGranted) {
return true;
} else {
SmartDialog.showToast(
"请授予相册访问权限",
);
return false;
}
} catch (e) {
return false;
}
}
static final DeviceInfoPlugin deviceInfo = DeviceInfoPlugin();
/// 检查文件权限
static Future<bool> checkStorgePermission() async {
try {
if (!Platform.isAndroid) {
return true;
}
Permission permission = Permission.storage;
var androidIndo = await deviceInfo.androidInfo;
if (androidIndo.version.sdkInt >= 33) {
permission = Permission.manageExternalStorage;
}
var status = await permission.status;
if (status == PermissionStatus.granted) {
return true;
}
status = await permission.request();
if (status.isGranted) {
return true;
} else {
SmartDialog.showToast(
"请授予文件访问权限",
);
return false;
}
} catch (e) {
return false;
}
}
///16进制颜色转换
static Color convertHexColor(String hexColor) {
hexColor = hexColor.replaceAll("#", "");
if (hexColor.length == 4) {
hexColor = "00$hexColor";
}
if (hexColor.length == 6) {
var R = int.parse(hexColor.substring(0, 2), radix: 16);
var G = int.parse(hexColor.substring(2, 4), radix: 16);
var B = int.parse(hexColor.substring(4, 6), radix: 16);
return Color.fromARGB(255, R, G, B);
}
if (hexColor.length == 8) {
var A = int.parse(hexColor.substring(0, 2), radix: 16);
var R = int.parse(hexColor.substring(2, 4), radix: 16);
var G = int.parse(hexColor.substring(4, 6), radix: 16);
var B = int.parse(hexColor.substring(6, 8), radix: 16);
return Color.fromARGB(A, R, G, B);
}
return Colors.white;
}
/// 复制内容到剪贴板
static void copyToClipboard(String text) async {
try {
await Clipboard.setData(ClipboardData(text: text));
SmartDialog.showToast("已复制到剪贴板");
} catch (e) {
Log.logPrint(e);
SmartDialog.showToast("复制到剪贴板失败: $e");
}
}
/// 获取剪贴板内容
static Future<String?> getClipboard() async {
try {
var content = await Clipboard.getData(Clipboard.kTextPlain);
if (content == null) {
SmartDialog.showToast("无法读取剪贴板内容");
return null;
}
return content.text;
} catch (e) {
Log.logPrint(e);
SmartDialog.showToast("读取剪切板内容失败:$e");
}
return null;
}
static bool isRegexFormat(String keyword) {
return keyword.startsWith('/') &&
keyword.endsWith('/') &&
keyword.length > 2;
}
static String removeRegexFormat(String keyword) {
return keyword.substring(1, keyword.length - 1);
}
static String parseFileSize(int size) {
if (size < 1024) {
return "$size B";
}
if (size < 1024 * 1024) {
return "${(size / 1024).toStringAsFixed(2)} KB";
}
if (size < 1024 * 1024 * 1024) {
return "${(size / 1024 / 1024).toStringAsFixed(2)} MB";
}
return "${(size / 1024 / 1024 / 1024).toStringAsFixed(2)} GB";
}
}