feat: unified tools and search modal

This commit is contained in:
cogwheel0
2025-08-20 16:08:44 +05:30
parent 267a45cd9e
commit d2af55c5aa
3 changed files with 267 additions and 198 deletions

1
.gitignore vendored
View File

@@ -12,6 +12,7 @@
.swiftpm/ .swiftpm/
migrate_working_dir/ migrate_working_dir/
AGENTS.md AGENTS.md
flutter_*.png
# IntelliJ related # IntelliJ related
*.iml *.iml

View File

@@ -1,6 +1,5 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter/services.dart';
import '../../../shared/theme/theme_extensions.dart'; import '../../../shared/theme/theme_extensions.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart';
@@ -8,7 +7,7 @@ import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'dart:io' show Platform; import 'dart:io' show Platform;
import 'dart:async'; import 'dart:async';
import '../providers/chat_providers.dart'; import '../providers/chat_providers.dart';
import '../../tools/widgets/tool_selector.dart'; import '../../tools/widgets/unified_tools_modal.dart';
import '../../tools/providers/tools_providers.dart'; import '../../tools/providers/tools_providers.dart';
import '../../../shared/utils/platform_utils.dart'; import '../../../shared/utils/platform_utils.dart';
@@ -49,7 +48,6 @@ class _ModernChatInputState extends ConsumerState<ModernChatInput>
late AnimationController _pulseController; late AnimationController _pulseController;
Timer? _blurCollapseTimer; Timer? _blurCollapseTimer;
bool _hasAutoFocusedOnce = false; bool _hasAutoFocusedOnce = false;
bool _showToolSelector = false;
@override @override
void initState() { void initState() {
@@ -168,11 +166,7 @@ class _ModernChatInputState extends ConsumerState<ModernChatInput>
PlatformUtils.lightHaptic(); PlatformUtils.lightHaptic();
widget.onSendMessage(text); widget.onSendMessage(text);
_controller.clear(); _controller.clear();
setState(() { // Keep tools and web search enabled for the conversation
_showToolSelector = false;
});
// Clear selected tools after sending
ref.read(selectedToolIdsProvider.notifier).state = [];
// Keep input expanded and focused for better UX - don't dismiss keyboard // Keep input expanded and focused for better UX - don't dismiss keyboard
// KeyboardUtils.dismissKeyboard(context); // KeyboardUtils.dismissKeyboard(context);
// _setExpanded(false); // _setExpanded(false);
@@ -212,9 +206,6 @@ class _ModernChatInputState extends ConsumerState<ModernChatInput>
child: Column( child: Column(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
children: [ children: [
// Web search status indicator
_buildWebSearchStatusIndicator(),
// Main input area with unified 2-row design // Main input area with unified 2-row design
Container( Container(
clipBehavior: Clip.antiAlias, clipBehavior: Clip.antiAlias,
@@ -354,14 +345,6 @@ class _ModernChatInputState extends ConsumerState<ModernChatInput>
// Expanded bottom row with additional options // Expanded bottom row with additional options
if (_isExpanded) ...[ if (_isExpanded) ...[
// Tool selector
if (_showToolSelector)
const Padding(
padding: EdgeInsets.symmetric(
horizontal: Spacing.inputPadding,
),
child: ToolSelector(),
),
Container( Container(
padding: const EdgeInsets.only( padding: const EdgeInsets.only(
left: Spacing.inputPadding, left: Spacing.inputPadding,
@@ -385,19 +368,17 @@ class _ModernChatInputState extends ConsumerState<ModernChatInput>
icon: Icons.build, icon: Icons.build,
onTap: widget.enabled onTap: widget.enabled
? () { ? () {
setState(() { _showUnifiedToolsModal();
_showToolSelector = !_showToolSelector;
});
} }
: null, : null,
tooltip: 'Tools', tooltip: 'Tools',
isActive: _showToolSelector || ref.watch(selectedToolIdsProvider).isNotEmpty, isActive:
ref
.watch(selectedToolIdsProvider)
.isNotEmpty ||
ref.watch(webSearchEnabledProvider),
), ),
const SizedBox(width: Spacing.sm), const Spacer(),
Flexible(
child: Center(child: _buildResearchToggle()),
),
const SizedBox(width: Spacing.md),
// Microphone button: call provided callback for premium voice UI // Microphone button: call provided callback for premium voice UI
_buildRoundButton( _buildRoundButton(
icon: Platform.isIOS icon: Platform.isIOS
@@ -584,176 +565,6 @@ class _ModernChatInputState extends ConsumerState<ModernChatInput>
); );
} }
Widget _buildResearchToggle() {
final webSearchEnabled = ref.watch(
webSearchEnabledProvider.select((enabled) => enabled),
);
return AnimatedContainer(
duration: AnimationDuration.fast,
curve: Curves.easeInOut,
child: GestureDetector(
onTap: widget.enabled
? () {
// Toggle web search with haptic feedback
HapticFeedback.lightImpact();
ref.read(webSearchEnabledProvider.notifier).state =
!webSearchEnabled;
// Show a snackbar to confirm the toggle
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text(
webSearchEnabled
? 'Web search disabled'
: 'Web search enabled - I can now search the internet',
style: TextStyle(
color: context.conduitTheme.textPrimary,
),
),
backgroundColor: context.conduitTheme.surfaceBackground,
duration: const Duration(seconds: 2),
behavior: SnackBarBehavior.floating,
margin: const EdgeInsets.all(Spacing.md),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(AppBorderRadius.md),
),
),
);
}
: null,
child: Container(
padding: const EdgeInsets.symmetric(
horizontal: Spacing.md,
vertical: Spacing.sm,
),
decoration: BoxDecoration(
color: webSearchEnabled
? context.conduitTheme.info.withValues(
alpha: Alpha.buttonHover,
)
: context.conduitTheme.surfaceBackground.withValues(
alpha: Alpha.subtle,
),
borderRadius: BorderRadius.circular(AppBorderRadius.xl),
border: Border.all(
color: webSearchEnabled
? context.conduitTheme.info
: context.conduitTheme.textPrimary.withValues(
alpha: Alpha.subtle,
),
width: BorderWidth.regular,
),
),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
AnimatedSwitcher(
duration: AnimationDuration.fast,
child: Icon(
webSearchEnabled
? (Platform.isIOS ? CupertinoIcons.globe : Icons.public)
: (Platform.isIOS ? CupertinoIcons.search : Icons.search),
key: ValueKey(webSearchEnabled),
size: IconSize.small,
color: widget.enabled
? (webSearchEnabled
? Colors.white
: context.conduitTheme.textPrimary.withValues(
alpha: Alpha.strong,
))
: context.conduitTheme.textPrimary.withValues(
alpha: Alpha.disabled,
),
),
),
const SizedBox(width: Spacing.sm),
Flexible(
child: Text(
webSearchEnabled ? 'Web' : 'Search',
style: TextStyle(
fontSize: AppTypography.bodySmall,
fontWeight: webSearchEnabled ? FontWeight.w600 : FontWeight.w500,
color: widget.enabled
? (webSearchEnabled
? Colors.white
: context.conduitTheme.textPrimary.withValues(
alpha: Alpha.strong,
))
: context.conduitTheme.textPrimary.withValues(
alpha: Alpha.disabled,
),
),
),
),
],
),
),
),
);
}
Widget _buildWebSearchStatusIndicator() {
final webSearchEnabled = ref.watch(
webSearchEnabledProvider.select((enabled) => enabled),
);
if (!webSearchEnabled) return const SizedBox.shrink();
return AnimatedContainer(
duration: AnimationDuration.fast,
curve: Curves.easeInOut,
padding: const EdgeInsets.symmetric(
horizontal: Spacing.md,
vertical: Spacing.xs,
),
margin: const EdgeInsets.only(
left: Spacing.md,
right: Spacing.md,
bottom: Spacing.xs,
),
decoration: BoxDecoration(
color: context.conduitTheme.info.withValues(
alpha: Alpha.badgeBackground,
),
borderRadius: BorderRadius.circular(AppBorderRadius.badge),
border: Border.all(
color: context.conduitTheme.info.withValues(alpha: Alpha.subtle),
width: BorderWidth.regular,
),
),
child: Row(
mainAxisSize: MainAxisSize.min,
children: [
Icon(
Platform.isIOS ? CupertinoIcons.globe : Icons.travel_explore,
size: IconSize.small,
color: context.conduitTheme.info,
),
const SizedBox(width: Spacing.xs),
Text(
'Web search enabled',
style: AppTypography.captionStyle.copyWith(
color: context.conduitTheme.info,
fontWeight: FontWeight.w500,
),
),
const SizedBox(width: Spacing.xs),
GestureDetector(
onTap: () {
ref.read(webSearchEnabledProvider.notifier).state = false;
},
child: Icon(
Icons.close,
size: 12,
color: context.conduitTheme.info,
),
),
],
),
);
}
void _showAttachmentOptions() { void _showAttachmentOptions() {
showModalBottomSheet( showModalBottomSheet(
context: context, context: context,
@@ -822,6 +633,14 @@ class _ModernChatInputState extends ConsumerState<ModernChatInput>
); );
} }
void _showUnifiedToolsModal() {
showModalBottomSheet(
context: context,
backgroundColor: Colors.transparent,
builder: (context) => const UnifiedToolsModal(),
);
}
Widget _buildAttachmentOption({ Widget _buildAttachmentOption({
required IconData icon, required IconData icon,
required String label, required String label,

View File

@@ -0,0 +1,249 @@
import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/services.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'dart:io' show Platform;
import '../../../shared/theme/theme_extensions.dart';
import '../../chat/providers/chat_providers.dart';
import '../providers/tools_providers.dart';
class UnifiedToolsModal extends ConsumerStatefulWidget {
const UnifiedToolsModal({super.key});
@override
ConsumerState<UnifiedToolsModal> createState() => _UnifiedToolsModalState();
}
class _UnifiedToolsModalState extends ConsumerState<UnifiedToolsModal> {
@override
Widget build(BuildContext context) {
final webSearchEnabled = ref.watch(webSearchEnabledProvider);
final selectedToolIds = ref.watch(selectedToolIdsProvider);
final toolsAsync = ref.watch(toolsListProvider);
return Container(
decoration: BoxDecoration(
color: context.conduitTheme.surfaceBackground,
borderRadius: const BorderRadius.vertical(
top: Radius.circular(AppBorderRadius.bottomSheet),
),
boxShadow: ConduitShadows.modal,
),
padding: const EdgeInsets.all(Spacing.bottomSheetPadding),
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
// Handle bar
Container(
width: 40,
height: 4,
decoration: BoxDecoration(
color: context.conduitTheme.textPrimary.withValues(
alpha: Alpha.medium,
),
borderRadius: BorderRadius.circular(2),
),
),
const SizedBox(height: Spacing.lg),
// Title
Text(
'Tools & Search',
style: AppTypography.headlineSmallStyle.copyWith(
color: context.conduitTheme.textPrimary,
),
),
const SizedBox(height: Spacing.lg),
// Web Search Toggle
_buildWebSearchToggle(webSearchEnabled),
const SizedBox(height: Spacing.md),
// Tools Section
Container(
width: double.infinity,
padding: const EdgeInsets.all(Spacing.md),
decoration: BoxDecoration(
color: context.conduitTheme.cardBackground,
borderRadius: BorderRadius.circular(AppBorderRadius.md),
border: Border.all(
color: context.conduitTheme.cardBorder,
width: BorderWidth.regular,
),
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Available Tools',
style: AppTypography.labelStyle.copyWith(
color: context.conduitTheme.textPrimary,
fontWeight: FontWeight.w600,
),
),
const SizedBox(height: Spacing.sm),
toolsAsync.when(
data: (tools) {
if (tools.isEmpty) {
return Text(
'No tools available',
style: AppTypography.bodySmallStyle.copyWith(
color: context.conduitTheme.textSecondary,
),
);
}
return Wrap(
spacing: Spacing.sm,
runSpacing: Spacing.sm,
children: tools.map((tool) {
final isSelected = selectedToolIds.contains(tool.id);
return FilterChip(
label: Text(
tool.name,
style: TextStyle(
color: isSelected
? context.conduitTheme.buttonPrimaryText
: context.conduitTheme.textPrimary,
),
),
selected: isSelected,
onSelected: (selected) {
HapticFeedback.lightImpact();
final currentIds = ref.read(
selectedToolIdsProvider,
);
if (selected) {
ref.read(selectedToolIdsProvider.notifier).state =
[...currentIds, tool.id];
} else {
ref
.read(selectedToolIdsProvider.notifier)
.state = currentIds
.where((id) => id != tool.id)
.toList();
}
},
avatar: Icon(
Icons.build,
size: IconSize.small,
color: isSelected
? context.conduitTheme.buttonPrimaryText
: context.conduitTheme.textSecondary,
),
backgroundColor:
context.conduitTheme.surfaceBackground,
selectedColor: context.conduitTheme.buttonPrimary,
showCheckmark: false,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(
AppBorderRadius.md,
),
side: BorderSide(
color: isSelected
? context.conduitTheme.buttonPrimary
: context.conduitTheme.cardBorder,
),
),
);
}).toList(),
);
},
loading: () => const Center(
child: SizedBox(
width: 24,
height: 24,
child: CircularProgressIndicator(strokeWidth: 2),
),
),
error: (error, stack) => Text(
'Failed to load tools',
style: AppTypography.bodySmallStyle.copyWith(
color: context.conduitTheme.error,
),
),
),
],
),
),
],
),
);
}
Widget _buildWebSearchToggle(bool webSearchEnabled) {
return GestureDetector(
onTap: () {
HapticFeedback.lightImpact();
ref.read(webSearchEnabledProvider.notifier).state = !webSearchEnabled;
},
child: Container(
width: double.infinity,
padding: const EdgeInsets.all(Spacing.md),
decoration: BoxDecoration(
color: webSearchEnabled
? context.conduitTheme.buttonPrimary
: context.conduitTheme.cardBackground,
borderRadius: BorderRadius.circular(AppBorderRadius.md),
border: Border.all(
color: webSearchEnabled
? context.conduitTheme.buttonPrimary
: context.conduitTheme.cardBorder,
width: BorderWidth.regular,
),
),
child: Row(
children: [
Icon(
webSearchEnabled
? (Platform.isIOS ? CupertinoIcons.globe : Icons.public)
: (Platform.isIOS ? CupertinoIcons.search : Icons.search),
size: IconSize.medium,
color: webSearchEnabled
? context.conduitTheme.buttonPrimaryText
: context.conduitTheme.textPrimary.withValues(
alpha: Alpha.strong,
),
),
const SizedBox(width: Spacing.sm),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Web Search',
style: AppTypography.labelStyle.copyWith(
color: webSearchEnabled
? context.conduitTheme.buttonPrimaryText
: context.conduitTheme.textPrimary,
fontWeight: FontWeight.w600,
),
),
Text(
webSearchEnabled
? 'I can search the internet for information'
: 'Enable to search the web for answers',
style: AppTypography.captionStyle.copyWith(
color: webSearchEnabled
? context.conduitTheme.buttonPrimaryText.withValues(
alpha: Alpha.strong,
)
: context.conduitTheme.textSecondary,
),
),
],
),
),
Icon(
webSearchEnabled ? Icons.toggle_on : Icons.toggle_off,
size: IconSize.large,
color: webSearchEnabled
? context.conduitTheme.buttonPrimaryText
: context.conduitTheme.textSecondary,
),
],
),
),
);
}
}