408 lines
14 KiB
Dart
408 lines
14 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:marco/helpers/theme/app_theme.dart';
|
|
import 'package:marco/helpers/utils/mixins/ui_mixin.dart';
|
|
import 'package:marco/helpers/widgets/my_spacing.dart';
|
|
import 'package:marco/helpers/widgets/my_text.dart';
|
|
import 'package:marco/model/employees/add_employee_bottom_sheet.dart';
|
|
import 'package:marco/controller/employee/employees_screen_controller.dart';
|
|
import 'package:marco/helpers/widgets/avatar.dart';
|
|
import 'package:marco/controller/project_controller.dart';
|
|
import 'package:marco/helpers/widgets/my_custom_skeleton.dart';
|
|
import 'package:marco/model/employees/employee_model.dart';
|
|
import 'package:marco/helpers/utils/launcher_utils.dart';
|
|
import 'package:marco/controller/permission_controller.dart';
|
|
import 'package:marco/helpers/utils/permission_constants.dart';
|
|
import 'package:marco/helpers/widgets/my_refresh_indicator.dart';
|
|
import 'package:marco/view/employees/employee_profile_screen.dart';
|
|
|
|
|
|
class EmployeesScreen extends StatefulWidget {
|
|
const EmployeesScreen({super.key});
|
|
|
|
@override
|
|
State<EmployeesScreen> createState() => _EmployeesScreenState();
|
|
}
|
|
|
|
class _EmployeesScreenState extends State<EmployeesScreen> with UIMixin {
|
|
final EmployeesScreenController _employeeController =
|
|
Get.put(EmployeesScreenController());
|
|
final PermissionController _permissionController =
|
|
Get.find<PermissionController>();
|
|
final TextEditingController _searchController = TextEditingController();
|
|
final RxList<EmployeeModel> _filteredEmployees = <EmployeeModel>[].obs;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
_initEmployees();
|
|
_searchController
|
|
.addListener(() => _filterEmployees(_searchController.text));
|
|
});
|
|
}
|
|
|
|
Future<void> _initEmployees() async {
|
|
_employeeController.selectedProjectId = null;
|
|
await _employeeController.fetchAllEmployees();
|
|
_filterEmployees(_searchController.text);
|
|
}
|
|
|
|
Future<void> _refreshEmployees() async {
|
|
try {
|
|
_employeeController.selectedProjectId = null;
|
|
await _employeeController.fetchAllEmployees();
|
|
_filterEmployees(_searchController.text);
|
|
_employeeController.update(['employee_screen_controller']);
|
|
} catch (e, stackTrace) {
|
|
debugPrint('Error refreshing employee data: $e');
|
|
debugPrintStack(stackTrace: stackTrace);
|
|
}
|
|
}
|
|
|
|
void _filterEmployees(String query) {
|
|
final employees = _employeeController.employees;
|
|
|
|
List<EmployeeModel> filtered;
|
|
|
|
if (query.isEmpty) {
|
|
filtered = List<EmployeeModel>.from(employees);
|
|
} else {
|
|
final q = query.toLowerCase();
|
|
filtered = employees
|
|
.where(
|
|
(e) =>
|
|
e.name.toLowerCase().contains(q) ||
|
|
e.email.toLowerCase().contains(q) ||
|
|
e.phoneNumber.toLowerCase().contains(q) ||
|
|
e.jobRole.toLowerCase().contains(q),
|
|
)
|
|
.toList();
|
|
}
|
|
|
|
filtered
|
|
.sort((a, b) => a.name.toLowerCase().compareTo(b.name.toLowerCase()));
|
|
|
|
_filteredEmployees.assignAll(filtered);
|
|
}
|
|
|
|
Future<void> _onAddNewEmployee() async {
|
|
final result = await showModalBottomSheet<Map<String, dynamic>>(
|
|
context: context,
|
|
isScrollControlled: true,
|
|
shape: const RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.vertical(top: Radius.circular(16)),
|
|
),
|
|
backgroundColor: Colors.transparent,
|
|
builder: (context) => AddEmployeeBottomSheet(),
|
|
);
|
|
|
|
if (result == null || result['success'] != true) return;
|
|
|
|
|
|
|
|
await _refreshEmployees();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: Colors.white,
|
|
appBar: _buildAppBar(),
|
|
floatingActionButton: _buildFloatingActionButton(),
|
|
body: SafeArea(
|
|
child: GetBuilder<EmployeesScreenController>(
|
|
init: _employeeController,
|
|
tag: 'employee_screen_controller',
|
|
builder: (_) {
|
|
_filterEmployees(_searchController.text);
|
|
|
|
return MyRefreshIndicator(
|
|
onRefresh: _refreshEmployees,
|
|
child: SingleChildScrollView(
|
|
physics: const AlwaysScrollableScrollPhysics(),
|
|
padding: const EdgeInsets.only(bottom: 40),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
MySpacing.height(flexSpacing),
|
|
_buildSearchAndActionRow(),
|
|
MySpacing.height(flexSpacing),
|
|
Padding(
|
|
padding: MySpacing.x(flexSpacing),
|
|
child: _buildEmployeeList(),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
PreferredSizeWidget _buildAppBar() {
|
|
return PreferredSize(
|
|
preferredSize: const Size.fromHeight(72),
|
|
child: AppBar(
|
|
backgroundColor: const Color(0xFFF5F5F5),
|
|
elevation: 0.5,
|
|
automaticallyImplyLeading: false,
|
|
titleSpacing: 0,
|
|
title: Padding(
|
|
padding: MySpacing.xy(16, 0),
|
|
child: Row(
|
|
children: [
|
|
IconButton(
|
|
icon: const Icon(Icons.arrow_back_ios_new,
|
|
color: Colors.black, size: 20),
|
|
onPressed: () => Get.offNamed('/dashboard'),
|
|
),
|
|
MySpacing.width(8),
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
MyText.titleLarge('Employees',
|
|
fontWeight: 700, color: Colors.black),
|
|
MySpacing.height(2),
|
|
GetBuilder<ProjectController>(
|
|
builder: (projectController) {
|
|
final projectName =
|
|
projectController.selectedProject?.name ??
|
|
'Select Project';
|
|
return Row(
|
|
children: [
|
|
const Icon(Icons.work_outline,
|
|
size: 14, color: Colors.grey),
|
|
MySpacing.width(4),
|
|
Expanded(
|
|
child: MyText.bodySmall(
|
|
projectName,
|
|
fontWeight: 600,
|
|
overflow: TextOverflow.ellipsis,
|
|
color: Colors.grey[700],
|
|
),
|
|
),
|
|
],
|
|
);
|
|
},
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildFloatingActionButton() {
|
|
if (!_permissionController.hasPermission(Permissions.manageEmployees)) {
|
|
return const SizedBox.shrink();
|
|
}
|
|
|
|
return InkWell(
|
|
onTap: _onAddNewEmployee,
|
|
borderRadius: BorderRadius.circular(28),
|
|
child: Container(
|
|
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 12),
|
|
decoration: BoxDecoration(
|
|
color: contentTheme.primary,
|
|
borderRadius: BorderRadius.circular(28),
|
|
boxShadow: const [
|
|
BoxShadow(
|
|
color: Colors.black26, blurRadius: 6, offset: Offset(0, 3))
|
|
],
|
|
),
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Icon(Icons.add, color: Colors.white),
|
|
SizedBox(width: 8),
|
|
Text('Add New Employee', style: TextStyle(color: Colors.white)),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildSearchAndActionRow() {
|
|
return Padding(
|
|
padding: MySpacing.x(15),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
// Search Field Row
|
|
Row(
|
|
children: [
|
|
Expanded(child: _buildSearchField()),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildSearchField() {
|
|
return SizedBox(
|
|
height: 36,
|
|
child: TextField(
|
|
controller: _searchController,
|
|
style: const TextStyle(fontSize: 13, height: 1.2),
|
|
decoration: InputDecoration(
|
|
isDense: true,
|
|
contentPadding:
|
|
const EdgeInsets.symmetric(horizontal: 8, vertical: 8),
|
|
prefixIcon: const Icon(Icons.search, size: 18, color: Colors.grey),
|
|
prefixIconConstraints:
|
|
const BoxConstraints(minWidth: 32, minHeight: 32),
|
|
hintText: 'Search contacts...',
|
|
hintStyle: const TextStyle(fontSize: 13, color: Colors.grey),
|
|
filled: true,
|
|
fillColor: Colors.white,
|
|
focusedBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(5),
|
|
borderSide:
|
|
BorderSide(color: contentTheme.primary, width: 1.5),
|
|
),
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: Colors.grey.shade300, width: 1),
|
|
),
|
|
enabledBorder: OutlineInputBorder(
|
|
borderRadius: BorderRadius.circular(8),
|
|
borderSide: BorderSide(color: Colors.grey.shade300, width: 1),
|
|
),
|
|
suffixIcon: _searchController.text.isNotEmpty
|
|
? GestureDetector(
|
|
onTap: () {
|
|
_searchController.clear();
|
|
_filterEmployees('');
|
|
setState(() {});
|
|
},
|
|
child: const Icon(Icons.close, size: 18, color: Colors.grey),
|
|
)
|
|
: null,
|
|
),
|
|
onChanged: (_) => setState(() {}),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildEmployeeList() {
|
|
return Obx(() {
|
|
if (_employeeController.isLoading.value) {
|
|
return ListView.separated(
|
|
shrinkWrap: true,
|
|
physics: const NeverScrollableScrollPhysics(),
|
|
itemCount: 8,
|
|
separatorBuilder: (_, __) => MySpacing.height(12),
|
|
itemBuilder: (_, __) => SkeletonLoaders.employeeSkeletonCard(),
|
|
);
|
|
}
|
|
|
|
final employees = _filteredEmployees;
|
|
|
|
if (employees.isEmpty) {
|
|
return Padding(
|
|
padding: const EdgeInsets.only(top: 60),
|
|
child: Center(
|
|
child: MyText.bodySmall("No Employees Found",
|
|
fontWeight: 600, color: Colors.grey[700]),
|
|
),
|
|
);
|
|
}
|
|
|
|
return ListView.separated(
|
|
shrinkWrap: true,
|
|
physics: const NeverScrollableScrollPhysics(),
|
|
padding: MySpacing.only(bottom: 80),
|
|
itemCount: employees.length,
|
|
separatorBuilder: (_, __) => MySpacing.height(12),
|
|
itemBuilder: (_, index) {
|
|
final e = employees[index];
|
|
final names = e.name.trim().split(' ');
|
|
final firstName = names.first;
|
|
final lastName = names.length > 1 ? names.last : '';
|
|
|
|
return InkWell(
|
|
onTap: () => Get.to(() => EmployeeProfilePage(employeeId: e.id)),
|
|
child: Row(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Avatar(firstName: firstName, lastName: lastName, size: 35),
|
|
MySpacing.width(12),
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
MyText.titleSmall(e.name,
|
|
fontWeight: 600, overflow: TextOverflow.ellipsis),
|
|
if (e.jobRole.isNotEmpty)
|
|
MyText.bodySmall(e.jobRole,
|
|
color: Colors.grey[700],
|
|
overflow: TextOverflow.ellipsis),
|
|
MySpacing.height(8),
|
|
if (e.email.isNotEmpty && e.email != '-')
|
|
_buildLinkRow(
|
|
icon: Icons.email_outlined,
|
|
text: e.email,
|
|
onTap: () => LauncherUtils.launchEmail(e.email),
|
|
onLongPress: () => LauncherUtils.copyToClipboard(
|
|
e.email,
|
|
typeLabel: 'Email')),
|
|
if (e.email.isNotEmpty && e.email != '-')
|
|
MySpacing.height(6),
|
|
if (e.phoneNumber.isNotEmpty)
|
|
_buildLinkRow(
|
|
icon: Icons.phone_outlined,
|
|
text: e.phoneNumber,
|
|
onTap: () =>
|
|
LauncherUtils.launchPhone(e.phoneNumber),
|
|
onLongPress: () => LauncherUtils.copyToClipboard(
|
|
e.phoneNumber,
|
|
typeLabel: 'Phone')),
|
|
],
|
|
),
|
|
),
|
|
const Icon(Icons.arrow_forward_ios,
|
|
color: Colors.grey, size: 16),
|
|
],
|
|
),
|
|
);
|
|
},
|
|
);
|
|
});
|
|
}
|
|
|
|
Widget _buildLinkRow({
|
|
required IconData icon,
|
|
required String text,
|
|
required VoidCallback onTap,
|
|
required VoidCallback onLongPress,
|
|
}) {
|
|
return GestureDetector(
|
|
onTap: onTap,
|
|
onLongPress: onLongPress,
|
|
child: Row(
|
|
children: [
|
|
Icon(icon, size: 16, color: Colors.indigo),
|
|
MySpacing.width(4),
|
|
ConstrainedBox(
|
|
constraints: const BoxConstraints(maxWidth: 180),
|
|
child: MyText.labelSmall(
|
|
text,
|
|
overflow: TextOverflow.ellipsis,
|
|
color: Colors.indigo,
|
|
decoration: TextDecoration.underline,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|