|
@@ -4,14 +4,12 @@ import 'package:fis_lib_report/converts/text_size_converter.dart';
|
|
|
import 'package:fis_lib_report/converts/alignment_convert.dart';
|
|
|
import 'package:fis_lib_report/report/dateTimeElement.dart';
|
|
|
import 'package:fis_lib_report/report_info/date_time_info.dart';
|
|
|
-import 'package:fis_lib_report/report_info/element_tag_names.dart';
|
|
|
import 'package:fis_lib_report/report_info/report_info.dart';
|
|
|
-import 'package:flutter/cupertino.dart';
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
class RDateTime extends StatefulWidget {
|
|
|
final DateTimeElement dateTimeElement;
|
|
|
- RDateTime(this.dateTimeElement);
|
|
|
+ const RDateTime(this.dateTimeElement);
|
|
|
@override
|
|
|
State<StatefulWidget> createState() {
|
|
|
return _RDateTimeState();
|
|
@@ -23,7 +21,7 @@ class _RDateTimeState extends State<RDateTime> {
|
|
|
|
|
|
_RDateTimeState();
|
|
|
|
|
|
- String _dateTime = '';
|
|
|
+ String _dateTimeStr = '';
|
|
|
double _fontSize = 15.0;
|
|
|
double _width = 0;
|
|
|
TextStyle _style = const TextStyle();
|
|
@@ -62,7 +60,7 @@ class _RDateTimeState extends State<RDateTime> {
|
|
|
alignment: AlignmentConvert.verticalLayoutConvert(
|
|
|
dateTimeElement.verticalAlignment!),
|
|
|
child: Text(
|
|
|
- _dateTime,
|
|
|
+ _dateTimeStr,
|
|
|
style: _style,
|
|
|
textAlign: AlignmentConvert.horizontalAlignmentConvert(
|
|
|
dateTimeElement.horizontalAlignment),
|
|
@@ -103,23 +101,26 @@ class _RDateTimeState extends State<RDateTime> {
|
|
|
final format = dateTimeElement.dateTimeFormat;
|
|
|
final dateTimeInfo =
|
|
|
ReportInfo.instance.getElementInfo(dateTimeElement) as DateTimeInfo?;
|
|
|
-
|
|
|
- if (format != null &&
|
|
|
- dateTimeElement.tag!.name == TagNames.REPORTTIME &&
|
|
|
- dateTimeInfo!.text.isEmpty) {
|
|
|
- _dateTimeConvert(
|
|
|
- format, ReportInfo.instance.reportDate!.millisecondsSinceEpoch);
|
|
|
- }
|
|
|
if (dateTimeInfo != null && dateTimeInfo != _dateTimeInfo) {
|
|
|
+ if (_dateTimeInfo != null) {
|
|
|
+ _dateTimeInfo!.onTextChange.dispose();
|
|
|
+ }
|
|
|
_dateTimeInfo = dateTimeInfo;
|
|
|
_dateTimeInfo!.onTextChange.addListener((sender, e) {
|
|
|
- setState(() {
|
|
|
- final date = DateTime.parse(_dateTimeInfo!.text);
|
|
|
- _dateTimeConvert(format!, date.millisecondsSinceEpoch);
|
|
|
- });
|
|
|
+ if (mounted) {
|
|
|
+ setState(() {
|
|
|
+ final date = DateTime.parse(_dateTimeInfo!.text.trim());
|
|
|
+ _dateTimeConvert(format!, date.millisecondsSinceEpoch);
|
|
|
+ });
|
|
|
+ }
|
|
|
});
|
|
|
}
|
|
|
-
|
|
|
+ final date = DateTime.parse(_dateTimeInfo!.text.trim());
|
|
|
+ final dateStr = DateToStringConverter.dateTimeConvert(
|
|
|
+ format!, date.millisecondsSinceEpoch);
|
|
|
+ if (dateStr != _dateTimeStr) {
|
|
|
+ _dateTimeStr = dateStr;
|
|
|
+ }
|
|
|
_fontSize = dateTimeElement.fontSize ?? 15.0;
|
|
|
//TODO(Loki):常规模板暂未设置fontStyles,后续再支持
|
|
|
final fontStyles = dateTimeElement.fontStyles;
|
|
@@ -148,28 +149,11 @@ class _RDateTimeState extends State<RDateTime> {
|
|
|
);
|
|
|
|
|
|
_width = PtToPxConverter.ptToPx(
|
|
|
- TextSizeConvert.getTextSize(_dateTime, _style).width);
|
|
|
+ TextSizeConvert.getTextSize(_dateTimeStr, _style).width);
|
|
|
}
|
|
|
|
|
|
void _dateTimeConvert(String format, int timestamp) {
|
|
|
- if (format == 'yyyy-MM-dd') {
|
|
|
- _dateTime = DateToStringConverter.dateAndTimeToString(
|
|
|
- timestamp, {"y-m": "-", "m-d": "-"});
|
|
|
- } else if (format == 'yyyy年M月d日 HH:mm') {
|
|
|
- _dateTime = DateToStringConverter.dateAndTimeToString(
|
|
|
- timestamp, {"y-m": "年", "m-d": "月", "d-h": "日", "h-m": ":"});
|
|
|
- } else if (format == 'yyyy-MM-dd HH:mm') {
|
|
|
- _dateTime = DateToStringConverter.dateAndTimeToString(
|
|
|
- timestamp, {"y-m": "-", "m-d": "-", "h-m": ":"});
|
|
|
- } else if (format == "yyyy年M月d日") {
|
|
|
- _dateTime = DateToStringConverter.dateAndTimeToString(
|
|
|
- timestamp, {"y-m": "年", "m-d": "月", "d-h": "日"});
|
|
|
- } else if (format == 'yyyy.MM.dd') {
|
|
|
- _dateTime = DateToStringConverter.dateAndTimeToString(
|
|
|
- timestamp, {"y-m": ".", "m-d": "."});
|
|
|
- } else if (format == 'yyyy/MM/dd') {
|
|
|
- _dateTime = DateToStringConverter.dateAndTimeToString(
|
|
|
- timestamp, {"y-m": "/", "m-d": "/"});
|
|
|
- }
|
|
|
+ _dateTimeStr =
|
|
|
+ DateToStringConverter.dateTimeConvert(format, timestamp).trim();
|
|
|
}
|
|
|
}
|