Initial commit
This commit is contained in:
@@ -0,0 +1,470 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||
import 'package:go_router/go_router.dart';
|
||||
|
||||
import '../providers/auth_provider.dart';
|
||||
import '../providers/notifications_provider.dart';
|
||||
import '../providers/profile_provider.dart';
|
||||
|
||||
class AppScaffold extends ConsumerWidget {
|
||||
const AppScaffold({super.key, required this.child});
|
||||
|
||||
final Widget child;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context, WidgetRef ref) {
|
||||
final profileAsync = ref.watch(currentProfileProvider);
|
||||
final role = profileAsync.maybeWhen(
|
||||
data: (profile) => profile?.role ?? 'standard',
|
||||
orElse: () => 'standard',
|
||||
);
|
||||
final displayName = profileAsync.maybeWhen(
|
||||
data: (profile) {
|
||||
final name = profile?.fullName.trim() ?? '';
|
||||
return name.isNotEmpty ? name : 'User';
|
||||
},
|
||||
orElse: () => 'User',
|
||||
);
|
||||
|
||||
final isStandard = role == 'standard';
|
||||
final location = GoRouterState.of(context).uri.toString();
|
||||
final sections = _buildSections(role);
|
||||
|
||||
final width = MediaQuery.of(context).size.width;
|
||||
final showRail = !isStandard && width >= 860;
|
||||
final isExtended = !isStandard && width >= 1120;
|
||||
final showDrawer = !isStandard && !showRail;
|
||||
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Row(
|
||||
children: [
|
||||
const Icon(Icons.memory),
|
||||
const SizedBox(width: 8),
|
||||
Text('TasQ'),
|
||||
],
|
||||
),
|
||||
actions: [
|
||||
if (isStandard)
|
||||
PopupMenuButton<int>(
|
||||
tooltip: 'Account',
|
||||
onSelected: (value) {
|
||||
if (value == 0) {
|
||||
ref.read(authControllerProvider).signOut();
|
||||
}
|
||||
},
|
||||
itemBuilder: (context) => const [
|
||||
PopupMenuItem(value: 0, child: Text('Sign out')),
|
||||
],
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 12),
|
||||
child: Row(
|
||||
children: [
|
||||
const Icon(Icons.account_circle),
|
||||
const SizedBox(width: 8),
|
||||
Text(displayName),
|
||||
const SizedBox(width: 4),
|
||||
const Icon(Icons.expand_more),
|
||||
],
|
||||
),
|
||||
),
|
||||
)
|
||||
else
|
||||
IconButton(
|
||||
tooltip: 'Sign out',
|
||||
onPressed: () => ref.read(authControllerProvider).signOut(),
|
||||
icon: const Icon(Icons.logout),
|
||||
),
|
||||
const _NotificationBell(),
|
||||
],
|
||||
),
|
||||
drawer: showDrawer
|
||||
? Drawer(
|
||||
child: AppSideNav(
|
||||
sections: sections,
|
||||
location: location,
|
||||
extended: true,
|
||||
displayName: displayName,
|
||||
onLogout: () => ref.read(authControllerProvider).signOut(),
|
||||
),
|
||||
)
|
||||
: null,
|
||||
bottomNavigationBar: isStandard
|
||||
? AppBottomNav(location: location, items: _standardNavItems())
|
||||
: null,
|
||||
body: Row(
|
||||
children: [
|
||||
if (showRail)
|
||||
AppSideNav(
|
||||
sections: sections,
|
||||
location: location,
|
||||
extended: isExtended,
|
||||
displayName: displayName,
|
||||
onLogout: () => ref.read(authControllerProvider).signOut(),
|
||||
),
|
||||
Expanded(child: _ShellBackground(child: child)),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class AppSideNav extends StatelessWidget {
|
||||
const AppSideNav({
|
||||
super.key,
|
||||
required this.sections,
|
||||
required this.location,
|
||||
required this.extended,
|
||||
required this.displayName,
|
||||
required this.onLogout,
|
||||
});
|
||||
|
||||
final List<NavSection> sections;
|
||||
final String location;
|
||||
final bool extended;
|
||||
final String displayName;
|
||||
final VoidCallback onLogout;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final width = extended ? 240.0 : 72.0;
|
||||
return Container(
|
||||
width: width,
|
||||
decoration: BoxDecoration(
|
||||
color: Theme.of(context).colorScheme.surface,
|
||||
border: Border(
|
||||
right: BorderSide(
|
||||
color: Theme.of(context).colorScheme.outlineVariant,
|
||||
),
|
||||
),
|
||||
),
|
||||
child: ListView(
|
||||
padding: const EdgeInsets.symmetric(vertical: 12),
|
||||
children: [
|
||||
Padding(
|
||||
padding: EdgeInsets.symmetric(
|
||||
horizontal: extended ? 16 : 12,
|
||||
vertical: 8,
|
||||
),
|
||||
child: Row(
|
||||
children: [
|
||||
Image.asset(
|
||||
'assets/tasq_ico.png',
|
||||
width: 28,
|
||||
height: 28,
|
||||
fit: BoxFit.contain,
|
||||
),
|
||||
if (extended) ...[
|
||||
const SizedBox(width: 12),
|
||||
Expanded(
|
||||
child: Text(
|
||||
displayName,
|
||||
maxLines: 1,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
style: Theme.of(context).textTheme.titleSmall?.copyWith(
|
||||
fontWeight: FontWeight.w600,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
],
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 4),
|
||||
for (final section in sections) ...[
|
||||
if (section.label != null && extended)
|
||||
Padding(
|
||||
padding: const EdgeInsets.fromLTRB(16, 12, 16, 8),
|
||||
child: Text(
|
||||
section.label!,
|
||||
style: Theme.of(context).textTheme.labelMedium?.copyWith(
|
||||
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||
letterSpacing: 0.4,
|
||||
),
|
||||
),
|
||||
),
|
||||
for (final item in section.items)
|
||||
_NavTile(
|
||||
item: item,
|
||||
selected: _isSelected(location, item.route),
|
||||
extended: extended,
|
||||
onLogout: onLogout,
|
||||
),
|
||||
],
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class AppBottomNav extends StatelessWidget {
|
||||
const AppBottomNav({super.key, required this.location, required this.items});
|
||||
|
||||
final String location;
|
||||
final List<NavItem> items;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final index = _currentIndex(location, items);
|
||||
return NavigationBar(
|
||||
selectedIndex: index,
|
||||
onDestinationSelected: (value) {
|
||||
final target = items[value].route;
|
||||
if (target.isNotEmpty) {
|
||||
context.go(target);
|
||||
}
|
||||
},
|
||||
destinations: [
|
||||
for (final item in items)
|
||||
NavigationDestination(
|
||||
icon: Icon(item.icon),
|
||||
selectedIcon: Icon(item.selectedIcon ?? item.icon),
|
||||
label: item.label,
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class _NavTile extends StatelessWidget {
|
||||
const _NavTile({
|
||||
required this.item,
|
||||
required this.selected,
|
||||
required this.extended,
|
||||
required this.onLogout,
|
||||
});
|
||||
|
||||
final NavItem item;
|
||||
final bool selected;
|
||||
final bool extended;
|
||||
final VoidCallback onLogout;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final colorScheme = Theme.of(context).colorScheme;
|
||||
final iconColor = selected ? colorScheme.primary : colorScheme.onSurface;
|
||||
final background = selected
|
||||
? colorScheme.primaryContainer.withValues(alpha: 0.6)
|
||||
: Colors.transparent;
|
||||
|
||||
final content = Container(
|
||||
margin: const EdgeInsets.symmetric(horizontal: 8, vertical: 4),
|
||||
decoration: BoxDecoration(
|
||||
color: background,
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
),
|
||||
child: ListTile(
|
||||
leading: Icon(item.icon, color: iconColor),
|
||||
title: extended ? Text(item.label) : null,
|
||||
onTap: () => item.onTap(context, onLogout: onLogout),
|
||||
dense: true,
|
||||
visualDensity: VisualDensity.compact,
|
||||
),
|
||||
);
|
||||
|
||||
if (extended) {
|
||||
return content;
|
||||
}
|
||||
|
||||
return Tooltip(message: item.label, child: content);
|
||||
}
|
||||
}
|
||||
|
||||
class _NotificationBell extends ConsumerWidget {
|
||||
const _NotificationBell();
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context, WidgetRef ref) {
|
||||
final unreadCount = ref.watch(unreadNotificationsCountProvider);
|
||||
return IconButton(
|
||||
tooltip: 'Notifications',
|
||||
onPressed: () => context.go('/notifications'),
|
||||
icon: Stack(
|
||||
clipBehavior: Clip.none,
|
||||
children: [
|
||||
const Icon(Icons.notifications),
|
||||
if (unreadCount > 0)
|
||||
const Positioned(
|
||||
right: -2,
|
||||
top: -2,
|
||||
child: Icon(Icons.circle, size: 10, color: Colors.red),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class _ShellBackground extends StatelessWidget {
|
||||
const _ShellBackground({required this.child});
|
||||
|
||||
final Widget child;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container(
|
||||
decoration: BoxDecoration(
|
||||
gradient: LinearGradient(
|
||||
begin: Alignment.topLeft,
|
||||
end: Alignment.bottomRight,
|
||||
colors: [
|
||||
Theme.of(context).colorScheme.surface,
|
||||
Theme.of(context).colorScheme.surfaceContainerLowest,
|
||||
],
|
||||
),
|
||||
),
|
||||
child: child,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class NavItem {
|
||||
NavItem({
|
||||
required this.label,
|
||||
required this.route,
|
||||
required this.icon,
|
||||
this.selectedIcon,
|
||||
this.isLogout = false,
|
||||
});
|
||||
|
||||
final String label;
|
||||
final String route;
|
||||
final IconData icon;
|
||||
final IconData? selectedIcon;
|
||||
final bool isLogout;
|
||||
|
||||
void onTap(BuildContext context, {VoidCallback? onLogout}) {
|
||||
if (isLogout) {
|
||||
onLogout?.call();
|
||||
return;
|
||||
}
|
||||
if (route.isNotEmpty) {
|
||||
context.go(route);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class NavSection {
|
||||
NavSection({this.label, required this.items});
|
||||
|
||||
final String? label;
|
||||
final List<NavItem> items;
|
||||
}
|
||||
|
||||
List<NavSection> _buildSections(String role) {
|
||||
final mainItems = [
|
||||
NavItem(
|
||||
label: 'Dashboard',
|
||||
route: '/dashboard',
|
||||
icon: Icons.grid_view,
|
||||
selectedIcon: Icons.grid_view_rounded,
|
||||
),
|
||||
NavItem(
|
||||
label: 'Tickets',
|
||||
route: '/tickets',
|
||||
icon: Icons.support_agent_outlined,
|
||||
selectedIcon: Icons.support_agent,
|
||||
),
|
||||
NavItem(
|
||||
label: 'Tasks',
|
||||
route: '/tasks',
|
||||
icon: Icons.task_outlined,
|
||||
selectedIcon: Icons.task,
|
||||
),
|
||||
NavItem(
|
||||
label: 'Events',
|
||||
route: '/events',
|
||||
icon: Icons.event_outlined,
|
||||
selectedIcon: Icons.event,
|
||||
),
|
||||
NavItem(
|
||||
label: 'Announcement',
|
||||
route: '/announcements',
|
||||
icon: Icons.campaign_outlined,
|
||||
selectedIcon: Icons.campaign,
|
||||
),
|
||||
NavItem(
|
||||
label: 'Workforce',
|
||||
route: '/workforce',
|
||||
icon: Icons.groups_outlined,
|
||||
selectedIcon: Icons.groups,
|
||||
),
|
||||
NavItem(
|
||||
label: 'Reports',
|
||||
route: '/reports',
|
||||
icon: Icons.analytics_outlined,
|
||||
selectedIcon: Icons.analytics,
|
||||
),
|
||||
];
|
||||
|
||||
if (role == 'admin') {
|
||||
return [
|
||||
NavSection(label: 'Operations', items: mainItems),
|
||||
NavSection(
|
||||
label: 'Settings',
|
||||
items: [
|
||||
NavItem(
|
||||
label: 'User Management',
|
||||
route: '/settings/users',
|
||||
icon: Icons.admin_panel_settings_outlined,
|
||||
selectedIcon: Icons.admin_panel_settings,
|
||||
),
|
||||
NavItem(
|
||||
label: 'Office Management',
|
||||
route: '/settings/offices',
|
||||
icon: Icons.apartment_outlined,
|
||||
selectedIcon: Icons.apartment,
|
||||
),
|
||||
NavItem(
|
||||
label: 'Logout',
|
||||
route: '',
|
||||
icon: Icons.logout,
|
||||
isLogout: true,
|
||||
),
|
||||
],
|
||||
),
|
||||
];
|
||||
}
|
||||
|
||||
return [NavSection(label: 'Operations', items: mainItems)];
|
||||
}
|
||||
|
||||
List<NavItem> _standardNavItems() {
|
||||
return [
|
||||
NavItem(
|
||||
label: 'Dashboard',
|
||||
route: '/dashboard',
|
||||
icon: Icons.grid_view,
|
||||
selectedIcon: Icons.grid_view_rounded,
|
||||
),
|
||||
NavItem(
|
||||
label: 'Tickets',
|
||||
route: '/tickets',
|
||||
icon: Icons.support_agent_outlined,
|
||||
selectedIcon: Icons.support_agent,
|
||||
),
|
||||
NavItem(
|
||||
label: 'Tasks',
|
||||
route: '/tasks',
|
||||
icon: Icons.task_outlined,
|
||||
selectedIcon: Icons.task,
|
||||
),
|
||||
NavItem(
|
||||
label: 'Events',
|
||||
route: '/events',
|
||||
icon: Icons.event_outlined,
|
||||
selectedIcon: Icons.event,
|
||||
),
|
||||
];
|
||||
}
|
||||
|
||||
bool _isSelected(String location, String route) {
|
||||
if (route.isEmpty) return false;
|
||||
if (location == route) return true;
|
||||
return location.startsWith('$route/');
|
||||
}
|
||||
|
||||
int _currentIndex(String location, List<NavItem> items) {
|
||||
final index = items.indexWhere((item) => _isSelected(location, item.route));
|
||||
return index == -1 ? 0 : index;
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
import 'package:flutter/widgets.dart';
|
||||
|
||||
class ResponsiveBody extends StatelessWidget {
|
||||
const ResponsiveBody({
|
||||
super.key,
|
||||
required this.child,
|
||||
this.maxWidth = 960,
|
||||
this.padding = EdgeInsets.zero,
|
||||
});
|
||||
|
||||
final Widget child;
|
||||
final double maxWidth;
|
||||
final EdgeInsetsGeometry padding;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return LayoutBuilder(
|
||||
builder: (context, constraints) {
|
||||
final width = constraints.maxWidth;
|
||||
final horizontalPadding = switch (width) {
|
||||
>= 1200 => 96.0,
|
||||
>= 900 => 64.0,
|
||||
>= 600 => 32.0,
|
||||
_ => 16.0,
|
||||
};
|
||||
|
||||
return Padding(
|
||||
padding: padding.add(
|
||||
EdgeInsets.symmetric(horizontal: horizontalPadding),
|
||||
),
|
||||
child: Align(
|
||||
alignment: Alignment.topCenter,
|
||||
child: ConstrainedBox(
|
||||
constraints: BoxConstraints(maxWidth: maxWidth),
|
||||
child: SizedBox(
|
||||
width: double.infinity,
|
||||
height: constraints.maxHeight,
|
||||
child: child,
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,233 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||
|
||||
import '../models/profile.dart';
|
||||
import '../providers/profile_provider.dart';
|
||||
import '../providers/tasks_provider.dart';
|
||||
|
||||
class TaskAssignmentSection extends ConsumerWidget {
|
||||
const TaskAssignmentSection({
|
||||
super.key,
|
||||
required this.taskId,
|
||||
required this.canAssign,
|
||||
});
|
||||
|
||||
final String taskId;
|
||||
final bool canAssign;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context, WidgetRef ref) {
|
||||
final profilesAsync = ref.watch(profilesProvider);
|
||||
final tasksAsync = ref.watch(tasksProvider);
|
||||
final assignmentsAsync = ref.watch(taskAssignmentsProvider);
|
||||
|
||||
final profiles = profilesAsync.valueOrNull ?? <Profile>[];
|
||||
final tasks = tasksAsync.valueOrNull ?? [];
|
||||
final taskTicketId = tasks
|
||||
.where((task) => task.id == taskId)
|
||||
.map((task) => task.ticketId)
|
||||
.firstOrNull;
|
||||
final assignments = assignmentsAsync.valueOrNull ?? [];
|
||||
|
||||
final itStaff =
|
||||
profiles.where((profile) => profile.role == 'it_staff').toList()
|
||||
..sort((a, b) => a.fullName.compareTo(b.fullName));
|
||||
|
||||
final assignedForTask = assignments
|
||||
.where((assignment) => assignment.taskId == taskId)
|
||||
.toList();
|
||||
final assignedIds = assignedForTask.map((a) => a.userId).toSet();
|
||||
|
||||
final activeTaskIds = tasks
|
||||
.where(
|
||||
(task) => task.status == 'queued' || task.status == 'in_progress',
|
||||
)
|
||||
.map((task) => task.id)
|
||||
.toSet();
|
||||
|
||||
final activeAssignmentsByUser = <String, Set<String>>{};
|
||||
for (final assignment in assignments) {
|
||||
if (!activeTaskIds.contains(assignment.taskId)) {
|
||||
continue;
|
||||
}
|
||||
activeAssignmentsByUser
|
||||
.putIfAbsent(assignment.userId, () => <String>{})
|
||||
.add(assignment.taskId);
|
||||
}
|
||||
|
||||
bool isVacant(String userId) {
|
||||
final active = activeAssignmentsByUser[userId];
|
||||
if (active == null || active.isEmpty) {
|
||||
return true;
|
||||
}
|
||||
return active.length == 1 && active.contains(taskId);
|
||||
}
|
||||
|
||||
final eligibleStaff = itStaff
|
||||
.where(
|
||||
(profile) => isVacant(profile.id) || assignedIds.contains(profile.id),
|
||||
)
|
||||
.toList();
|
||||
|
||||
return Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Row(
|
||||
children: [
|
||||
Text(
|
||||
'Assigned IT Staff',
|
||||
style: Theme.of(
|
||||
context,
|
||||
).textTheme.titleMedium?.copyWith(fontWeight: FontWeight.w700),
|
||||
),
|
||||
const Spacer(),
|
||||
if (canAssign)
|
||||
TextButton.icon(
|
||||
onPressed: () => _showAssignmentDialog(
|
||||
context,
|
||||
ref,
|
||||
eligibleStaff,
|
||||
assignedIds,
|
||||
taskTicketId,
|
||||
),
|
||||
icon: const Icon(Icons.group_add),
|
||||
label: const Text('Assign'),
|
||||
),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 8),
|
||||
if (assignedForTask.isEmpty)
|
||||
Text(
|
||||
'No IT staff assigned.',
|
||||
style: Theme.of(context).textTheme.bodyMedium,
|
||||
)
|
||||
else
|
||||
Wrap(
|
||||
spacing: 8,
|
||||
runSpacing: 6,
|
||||
children: assignedForTask.map((assignment) {
|
||||
final profile = profiles
|
||||
.where((item) => item.id == assignment.userId)
|
||||
.firstOrNull;
|
||||
final label = profile?.fullName.isNotEmpty == true
|
||||
? profile!.fullName
|
||||
: assignment.userId;
|
||||
return InputChip(
|
||||
label: Text(label),
|
||||
onDeleted: canAssign
|
||||
? () => ref
|
||||
.read(taskAssignmentsControllerProvider)
|
||||
.removeAssignment(
|
||||
taskId: taskId,
|
||||
userId: assignment.userId,
|
||||
)
|
||||
: null,
|
||||
);
|
||||
}).toList(),
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
Future<void> _showAssignmentDialog(
|
||||
BuildContext context,
|
||||
WidgetRef ref,
|
||||
List<Profile> eligibleStaff,
|
||||
Set<String> assignedIds,
|
||||
String? taskTicketId,
|
||||
) async {
|
||||
if (eligibleStaff.isEmpty && assignedIds.isEmpty) {
|
||||
await showDialog<void>(
|
||||
context: context,
|
||||
builder: (dialogContext) {
|
||||
return AlertDialog(
|
||||
title: const Text('Assign IT Staff'),
|
||||
content: const Text('No vacant IT staff available.'),
|
||||
actions: [
|
||||
TextButton(
|
||||
onPressed: () => Navigator.of(dialogContext).pop(),
|
||||
child: const Text('Close'),
|
||||
),
|
||||
],
|
||||
);
|
||||
},
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
final selection = assignedIds.toSet();
|
||||
await showDialog<void>(
|
||||
context: context,
|
||||
builder: (dialogContext) {
|
||||
return StatefulBuilder(
|
||||
builder: (context, setState) {
|
||||
return AlertDialog(
|
||||
title: const Text('Assign IT Staff'),
|
||||
contentPadding: const EdgeInsets.fromLTRB(24, 20, 24, 12),
|
||||
content: SizedBox(
|
||||
width: 360,
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.symmetric(vertical: 12),
|
||||
child: ListView.builder(
|
||||
shrinkWrap: true,
|
||||
itemCount: eligibleStaff.length,
|
||||
itemBuilder: (context, index) {
|
||||
final staff = eligibleStaff[index];
|
||||
final name = staff.fullName.isNotEmpty
|
||||
? staff.fullName
|
||||
: staff.id;
|
||||
final selected = selection.contains(staff.id);
|
||||
return CheckboxListTile(
|
||||
value: selected,
|
||||
title: Text(name),
|
||||
contentPadding: const EdgeInsets.symmetric(
|
||||
horizontal: 12,
|
||||
vertical: 2,
|
||||
),
|
||||
onChanged: (value) {
|
||||
setState(() {
|
||||
if (value == true) {
|
||||
selection.add(staff.id);
|
||||
} else {
|
||||
selection.remove(staff.id);
|
||||
}
|
||||
});
|
||||
},
|
||||
);
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
actions: [
|
||||
TextButton(
|
||||
onPressed: () => Navigator.of(dialogContext).pop(),
|
||||
child: const Text('Cancel'),
|
||||
),
|
||||
FilledButton(
|
||||
onPressed: () async {
|
||||
await ref
|
||||
.read(taskAssignmentsControllerProvider)
|
||||
.replaceAssignments(
|
||||
taskId: taskId,
|
||||
ticketId: taskTicketId,
|
||||
newUserIds: selection.toList(),
|
||||
currentUserIds: assignedIds.toList(),
|
||||
);
|
||||
if (context.mounted) {
|
||||
Navigator.of(dialogContext).pop();
|
||||
}
|
||||
},
|
||||
child: const Text('Save'),
|
||||
),
|
||||
],
|
||||
);
|
||||
},
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
extension _FirstOrNull<T> on Iterable<T> {
|
||||
T? get firstOrNull => isEmpty ? null : first;
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class TypingDots extends StatefulWidget {
|
||||
const TypingDots({super.key, this.size = 6, this.color, this.spacing = 4});
|
||||
|
||||
final double size;
|
||||
final double spacing;
|
||||
final Color? color;
|
||||
|
||||
@override
|
||||
State<TypingDots> createState() => _TypingDotsState();
|
||||
}
|
||||
|
||||
class _TypingDotsState extends State<TypingDots>
|
||||
with SingleTickerProviderStateMixin {
|
||||
late final AnimationController _controller;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_controller = AnimationController(
|
||||
vsync: this,
|
||||
duration: const Duration(milliseconds: 1200),
|
||||
)..repeat();
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_controller.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
double _opacity(double t, double offset) {
|
||||
final phase = (t + offset) % 1.0;
|
||||
final distance = (phase - 0.5).abs();
|
||||
final ramp = 1.0 - (distance / 0.5);
|
||||
return 0.3 + 0.7 * ramp.clamp(0.0, 1.0);
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final color =
|
||||
widget.color ?? Theme.of(context).colorScheme.onSurfaceVariant;
|
||||
return AnimatedBuilder(
|
||||
animation: _controller,
|
||||
builder: (context, child) {
|
||||
final t = _controller.value;
|
||||
return Row(
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: [
|
||||
_dot(color, _opacity(t, 0.0)),
|
||||
SizedBox(width: widget.spacing),
|
||||
_dot(color, _opacity(t, 0.2)),
|
||||
SizedBox(width: widget.spacing),
|
||||
_dot(color, _opacity(t, 0.4)),
|
||||
],
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
Widget _dot(Color color, double opacity) {
|
||||
return Opacity(
|
||||
opacity: opacity,
|
||||
child: Container(
|
||||
width: widget.size,
|
||||
height: widget.size,
|
||||
decoration: BoxDecoration(color: color, shape: BoxShape.circle),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user