Files
superport/lib/utils/phone_utils.dart
JiWoong Sul e7860ae028
Some checks failed
Flutter Test & Quality Check / Test on macos-latest (push) Has been cancelled
Flutter Test & Quality Check / Test on ubuntu-latest (push) Has been cancelled
Flutter Test & Quality Check / Build APK (push) Has been cancelled
feat: 소프트 딜리트 기능 전면 구현 완료
## 주요 변경사항
- Company, Equipment, License, Warehouse Location 모든 화면에 소프트 딜리트 구현
- 관리자 권한으로 삭제된 데이터 조회 가능 (includeInactive 파라미터)
- 데이터 무결성 보장을 위한 논리 삭제 시스템 완성

## 기능 개선
- 각 리스트 컨트롤러에 toggleIncludeInactive() 메서드 추가
- UI에 "비활성 포함" 체크박스 추가 (관리자 전용)
- API 데이터소스에 includeInactive 파라미터 지원

## 문서 정리
- 불필요한 문서 파일 제거 및 재구성
- CLAUDE.md 프로젝트 상태 업데이트 (진행률 80%)
- 테스트 결과 문서화 (test20250812v01.md)

## UI 컴포넌트
- Equipment 화면 위젯 모듈화 (custom_dropdown_field, equipment_basic_info_section)
- 폼 유효성 검증 강화

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-12 20:02:54 +09:00

169 lines
5.4 KiB
Dart

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
/// 전화번호 관련 유틸리티 클래스 (SRP, 재사용성, 테스트 용이성 중심)
class PhoneUtils {
/// 전화번호 입력 형식 지정용 InputFormatter
static final TextInputFormatter phoneInputFormatter =
_PhoneTextInputFormatter();
/// 전화번호 포맷팅 (뒤 4자리 하이페)
static String formatPhoneNumber(String phoneNumber) {
final digitsOnly = phoneNumber.replaceAll(RegExp(r'[^\d]'), '');
if (digitsOnly.isEmpty) return '';
if (digitsOnly.length > 8) {
return formatPhoneNumber(digitsOnly.substring(0, 8));
}
if (digitsOnly.length > 4) {
final frontPart = digitsOnly.substring(0, digitsOnly.length - 4);
final backPart = digitsOnly.substring(digitsOnly.length - 4);
return '$frontPart-$backPart';
}
return digitsOnly;
}
/// 접두사에 따른 전화번호 포맷팅
/// 010, 070, 050 등 0x0 번호: 0000-0000
/// 02, 031 등 지역번호: 000-0000 또는 0000-0000
static String formatPhoneNumberByPrefix(String prefix, String phoneNumber) {
final digitsOnly = phoneNumber.replaceAll(RegExp(r'[^\d]'), '');
if (digitsOnly.isEmpty) return '';
// 0x0 형태의 번호 (010, 070, 050 등)
if (prefix.length == 3 && prefix.startsWith('0') && prefix[2] == '0') {
// 8자리 처리: 0000-0000
if (digitsOnly.length == 8) {
return '${digitsOnly.substring(0, 4)}-${digitsOnly.substring(4)}';
} else if (digitsOnly.length > 8) {
final trimmed = digitsOnly.substring(0, 8);
return '${trimmed.substring(0, 4)}-${trimmed.substring(4)}';
} else if (digitsOnly.length > 4) {
return '${digitsOnly.substring(0, 4)}-${digitsOnly.substring(4)}';
}
}
// 지역번호 (02, 031, 032 등)
else {
// 7자리: 000-0000
if (digitsOnly.length == 7) {
return '${digitsOnly.substring(0, 3)}-${digitsOnly.substring(3)}';
}
// 8자리: 0000-0000
else if (digitsOnly.length == 8) {
return '${digitsOnly.substring(0, 4)}-${digitsOnly.substring(4)}';
}
// 그 외: 마지막 4자리 앞에 하이픈
else if (digitsOnly.length > 4) {
final frontPart = digitsOnly.substring(0, digitsOnly.length - 4);
final backPart = digitsOnly.substring(digitsOnly.length - 4);
return '$frontPart-$backPart';
}
}
return digitsOnly;
}
/// 포맷된 전화번호에서 숫자만 추출
static String extractDigitsOnly(String formattedPhoneNumber) {
return formattedPhoneNumber.replaceAll(RegExp(r'[^\d]'), '');
}
/// 전체 전화번호에서 접두사 추출 (없으면 기본값)
static String extractPhonePrefix(
String fullNumber,
List<String> phonePrefixes,
) {
if (fullNumber.isEmpty) return '010';
String digitsOnly = fullNumber.replaceAll(RegExp(r'[^\d]'), '');
for (String prefix in phonePrefixes) {
if (digitsOnly.startsWith(prefix)) {
return prefix;
}
}
return '010';
}
/// 접두사 제외한 번호 추출
static String extractPhoneNumberWithoutPrefix(
String fullNumber,
List<String> phonePrefixes,
) {
if (fullNumber.isEmpty) return '';
String digitsOnly = fullNumber.replaceAll(RegExp(r'[^\d]'), '');
for (String prefix in phonePrefixes) {
if (digitsOnly.startsWith(prefix)) {
return digitsOnly.substring(prefix.length);
}
}
return digitsOnly;
}
/// 접두사와 번호를 합쳐 전체 전화번호 생성 (포맷팅 적용)
static String getFullPhoneNumber(String prefix, String number) {
final remainingNumber = number.replaceAll(RegExp(r'[^\d]'), '');
if (remainingNumber.isEmpty) return '';
// formatPhoneNumberByPrefix를 사용하여 적절한 포맷팅 적용
return formatPhoneNumberByPrefix(prefix, remainingNumber);
}
/// 자주 사용되는 전화번호 접두사 목록 반환
static List<String> getCommonPhonePrefixes() {
return [
'010',
'011',
'016',
'017',
'018',
'019',
'070',
'080',
'02',
'031',
'032',
'033',
'041',
'042',
'043',
'044',
'051',
'052',
'053',
'054',
'055',
'061',
'062',
'063',
'064',
];
}
}
/// 전화번호 입력 형식 지정용 TextInputFormatter (내부 전용)
class _PhoneTextInputFormatter extends TextInputFormatter {
@override
TextEditingValue formatEditUpdate(
TextEditingValue oldValue,
TextEditingValue newValue,
) {
final digitsOnly = newValue.text.replaceAll(RegExp(r'[^\d]+'), '');
final trimmed =
digitsOnly.length > 11 ? digitsOnly.substring(0, 11) : digitsOnly;
String formatted = '';
if (trimmed.length > 7) {
formatted =
'${trimmed.substring(0, 3)}-${trimmed.substring(3, 7)}-${trimmed.substring(7)}';
} else if (trimmed.length > 3) {
formatted = '${trimmed.substring(0, 3)}-${trimmed.substring(3)}';
} else {
formatted = trimmed;
}
int selectionIndex =
newValue.selection.end + (formatted.length - newValue.text.length);
if (selectionIndex < 0) selectionIndex = 0;
if (selectionIndex > formatted.length) selectionIndex = formatted.length;
return TextEditingValue(
text: formatted,
selection: TextSelection.collapsed(offset: selectionIndex),
);
}
}