import 'dart:convert'; import 'package:farm_tpf/custom_model/Plant.dart'; import 'package:farm_tpf/custom_model/SuppliesUsing.dart'; import 'package:farm_tpf/data/api/app_exception.dart'; import 'package:farm_tpf/data/repository/repository.dart'; import 'package:farm_tpf/presentation/custom_widgets/bloc/media_helper_bloc.dart'; import 'package:farm_tpf/presentation/custom_widgets/widget_loading.dart'; import 'package:farm_tpf/presentation/custom_widgets/widget_media_picker.dart'; import 'package:farm_tpf/presentation/custom_widgets/widget_text_form_field.dart'; import 'package:farm_tpf/presentation/custom_widgets/widget_utils.dart'; import 'package:farm_tpf/presentation/screens/actions/bloc/action_detail_bloc.dart'; import 'package:farm_tpf/presentation/screens/actions/controller/ChangeSupplyUsing.dart'; import 'package:farm_tpf/presentation/screens/actions/plant/widget_plant_supply.dart'; import 'package:farm_tpf/presentation/screens/actions/state_management_helper/change_file_controller.dart'; import 'package:farm_tpf/presentation/screens/actions/state_management_helper/change_supply.dart'; import 'package:farm_tpf/utils/const_common.dart'; import 'package:farm_tpf/utils/const_string.dart'; import 'package:farm_tpf/utils/const_style.dart'; import 'package:farm_tpf/utils/pref.dart'; import 'package:farm_tpf/utils/validators.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:flutter_datetime_picker/flutter_datetime_picker.dart'; import 'package:get/get.dart'; import 'package:intl/intl.dart'; import 'package:keyboard_dismisser/keyboard_dismisser.dart'; import 'package:pattern_formatter/pattern_formatter.dart'; import 'package:farm_tpf/utils/formatter.dart'; import '../util_action.dart'; class EditActionPlantScreen extends StatefulWidget { final int cropId; final bool isEdit; final int activityId; EditActionPlantScreen( {@required this.cropId, this.isEdit = false, this.activityId}); @override _EditActionPlantScreenState createState() => _EditActionPlantScreenState(); } class _EditActionPlantScreenState extends State { final GlobalKey _scaffoldKey = new GlobalKey(); final _repository = Repository(); GlobalKey _formKey = GlobalKey(); bool _autoValidate = false; Plant _plant = Plant(); var pref = LocalPref(); final _descriptionController = TextEditingController(); final _quantityController = TextEditingController(); final _densityController = TextEditingController(); final _executeByController = TextEditingController(); List suppliesUsing = new List(); String executeTimeView; DateTime executeTime = DateTime.now(); List filePaths = List(); var changeFileController = Get.put(ChangeFileController()); Future getSharedPrefs() async { var currentFullName = await pref.getString(DATA_CONST.CURRENT_FULL_NAME); _executeByController.text = currentFullName ?? ""; } @override void initState() { super.initState(); getSharedPrefs(); changeFileController.initValue(); _plant.suppliesUsing = new List(); var parsedExecuteDate = DateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'").format(executeTime); _plant.executeDate = "$parsedExecuteDate"; executeTimeView = DateFormat("dd/MM/yyyy HH:mm").format(executeTime); _plant.cropId = widget.cropId; } _validateInputs() async { if (_formKey.currentState.validate()) { _formKey.currentState.save(); LoadingDialog.showLoadingDialog(context); filePaths = Get.find().newFiles; List newSups = []; suppliesUsing.forEach((sup) { var newSup = sup; newSup.suppliesInWarehouseId = sup.tbSuppliesInWarehouseId; newSups.add(newSup); }); _plant.suppliesUsing = newSups; _plant.mediaDel = Get.find().deleteFiles; var activityPlant = jsonEncode(_plant.toJson()).toString(); //ADD NEW if (_plant.activityId == null) { _repository.createAction((value) { LoadingDialog.hideLoadingDialog(context); Get.back(result: value); Utils.showSnackBarSuccess(message: label_add_success); }, (error) { LoadingDialog.hideLoadingDialog(context); Utils.showSnackBarError(message: AppException.handleError(error)); }, apiAddAction: ConstCommon.apiAddPlant, paramActivity: ConstCommon.paramsActionPlant, activityAction: activityPlant, filePaths: filePaths); } else { //UPDATE _repository.updateAction((value) { LoadingDialog.hideLoadingDialog(context); Get.back(result: value); Utils.showSnackBarSuccess(message: label_update_success); }, (error) { LoadingDialog.hideLoadingDialog(context); Utils.showSnackBarError(message: AppException.handleError(error)); }, apiUpdateAction: ConstCommon.apiUpdatePlant, paramActivity: ConstCommon.paramsActionPlant, activityAction: activityPlant, filePaths: filePaths); } } else { _autoValidate = true; } } Widget _btnExecuteTimePicker() { return FlatButton( padding: EdgeInsets.only(top: 0.0, right: 0.0, bottom: 0.0, left: 0.0), onPressed: () { DatePicker.showDateTimePicker(context, showTitleActions: true, onChanged: (date) {}, onConfirm: (date) { setState(() { var parsedDate = DateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'").format(date); _plant.executeDate = "$parsedDate"; executeTimeView = DateFormat("dd/MM/yyyy HH:mm").format(date); }); }, currentTime: executeTime, locale: LocaleType.vi); }, child: Container( padding: EdgeInsets.only(top: 0.0, right: 0.0, bottom: 10.5, left: 0.0), decoration: BoxDecoration( border: kBorderTextField, ), child: Row( children: [ Expanded( child: Text( //TODO: check condition executeTimeView == null ? "$executeTime" : executeTimeView, style: TextStyle(fontSize: 14.0, color: Colors.black87), )), Icon( Icons.date_range, color: Colors.blue, ), ], ))); } Widget _quantityField() { return WidgetTextFormFieldNumber( hintValue: "Số lượng cây trồng", textController: _quantityController, onSaved: (newValue) { _plant.quantity = newValue.parseDoubleThousand(); }, ); } Widget _densityField() { return TextFormField( keyboardType: TextInputType.text, decoration: InputDecoration(labelText: "Mật độ"), controller: _densityController, onSaved: (newValue) { _plant.density = newValue; }, ); } Widget _desciptionField() { return TextFormField( keyboardType: TextInputType.text, decoration: InputDecoration(labelText: "Ghi chú"), controller: _descriptionController, onSaved: (newValue) { _plant.description = newValue; }, ); } Widget _executeByField() { return TextFormField( keyboardType: TextInputType.text, decoration: InputDecoration(labelText: "Người thực hiện"), enabled: false, controller: _executeByController, onSaved: (newValue) {}, ); } _actionAppBar() { IconButton iconButton; if (1 == 1) { iconButton = IconButton( icon: Icon( Icons.done, color: Colors.black, ), onPressed: () { FocusScopeNode currentFocus = FocusScope.of(context); if (!currentFocus.hasPrimaryFocus) { currentFocus.unfocus(); } if (Get.find().selectedSupplyId > 0) { Utils.showDialogConfirmSupply(onConfirm: () { Get.back(); _validateInputs(); }); } else { _validateInputs(); } }, ); return [iconButton]; } return [Container()]; } @override Widget build(BuildContext context) => KeyboardDismisser( gestures: [ GestureType.onTap, GestureType.onPanUpdateDownDirection, ], child: Scaffold( key: _scaffoldKey, appBar: AppBar( centerTitle: true, title: Text(plot_action_plant), actions: _actionAppBar()), body: KeyboardDismisser( child: MultiBlocProvider( providers: [ BlocProvider( create: (context) => ActionDetailBloc(repository: Repository()) ..add(FetchData( isNeedFetchData: widget.isEdit, apiActivity: ConstCommon.apiDetailPlant, activityId: widget.activityId))), BlocProvider( create: (context) => MediaHelperBloc()..add(ChangeListMedia(items: [])), ) ], child: Form( key: _formKey, autovalidate: _autoValidate, child: SingleChildScrollView( padding: EdgeInsets.all(8.0), child: BlocConsumer( listener: (context, state) async { if (state is ActionDetailFailure) { LoadingDialog.hideLoadingDialog(context); } else if (state is ActionDetailSuccess) { LoadingDialog.hideLoadingDialog(context); _plant = Plant.fromJson(state.item); _plant.activityId = widget.activityId; _quantityController.text = _plant.quantity .formatNumtoStringDecimal(); _densityController.text = _plant.density; _descriptionController.text = _plant.description; _executeByController.text = _plant.executeBy; try { executeTime = DateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'") .parse(_plant.executeDate); } catch (_) {} executeTimeView = DateFormat("dd/MM/yyyy HH:mm") .format(executeTime); //Show media if (Validators.stringNotNullOrEmpty( _plant.media)) { BlocProvider.of(context) .add(ChangeListMedia( items: UtilAction .convertFilePathToMedia( _plant.media))); } //list supply suppliesUsing = _plant.suppliesUsing; Get.find() .changeInitList(suppliesUsing); } else if (state is ActionDetailInitial) { print("init"); } else if (state is ActionDetailLoading) { print("loading"); LoadingDialog.showLoadingDialog(context); } }, builder: (context, state) { return Column( children: [ Container( width: double.infinity, child: Text( "Ngày thực hiện *", style: TextStyle( color: Colors.black54, fontSize: 13.0), ), ), _btnExecuteTimePicker(), SizedBox( height: 8.0, ), _quantityField(), SizedBox( height: 8.0, ), _densityField(), SizedBox( height: 8.0, ), _desciptionField(), SizedBox( height: 8.0, ), _executeByField(), SizedBox( height: 8.0, ), WidgetPlantSupply( currentItems: [], onChangeSupplies: (value) { suppliesUsing = value; }), SizedBox( height: 8.0, ), BlocBuilder( builder: (context, state) { if (state is MediaHelperSuccess) { return WidgetMediaPicker( currentItems: state.items, onChangeFiles: (newPathFiles, deletePathFiles) async { Get.find() .change(newPathFiles, deletePathFiles); }); } else { return Center( child: CircularProgressIndicator()); } }), ], ); }, ), )))))); @override void dispose() { _quantityController.dispose(); _densityController.dispose(); _descriptionController.dispose(); _executeByController.dispose(); super.dispose(); } }