123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- // ignore_for_file: non_constant_identifier_names
- // ignore_for_file: camel_case_types
- // ignore_for_file: prefer_single_quotes
- // This file is automatically generated. DO NOT EDIT, all your changes would be lost.
- import 'package:flutter/material.dart' show debugPrint;
- import 'package:domain/entity/response/attendance_entity.dart';
- import 'package:domain/entity/response/check_success_entity.dart';
- import 'package:domain/entity/response/hotel_info_entity.dart';
- import 'package:domain/entity/response/id_name_entity.dart';
- import 'package:domain/entity/response/labour_request_add_option_entity.dart';
- import 'package:domain/entity/response/labour_request_edit_index_entity.dart';
- import 'package:domain/entity/response/labour_request_index_entity.dart';
- import 'package:domain/entity/response/labour_request_list_entity.dart';
- import 'package:domain/entity/server_time.dart';
- JsonConvert jsonConvert = JsonConvert();
- typedef JsonConvertFunction<T> = T Function(Map<String, dynamic> json);
- typedef EnumConvertFunction<T> = T Function(String value);
- typedef ConvertExceptionHandler = void Function(Object error, StackTrace stackTrace);
- extension MapSafeExt<K, V> on Map<K, V> {
- T? getOrNull<T>(K? key) {
- if (!containsKey(key) || key == null) {
- return null;
- } else {
- return this[key] as T?;
- }
- }
- }
- class JsonConvert {
- static ConvertExceptionHandler? onError;
- JsonConvertClassCollection convertFuncMap = JsonConvertClassCollection();
- /// When you are in the development, to generate a new model class, hot-reload doesn't find new generation model class, you can build on MaterialApp method called jsonConvert. ReassembleConvertFuncMap (); This method only works in a development environment
- /// https://flutter.cn/docs/development/tools/hot-reload
- /// class MyApp extends StatelessWidget {
- /// const MyApp({Key? key})
- /// : super(key: key);
- ///
- /// @override
- /// Widget build(BuildContext context) {
- /// jsonConvert.reassembleConvertFuncMap();
- /// return MaterialApp();
- /// }
- /// }
- void reassembleConvertFuncMap() {
- bool isReleaseMode = const bool.fromEnvironment('dart.vm.product');
- if (!isReleaseMode) {
- convertFuncMap = JsonConvertClassCollection();
- }
- }
- T? convert<T>(dynamic value, {EnumConvertFunction? enumConvert}) {
- if (value == null) {
- return null;
- }
- if (value is T) {
- return value;
- }
- try {
- return _asT<T>(value, enumConvert: enumConvert);
- } catch (e, stackTrace) {
- debugPrint('asT<$T> $e $stackTrace');
- if (onError != null) {
- onError!(e, stackTrace);
- }
- return null;
- }
- }
- List<T?>? convertList<T>(List<dynamic>? value, {EnumConvertFunction? enumConvert}) {
- if (value == null) {
- return null;
- }
- try {
- return value.map((dynamic e) => _asT<T>(e, enumConvert: enumConvert)).toList();
- } catch (e, stackTrace) {
- debugPrint('asT<$T> $e $stackTrace');
- if (onError != null) {
- onError!(e, stackTrace);
- }
- return <T>[];
- }
- }
- List<T>? convertListNotNull<T>(dynamic value, {EnumConvertFunction? enumConvert}) {
- if (value == null) {
- return null;
- }
- try {
- return (value as List<dynamic>).map((dynamic e) => _asT<T>(e, enumConvert: enumConvert)!).toList();
- } catch (e, stackTrace) {
- debugPrint('asT<$T> $e $stackTrace');
- if (onError != null) {
- onError!(e, stackTrace);
- }
- return <T>[];
- }
- }
- T? _asT<T extends Object?>(dynamic value,
- {EnumConvertFunction? enumConvert}) {
- final String type = T.toString();
- final String valueS = value.toString();
- if (enumConvert != null) {
- return enumConvert(valueS) as T;
- } else if (type == "String") {
- return valueS as T;
- } else if (type == "int") {
- final int? intValue = int.tryParse(valueS);
- if (intValue == null) {
- return double.tryParse(valueS)?.toInt() as T?;
- } else {
- return intValue as T;
- }
- } else if (type == "double") {
- return double.parse(valueS) as T;
- } else if (type == "DateTime") {
- return DateTime.parse(valueS) as T;
- } else if (type == "bool") {
- if (valueS == '0' || valueS == '1') {
- return (valueS == '1') as T;
- }
- return (valueS == 'true') as T;
- } else if (type == "Map" || type.startsWith("Map<")) {
- return value as T;
- } else {
- if (convertFuncMap.containsKey(type)) {
- if (value == null) {
- return null;
- }
- return convertFuncMap[type]!(value as Map<String, dynamic>) as T;
- } else {
- throw UnimplementedError('$type unimplemented,you can try running the app again');
- }
- }
- }
- //list is returned by type
- static M? _getListChildType<M>(List<Map<String, dynamic>> data) {
- if (<AttendanceEntity>[] is M) {
- return data.map<AttendanceEntity>((Map<String, dynamic> e) => AttendanceEntity.fromJson(e)).toList() as M;
- }
- if (<AttendanceList>[] is M) {
- return data.map<AttendanceList>((Map<String, dynamic> e) => AttendanceList.fromJson(e)).toList() as M;
- }
- if (<CheckSuccessEntity>[] is M) {
- return data.map<CheckSuccessEntity>((Map<String, dynamic> e) => CheckSuccessEntity.fromJson(e)).toList() as M;
- }
- if (<HotelInfoEntity>[] is M) {
- return data.map<HotelInfoEntity>((Map<String, dynamic> e) => HotelInfoEntity.fromJson(e)).toList() as M;
- }
- if (<HotelInfoMenus>[] is M) {
- return data.map<HotelInfoMenus>((Map<String, dynamic> e) => HotelInfoMenus.fromJson(e)).toList() as M;
- }
- if (<HotelInfoMenusChildren>[] is M) {
- return data.map<HotelInfoMenusChildren>((Map<String, dynamic> e) => HotelInfoMenusChildren.fromJson(e)).toList() as M;
- }
- if (<IdNameEntity>[] is M) {
- return data.map<IdNameEntity>((Map<String, dynamic> e) => IdNameEntity.fromJson(e)).toList() as M;
- }
- if (<LabourRequestAddOptionEntity>[] is M) {
- return data.map<LabourRequestAddOptionEntity>((Map<String, dynamic> e) => LabourRequestAddOptionEntity.fromJson(e)).toList() as M;
- }
- if (<LabourRequestAddOptionTemplateList>[] is M) {
- return data.map<LabourRequestAddOptionTemplateList>((Map<String, dynamic> e) => LabourRequestAddOptionTemplateList.fromJson(e)).toList() as M;
- }
- if (<LabourRequestAddOptionDepartmentList>[] is M) {
- return data.map<LabourRequestAddOptionDepartmentList>((Map<String, dynamic> e) => LabourRequestAddOptionDepartmentList.fromJson(e)).toList() as M;
- }
- if (<LabourRequestEditIndexEntity>[] is M) {
- return data.map<LabourRequestEditIndexEntity>((Map<String, dynamic> e) => LabourRequestEditIndexEntity.fromJson(e)).toList() as M;
- }
- if (<LabourRequestEditIndexTemplateList>[] is M) {
- return data.map<LabourRequestEditIndexTemplateList>((Map<String, dynamic> e) => LabourRequestEditIndexTemplateList.fromJson(e)).toList() as M;
- }
- if (<LabourRequestEditIndexDepartmentList>[] is M) {
- return data.map<LabourRequestEditIndexDepartmentList>((Map<String, dynamic> e) => LabourRequestEditIndexDepartmentList.fromJson(e)).toList() as M;
- }
- if (<LabourRequestIndexEntity>[] is M) {
- return data.map<LabourRequestIndexEntity>((Map<String, dynamic> e) => LabourRequestIndexEntity.fromJson(e)).toList() as M;
- }
- if (<LabourRequestIndexDepartmentList>[] is M) {
- return data.map<LabourRequestIndexDepartmentList>((Map<String, dynamic> e) => LabourRequestIndexDepartmentList.fromJson(e)).toList() as M;
- }
- if (<LabourRequestIndexStatusList>[] is M) {
- return data.map<LabourRequestIndexStatusList>((Map<String, dynamic> e) => LabourRequestIndexStatusList.fromJson(e)).toList() as M;
- }
- if (<LabourRequestListEntity>[] is M) {
- return data.map<LabourRequestListEntity>((Map<String, dynamic> e) => LabourRequestListEntity.fromJson(e)).toList() as M;
- }
- if (<LabourRequestListRows>[] is M) {
- return data.map<LabourRequestListRows>((Map<String, dynamic> e) => LabourRequestListRows.fromJson(e)).toList() as M;
- }
- if (<ServerTime>[] is M) {
- return data.map<ServerTime>((Map<String, dynamic> e) => ServerTime.fromJson(e)).toList() as M;
- }
- debugPrint("$M not found");
- return null;
- }
- static M? fromJsonAsT<M>(dynamic json) {
- if (json is M) {
- return json;
- }
- if (json is List) {
- return _getListChildType<M>(json.map((dynamic e) => e as Map<String, dynamic>).toList());
- } else {
- return jsonConvert.convert<M>(json);
- }
- }
- }
- class JsonConvertClassCollection {
- Map<String, JsonConvertFunction> convertFuncMap = {
- (AttendanceEntity).toString(): AttendanceEntity.fromJson,
- (AttendanceList).toString(): AttendanceList.fromJson,
- (CheckSuccessEntity).toString(): CheckSuccessEntity.fromJson,
- (HotelInfoEntity).toString(): HotelInfoEntity.fromJson,
- (HotelInfoMenus).toString(): HotelInfoMenus.fromJson,
- (HotelInfoMenusChildren).toString(): HotelInfoMenusChildren.fromJson,
- (IdNameEntity).toString(): IdNameEntity.fromJson,
- (LabourRequestAddOptionEntity).toString(): LabourRequestAddOptionEntity.fromJson,
- (LabourRequestAddOptionTemplateList).toString(): LabourRequestAddOptionTemplateList.fromJson,
- (LabourRequestAddOptionDepartmentList).toString(): LabourRequestAddOptionDepartmentList.fromJson,
- (LabourRequestEditIndexEntity).toString(): LabourRequestEditIndexEntity.fromJson,
- (LabourRequestEditIndexTemplateList).toString(): LabourRequestEditIndexTemplateList.fromJson,
- (LabourRequestEditIndexDepartmentList).toString(): LabourRequestEditIndexDepartmentList.fromJson,
- (LabourRequestIndexEntity).toString(): LabourRequestIndexEntity.fromJson,
- (LabourRequestIndexDepartmentList).toString(): LabourRequestIndexDepartmentList.fromJson,
- (LabourRequestIndexStatusList).toString(): LabourRequestIndexStatusList.fromJson,
- (LabourRequestListEntity).toString(): LabourRequestListEntity.fromJson,
- (LabourRequestListRows).toString(): LabourRequestListRows.fromJson,
- (ServerTime).toString(): ServerTime.fromJson,
- };
- bool containsKey(String type) {
- return convertFuncMap.containsKey(type);
- }
- JsonConvertFunction? operator [](String key) {
- return convertFuncMap[key];
- }
- }
|