## 주요 변경사항 - 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>
462 lines
18 KiB
Dart
462 lines
18 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'dart:async';
|
|
import 'package:superport/core/constants/app_constants.dart';
|
|
import 'package:superport/models/company_model.dart';
|
|
import 'package:superport/screens/common/theme_shadcn.dart';
|
|
import 'package:superport/screens/common/components/shadcn_components.dart';
|
|
import 'package:superport/screens/common/widgets/pagination.dart';
|
|
import 'package:superport/screens/common/widgets/unified_search_bar.dart';
|
|
import 'package:superport/screens/common/widgets/standard_data_table.dart'
|
|
as std_table;
|
|
import 'package:superport/screens/common/widgets/standard_action_bar.dart';
|
|
import 'package:superport/screens/common/widgets/standard_states.dart';
|
|
import 'package:superport/screens/common/layouts/base_list_screen.dart';
|
|
// import 'package:superport/services/mock_data_service.dart'; // Mock 서비스 제거
|
|
import 'package:superport/screens/company/widgets/company_branch_dialog.dart';
|
|
import 'package:superport/screens/company/controllers/company_list_controller.dart';
|
|
|
|
/// shadcn/ui 스타일로 재설계된 회사 관리 화면 (통일된 UI 컴포넌트 사용)
|
|
class CompanyList extends StatefulWidget {
|
|
const CompanyList({super.key});
|
|
|
|
@override
|
|
State<CompanyList> createState() => _CompanyListState();
|
|
}
|
|
|
|
class _CompanyListState extends State<CompanyList> {
|
|
late CompanyListController _controller;
|
|
final TextEditingController _searchController = TextEditingController();
|
|
Timer? _debounceTimer;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_controller = CompanyListController();
|
|
_controller.initialize(pageSize: 10); // 통일된 초기화 방식
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_controller.dispose();
|
|
_searchController.dispose();
|
|
_debounceTimer?.cancel();
|
|
super.dispose();
|
|
}
|
|
|
|
/// 검색어 입력 처리 (디바운싱)
|
|
void _onSearchChanged(String value) {
|
|
_debounceTimer?.cancel();
|
|
_debounceTimer = Timer(AppConstants.searchDebounce, () {
|
|
_controller.search(value); // Controller가 페이지 리셋 처리
|
|
});
|
|
}
|
|
|
|
/// 회사 추가 화면으로 이동
|
|
void _navigateToAddScreen() async {
|
|
final result = await Navigator.pushNamed(context, '/company/add');
|
|
if (result == true) {
|
|
_controller.refresh();
|
|
}
|
|
}
|
|
|
|
/// 회사 삭제 처리
|
|
void _deleteCompany(int id) {
|
|
showDialog(
|
|
context: context,
|
|
builder:
|
|
(context) => AlertDialog(
|
|
title: const Text('삭제 확인'),
|
|
content: const Text('이 회사 정보를 삭제하시겠습니까?'),
|
|
actions: [
|
|
TextButton(
|
|
onPressed: () => Navigator.pop(context),
|
|
child: const Text('취소'),
|
|
),
|
|
TextButton(
|
|
onPressed: () async {
|
|
Navigator.pop(context);
|
|
try {
|
|
await _controller.deleteCompany(id);
|
|
} catch (e) {
|
|
if (mounted) {
|
|
ScaffoldMessenger.of(context).showSnackBar(
|
|
SnackBar(
|
|
content: Text(e.toString()),
|
|
backgroundColor: Colors.red,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
},
|
|
child: const Text('삭제'),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
/// 지점 다이얼로그 표시
|
|
void _showBranchDialog(Company mainCompany) {
|
|
showDialog(
|
|
context: context,
|
|
builder: (context) => CompanyBranchDialog(mainCompany: mainCompany),
|
|
);
|
|
}
|
|
|
|
/// Branch 객체를 Company 객체로 변환
|
|
Company _convertBranchToCompany(Branch branch) {
|
|
return Company(
|
|
id: branch.id,
|
|
name: branch.name,
|
|
address: branch.address,
|
|
contactName: branch.contactName,
|
|
contactPosition: branch.contactPosition,
|
|
contactPhone: branch.contactPhone,
|
|
contactEmail: branch.contactEmail,
|
|
companyTypes: [],
|
|
remark: branch.remark,
|
|
);
|
|
}
|
|
|
|
/// 회사 유형 배지 생성
|
|
Widget _buildCompanyTypeChips(List<CompanyType> types) {
|
|
// 유형이 없으면 기본값 표시
|
|
if (types.isEmpty) {
|
|
return Text(
|
|
'-',
|
|
style: ShadcnTheme.bodySmall.copyWith(color: ShadcnTheme.muted),
|
|
);
|
|
}
|
|
|
|
return Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Flexible(
|
|
child: Wrap(
|
|
spacing: 4,
|
|
runSpacing: 2,
|
|
children: types.map((type) {
|
|
ShadcnBadgeVariant variant;
|
|
String displayText;
|
|
|
|
switch (type) {
|
|
case CompanyType.customer:
|
|
variant = ShadcnBadgeVariant.companyCustomer; // Orange
|
|
displayText = '고객사';
|
|
break;
|
|
case CompanyType.partner:
|
|
variant = ShadcnBadgeVariant.companyPartner; // Green
|
|
displayText = '파트너사';
|
|
break;
|
|
default:
|
|
variant = ShadcnBadgeVariant.secondary;
|
|
displayText = companyTypeToString(type);
|
|
}
|
|
|
|
return ShadcnBadge(
|
|
text: displayText,
|
|
variant: variant,
|
|
size: ShadcnBadgeSize.small,
|
|
);
|
|
}).toList(),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
|
|
/// 본사/지점 구분 배지 생성
|
|
Widget _buildCompanyTypeLabel(bool isBranch) {
|
|
return ShadcnBadge(
|
|
text: isBranch ? '지점' : '본사',
|
|
variant: isBranch
|
|
? ShadcnBadgeVariant.companyBranch // Purple (#7C3AED) - 차별화
|
|
: ShadcnBadgeVariant.companyHeadquarters, // Blue (#2563EB)
|
|
size: ShadcnBadgeSize.small,
|
|
);
|
|
}
|
|
|
|
/// 회사 이름 표시 (지점인 경우 본사명 포함)
|
|
Widget _buildCompanyNameText(
|
|
Company company,
|
|
bool isBranch, {
|
|
String? mainCompanyName,
|
|
}) {
|
|
if (isBranch && mainCompanyName != null) {
|
|
return Text.rich(
|
|
TextSpan(
|
|
children: [
|
|
TextSpan(text: '$mainCompanyName > ', style: ShadcnTheme.bodyMuted),
|
|
TextSpan(text: company.name, style: ShadcnTheme.bodyMedium),
|
|
],
|
|
),
|
|
);
|
|
} else {
|
|
return Text(company.name, style: ShadcnTheme.bodyMedium);
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ChangeNotifierProvider.value(
|
|
value: _controller,
|
|
child: Consumer<CompanyListController>(
|
|
builder: (context, controller, child) {
|
|
// 본사와 지점 구분하기 위한 데이터 준비
|
|
final List<Map<String, dynamic>> displayCompanies = [];
|
|
for (final company in controller.filteredCompanies) {
|
|
displayCompanies.add({
|
|
'company': company,
|
|
'isBranch': false,
|
|
'mainCompanyName': null,
|
|
});
|
|
if (company.branches != null) {
|
|
for (final branch in company.branches!) {
|
|
displayCompanies.add({
|
|
'branch': branch,
|
|
'companyId': company.id,
|
|
'isBranch': true,
|
|
'mainCompanyName': company.name,
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
// Controller가 이미 페이지크된 데이터를 제공
|
|
final List<Map<String, dynamic>> pagedCompanies = displayCompanies;
|
|
final int totalCount = controller.total; // 실제 전체 개수 사용
|
|
|
|
print('🔍 [VIEW DEBUG] 페이지네이션 상태');
|
|
print(' • Controller items: ${controller.companies.length}개');
|
|
print(' • 전체 개수: ${controller.total}개');
|
|
print(' • 현재 페이지: ${controller.currentPage}');
|
|
print(' • 페이지 크기: ${controller.pageSize}');
|
|
|
|
// 로딩 상태
|
|
if (controller.isLoading && controller.companies.isEmpty) {
|
|
return const StandardLoadingState(message: '회사 데이터를 불러오는 중...');
|
|
}
|
|
|
|
return BaseListScreen(
|
|
isLoading: false,
|
|
error: controller.error,
|
|
onRefresh: controller.refresh,
|
|
emptyMessage:
|
|
controller.searchQuery.isNotEmpty
|
|
? '검색 결과가 없습니다'
|
|
: '등록된 회사가 없습니다',
|
|
emptyIcon: Icons.business_outlined,
|
|
|
|
// 검색바
|
|
searchBar: UnifiedSearchBar(
|
|
controller: _searchController,
|
|
placeholder: '회사명, 담당자명, 연락처로 검색',
|
|
onChanged: _onSearchChanged, // 실시간 검색 (디바운싱)
|
|
onSearch:
|
|
() => _controller.search(
|
|
_searchController.text,
|
|
), // 즉시 검색
|
|
onClear: () {
|
|
_searchController.clear();
|
|
_onSearchChanged('');
|
|
},
|
|
),
|
|
|
|
// 액션바
|
|
actionBar: StandardActionBar(
|
|
leftActions: [
|
|
// 회사 추가 버튼을 검색창 아래로 이동
|
|
StandardActionButtons.addButton(
|
|
text: '회사 추가',
|
|
onPressed: _navigateToAddScreen,
|
|
),
|
|
],
|
|
rightActions: [
|
|
// 관리자용 비활성 포함 체크박스
|
|
// TODO: 실제 권한 체크 로직 추가 필요
|
|
Row(
|
|
children: [
|
|
Checkbox(
|
|
value: controller.includeInactive,
|
|
onChanged: (_) => controller.toggleIncludeInactive(),
|
|
),
|
|
const Text('비활성 포함'),
|
|
],
|
|
),
|
|
],
|
|
totalCount: totalCount,
|
|
onRefresh: controller.refresh,
|
|
statusMessage:
|
|
controller.searchQuery.isNotEmpty
|
|
? '"${controller.searchQuery}" 검색 결과'
|
|
: null,
|
|
),
|
|
|
|
// 에러 메시지
|
|
filterSection:
|
|
controller.error != null
|
|
? StandardInfoMessage(
|
|
message: controller.error!,
|
|
icon: Icons.error_outline,
|
|
color: ShadcnTheme.destructive,
|
|
onClose: controller.clearError,
|
|
)
|
|
: null,
|
|
|
|
// 데이터 테이블
|
|
dataTable:
|
|
displayCompanies.isEmpty
|
|
? StandardEmptyState(
|
|
title:
|
|
controller.searchQuery.isNotEmpty
|
|
? '검색 결과가 없습니다'
|
|
: '등록된 회사가 없습니다',
|
|
icon: Icons.business_outlined,
|
|
action:
|
|
controller.searchQuery.isEmpty
|
|
? StandardActionButtons.addButton(
|
|
text: '첫 회사 추가하기',
|
|
onPressed: _navigateToAddScreen,
|
|
)
|
|
: null,
|
|
)
|
|
: std_table.StandardDataTable(
|
|
columns: [
|
|
std_table.DataColumn(label: '번호', flex: 1),
|
|
std_table.DataColumn(label: '회사명', flex: 3),
|
|
std_table.DataColumn(label: '구분', flex: 1),
|
|
std_table.DataColumn(label: '유형', flex: 2),
|
|
std_table.DataColumn(label: '연락처', flex: 2),
|
|
std_table.DataColumn(label: '관리', flex: 2),
|
|
],
|
|
rows: [
|
|
...pagedCompanies.asMap().entries.map((entry) {
|
|
final int index = ((controller.currentPage - 1) * controller.pageSize) + entry.key;
|
|
final companyData = entry.value;
|
|
final bool isBranch = companyData['isBranch'] as bool;
|
|
final Company company =
|
|
isBranch
|
|
? _convertBranchToCompany(
|
|
companyData['branch'] as Branch,
|
|
)
|
|
: companyData['company'] as Company;
|
|
final String? mainCompanyName =
|
|
companyData['mainCompanyName'] as String?;
|
|
|
|
return std_table.StandardDataRow(
|
|
index: index,
|
|
columns: [
|
|
std_table.DataColumn(label: '번호', flex: 1),
|
|
std_table.DataColumn(label: '회사명', flex: 3),
|
|
std_table.DataColumn(label: '구분', flex: 1),
|
|
std_table.DataColumn(label: '유형', flex: 2),
|
|
std_table.DataColumn(label: '연락처', flex: 2),
|
|
std_table.DataColumn(label: '관리', flex: 2),
|
|
],
|
|
cells: [
|
|
// 번호
|
|
Text(
|
|
'${index + 1}',
|
|
style: ShadcnTheme.bodySmall,
|
|
),
|
|
// 회사명
|
|
_buildCompanyNameText(
|
|
company,
|
|
isBranch,
|
|
mainCompanyName: mainCompanyName,
|
|
),
|
|
// 구분
|
|
Align(
|
|
alignment: Alignment.centerLeft,
|
|
child: _buildCompanyTypeLabel(isBranch),
|
|
),
|
|
// 유형
|
|
Align(
|
|
alignment: Alignment.centerLeft,
|
|
child: _buildCompanyTypeChips(company.companyTypes),
|
|
),
|
|
// 연락처
|
|
Text(
|
|
company.contactPhone ?? '-',
|
|
style: ShadcnTheme.bodySmall,
|
|
),
|
|
// 관리
|
|
Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
if (!isBranch &&
|
|
company.branches != null &&
|
|
company.branches!.isNotEmpty) ...[
|
|
ShadcnButton(
|
|
text: '지점',
|
|
onPressed:
|
|
() => _showBranchDialog(company),
|
|
variant: ShadcnButtonVariant.ghost,
|
|
size: ShadcnButtonSize.small,
|
|
),
|
|
const SizedBox(width: ShadcnTheme.spacing1),
|
|
],
|
|
std_table.StandardActionButtons(
|
|
onEdit:
|
|
company.id != null
|
|
? () {
|
|
if (isBranch) {
|
|
Navigator.pushNamed(
|
|
context,
|
|
'/company/edit',
|
|
arguments: {
|
|
'companyId':
|
|
companyData['companyId'],
|
|
'isBranch': true,
|
|
'mainCompanyName':
|
|
mainCompanyName,
|
|
'branchId': company.id,
|
|
},
|
|
).then((result) {
|
|
if (result == true)
|
|
controller.refresh();
|
|
});
|
|
} else {
|
|
Navigator.pushNamed(
|
|
context,
|
|
'/company/edit',
|
|
arguments: {
|
|
'companyId': company.id,
|
|
'isBranch': false,
|
|
},
|
|
).then((result) {
|
|
if (result == true)
|
|
controller.refresh();
|
|
});
|
|
}
|
|
}
|
|
: null,
|
|
onDelete:
|
|
(!isBranch && company.id != null)
|
|
? () => _deleteCompany(company.id!)
|
|
: null,
|
|
),
|
|
],
|
|
),
|
|
],
|
|
);
|
|
}),
|
|
],
|
|
),
|
|
|
|
// 페이지네이션 (BaseListController의 goToPage 사용)
|
|
pagination: Pagination(
|
|
totalCount: controller.total,
|
|
currentPage: controller.currentPage,
|
|
pageSize: controller.pageSize,
|
|
onPageChanged: (page) {
|
|
controller.goToPage(page);
|
|
},
|
|
),
|
|
);
|
|
},
|
|
),
|
|
);
|
|
}
|
|
} |