formatEditUpdate method

  1. @override
TextEditingValue formatEditUpdate(
  1. TextEditingValue oldValue,
  2. TextEditingValue newValue
)
override

Called when text is being typed or cut/copy/pasted in the EditableText.

You can override the resulting text based on the previous text value and the incoming new text value.

When formatters are chained, oldValue reflects the initial value of TextEditingValue at the beginning of the chain.

Implementation

@override
TextEditingValue formatEditUpdate(
  TextEditingValue oldValue,
  TextEditingValue newValue,
) {
  // ignore: parameter_assignments
  newValue = newValue.copyWith(
    text: newValue.text.replaceAll(RegExp(r'[^A-Z,a-z,0-9]'), ""),
  );
  if (_bankAccountLength != 0) {
    final digit = newValue.text.split("").last;
    final accountList = newValue.text.split("");
    accountList.removeLast();
    final account = accountList.join();
    if (bankCode == 001) {
      if (digit.contains(RegExp('[A-W, Y-Z, a-w, y-z]')) ||
          account.contains(RegExp('[A-Z, a-z]'))) {
        return oldValue;
      }
    } else if (bankCode == 237) {
      if (digit.contains(RegExp('[A-O, Q-Z, a-o, q-z]')) ||
          account.contains(RegExp('[A-Z, a-z]'))) {
        return oldValue;
      }
    } else if (bankCode == 104 || bankCode == 341) {
      if (newValue.text.contains(RegExp('[A-Z, a-z]'))) {
        return oldValue;
      }
    }
    if (newValue.text.length > 1) {
      final formtedOldValue =
          oldValue.text.replaceAll(RegExp(r'[^A-Z,a-z,0-9]'), "");
      if (newValue.text.length > formtedOldValue.length) {
        // ignore: parameter_assignments
        newValue = newValue.copyWith(
          text: newValue.text.replaceFirst(
            RegExp('[0-9, A-Z, a-z]'),
            "",
            bankCode == 104 ? 3 : 0,
          ),
        );
      }
    }
    final List<String> accountTextList = newValue.text
        .replaceAll(" ", "")
        .replaceAll("-", "")
        .replaceAll(".", "")
        .split('')
        .reversed
        .toList();
    if (bankCode == 104 && accountTextList.length > 9) {
      accountTextList.removeRange(
        accountTextList.length - 3,
        accountTextList.length,
      );
    }

    for (var i = accountTextList.length; i < _bankAccountLength; i++) {
      accountTextList.add('0');
    }

    if (bankCode == 237) {
      accountTextList.insert(4, ".");
    } else if (bankCode == 104) {
      if (accountType == AccountType.checking) {
        accountTextList.addAll([" ", " ", "1", "0", "0"]);
      } else {
        accountTextList.addAll([" ", " ", "3", "1", "0"]);
      }
    }
    accountTextList.insert(1, "-");
    return newValue.copyWith(
      text: accountTextList.reversed.join(),
      selection: TextSelection.fromPosition(
        TextPosition(offset: accountTextList.length),
      ),
    );
  } else {
    final accountTextList =
        newValue.text.replaceAll("-", "").split('').reversed.toList();
    if (accountTextList.length > 1) {
      accountTextList.insert(1, "-");
    }
    return newValue.copyWith(
      text: accountTextList.reversed.join(),
      selection: TextSelection.fromPosition(
        TextPosition(offset: accountTextList.length),
      ),
    );
  }
}