2025-08-10 01:20:45 +05:30
|
|
|
import 'package:flutter/material.dart';
|
2025-08-16 20:27:44 +05:30
|
|
|
import 'package:flutter/cupertino.dart';
|
2025-08-21 23:56:47 +05:30
|
|
|
import 'package:flutter/services.dart';
|
2025-08-10 01:20:45 +05:30
|
|
|
import '../../../shared/theme/theme_extensions.dart';
|
2025-08-22 01:24:04 +05:30
|
|
|
import '../../../shared/widgets/sheet_handle.dart';
|
2025-08-10 01:20:45 +05:30
|
|
|
|
|
|
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
|
|
|
|
|
|
import 'dart:io' show Platform;
|
|
|
|
|
import 'dart:async';
|
|
|
|
|
import '../providers/chat_providers.dart';
|
2025-08-20 16:08:44 +05:30
|
|
|
import '../../tools/widgets/unified_tools_modal.dart';
|
2025-08-19 20:26:19 +05:30
|
|
|
import '../../tools/providers/tools_providers.dart';
|
2025-08-10 01:20:45 +05:30
|
|
|
|
|
|
|
|
import '../../../shared/utils/platform_utils.dart';
|
2025-08-23 20:09:43 +05:30
|
|
|
import 'package:conduit/l10n/app_localizations.dart';
|
2025-08-10 01:20:45 +05:30
|
|
|
|
|
|
|
|
class ModernChatInput extends ConsumerStatefulWidget {
|
|
|
|
|
final Function(String) onSendMessage;
|
|
|
|
|
final bool enabled;
|
|
|
|
|
final Function()? onVoiceInput;
|
|
|
|
|
final Function()? onFileAttachment;
|
|
|
|
|
final Function()? onImageAttachment;
|
|
|
|
|
final Function()? onCameraCapture;
|
|
|
|
|
|
|
|
|
|
const ModernChatInput({
|
|
|
|
|
super.key,
|
|
|
|
|
required this.onSendMessage,
|
|
|
|
|
this.enabled = true,
|
|
|
|
|
this.onVoiceInput,
|
|
|
|
|
this.onFileAttachment,
|
|
|
|
|
this.onImageAttachment,
|
|
|
|
|
this.onCameraCapture,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
ConsumerState<ModernChatInput> createState() => _ModernChatInputState();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class _ModernChatInputState extends ConsumerState<ModernChatInput>
|
|
|
|
|
with TickerProviderStateMixin {
|
|
|
|
|
final TextEditingController _controller = TextEditingController();
|
|
|
|
|
final FocusNode _focusNode = FocusNode();
|
|
|
|
|
final bool _isRecording = false;
|
|
|
|
|
bool _isExpanded = true; // Start expanded for better UX
|
|
|
|
|
// TODO: Implement voice input functionality
|
|
|
|
|
// final String _voiceInputText = '';
|
|
|
|
|
bool _hasText = false; // track locally without rebuilding on each keystroke
|
|
|
|
|
StreamSubscription<String>? _voiceStreamSubscription;
|
|
|
|
|
late AnimationController _expandController;
|
|
|
|
|
late AnimationController _pulseController;
|
|
|
|
|
Timer? _blurCollapseTimer;
|
|
|
|
|
bool _hasAutoFocusedOnce = false;
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
void initState() {
|
|
|
|
|
super.initState();
|
|
|
|
|
_expandController = AnimationController(
|
|
|
|
|
duration:
|
|
|
|
|
AnimationDuration.fast, // Faster animation for better responsiveness
|
|
|
|
|
vsync: this,
|
|
|
|
|
value: 1.0, // Start expanded
|
|
|
|
|
);
|
|
|
|
|
_pulseController = AnimationController(
|
|
|
|
|
duration: AnimationDuration.slow,
|
|
|
|
|
vsync: this,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Listen for text changes and update only when emptiness flips
|
|
|
|
|
_controller.addListener(() {
|
|
|
|
|
final has = _controller.text.trim().isNotEmpty;
|
|
|
|
|
if (has != _hasText) {
|
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
|
|
|
if (!mounted) return;
|
|
|
|
|
setState(() => _hasText = has);
|
|
|
|
|
// Intelligent expansion: expand when user starts typing
|
|
|
|
|
if (has && !_isExpanded) {
|
|
|
|
|
_setExpanded(true);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Intelligent expand/collapse around focus changes
|
|
|
|
|
_focusNode.addListener(() {
|
|
|
|
|
// Cancel any pending blur-driven collapse
|
|
|
|
|
_blurCollapseTimer?.cancel();
|
|
|
|
|
|
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
|
|
|
if (!mounted) return;
|
|
|
|
|
final hasFocus = _focusNode.hasFocus;
|
|
|
|
|
if (hasFocus) {
|
|
|
|
|
if (!_isExpanded) _setExpanded(true);
|
|
|
|
|
} else {
|
|
|
|
|
// Defer collapse slightly to avoid IME show/hide race conditions
|
|
|
|
|
_blurCollapseTimer = Timer(const Duration(milliseconds: 160), () {
|
|
|
|
|
if (!mounted) return;
|
|
|
|
|
if (_focusNode.hasFocus) return; // focus came back
|
|
|
|
|
// Collapse only when keyboard is fully hidden to avoid flicker
|
|
|
|
|
final keyboardVisible =
|
|
|
|
|
MediaQuery.of(context).viewInsets.bottom > 0;
|
|
|
|
|
if (keyboardVisible) return;
|
|
|
|
|
final has = _controller.text.trim().isNotEmpty;
|
|
|
|
|
if (!has && _isExpanded) {
|
|
|
|
|
_setExpanded(false);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Let autofocus handle the focus - no manual intervention
|
|
|
|
|
// The TextField's autofocus: true should handle focus and keyboard automatically
|
|
|
|
|
// Additionally, request focus after first frame to ensure reliability across platforms
|
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
|
|
|
if (!mounted) return;
|
|
|
|
|
if (!_hasAutoFocusedOnce && widget.enabled) {
|
|
|
|
|
_ensureFocusedIfEnabled();
|
|
|
|
|
_hasAutoFocusedOnce = true;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
void dispose() {
|
|
|
|
|
_controller.dispose();
|
|
|
|
|
_focusNode.dispose();
|
|
|
|
|
_expandController.dispose();
|
|
|
|
|
_pulseController.dispose();
|
|
|
|
|
_blurCollapseTimer?.cancel();
|
|
|
|
|
_voiceStreamSubscription?.cancel();
|
|
|
|
|
super.dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _ensureFocusedIfEnabled() {
|
|
|
|
|
if (!widget.enabled) return;
|
|
|
|
|
if (!_focusNode.hasFocus) {
|
|
|
|
|
FocusScope.of(context).requestFocus(_focusNode);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
void didUpdateWidget(covariant ModernChatInput oldWidget) {
|
|
|
|
|
super.didUpdateWidget(oldWidget);
|
|
|
|
|
if (widget.enabled && !oldWidget.enabled && !_hasAutoFocusedOnce) {
|
|
|
|
|
// Became enabled (e.g., after selecting a model) → focus the input
|
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
|
|
|
if (!mounted) return;
|
|
|
|
|
_ensureFocusedIfEnabled();
|
|
|
|
|
_hasAutoFocusedOnce = true;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
if (!widget.enabled && oldWidget.enabled) {
|
|
|
|
|
// Became disabled → collapse and hide keyboard
|
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
|
|
|
if (!mounted) return;
|
|
|
|
|
if (_isExpanded) _setExpanded(false);
|
|
|
|
|
if (_focusNode.hasFocus) {
|
|
|
|
|
_focusNode.unfocus();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _sendMessage() {
|
|
|
|
|
final text = _controller.text.trim();
|
|
|
|
|
if (text.isEmpty || !widget.enabled) return;
|
|
|
|
|
|
|
|
|
|
PlatformUtils.lightHaptic();
|
|
|
|
|
widget.onSendMessage(text);
|
|
|
|
|
_controller.clear();
|
2025-08-20 16:08:44 +05:30
|
|
|
// Keep tools and web search enabled for the conversation
|
2025-08-10 01:20:45 +05:30
|
|
|
// Keep input expanded and focused for better UX - don't dismiss keyboard
|
|
|
|
|
// KeyboardUtils.dismissKeyboard(context);
|
|
|
|
|
// _setExpanded(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _setExpanded(bool expanded) {
|
|
|
|
|
if (_isExpanded == expanded) return;
|
|
|
|
|
setState(() {
|
|
|
|
|
_isExpanded = expanded;
|
|
|
|
|
});
|
|
|
|
|
if (expanded) {
|
|
|
|
|
_expandController.forward();
|
|
|
|
|
} else {
|
|
|
|
|
_expandController.reverse();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
// Check if assistant is currently generating by checking last assistant message streaming
|
|
|
|
|
final messages = ref.watch(chatMessagesProvider);
|
|
|
|
|
final isGenerating =
|
|
|
|
|
messages.isNotEmpty &&
|
|
|
|
|
messages.last.role == 'assistant' &&
|
|
|
|
|
messages.last.isStreaming;
|
|
|
|
|
final stopGeneration = ref.read(stopGenerationProvider);
|
|
|
|
|
|
|
|
|
|
return Container(
|
|
|
|
|
// Transparent wrapper so rounded corners are visible against page background
|
|
|
|
|
color: Colors.transparent,
|
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
|
left: 0,
|
|
|
|
|
right: 0,
|
|
|
|
|
top: Spacing.xs.toDouble(),
|
|
|
|
|
bottom: 0,
|
|
|
|
|
),
|
|
|
|
|
child: Column(
|
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
|
children: [
|
|
|
|
|
// Main input area with unified 2-row design
|
|
|
|
|
Container(
|
|
|
|
|
clipBehavior: Clip.antiAlias,
|
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
|
bottom: MediaQuery.of(context).padding.bottom,
|
|
|
|
|
),
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: context.conduitTheme.inputBackground,
|
|
|
|
|
borderRadius: const BorderRadius.vertical(
|
|
|
|
|
top: Radius.circular(AppBorderRadius.xl),
|
|
|
|
|
bottom: Radius.circular(0),
|
|
|
|
|
),
|
|
|
|
|
border: Border(
|
|
|
|
|
top: BorderSide(
|
2025-08-21 23:56:47 +05:30
|
|
|
color: context.conduitTheme.dividerColor,
|
2025-08-10 01:20:45 +05:30
|
|
|
width: BorderWidth.regular,
|
|
|
|
|
),
|
|
|
|
|
left: BorderSide(
|
2025-08-21 23:56:47 +05:30
|
|
|
color: context.conduitTheme.dividerColor,
|
2025-08-10 01:20:45 +05:30
|
|
|
width: BorderWidth.regular,
|
|
|
|
|
),
|
|
|
|
|
right: BorderSide(
|
2025-08-21 23:56:47 +05:30
|
|
|
color: context.conduitTheme.dividerColor,
|
2025-08-10 01:20:45 +05:30
|
|
|
width: BorderWidth.regular,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
boxShadow: ConduitShadows.input,
|
|
|
|
|
),
|
|
|
|
|
width: double.infinity,
|
|
|
|
|
child: ConstrainedBox(
|
|
|
|
|
constraints: BoxConstraints(
|
|
|
|
|
// cap the input area to 40% of screen height to avoid bottom overflow
|
|
|
|
|
maxHeight: MediaQuery.of(context).size.height * 0.4,
|
|
|
|
|
),
|
|
|
|
|
child: AnimatedSize(
|
|
|
|
|
duration:
|
|
|
|
|
AnimationDuration.fast, // Faster for better responsiveness
|
|
|
|
|
curve: Curves.fastOutSlowIn, // More efficient curve
|
|
|
|
|
alignment: Alignment.topCenter,
|
|
|
|
|
child: SingleChildScrollView(
|
|
|
|
|
physics: const ClampingScrollPhysics(),
|
|
|
|
|
child: Column(
|
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
|
children: [
|
|
|
|
|
// Collapsed/Expanded top row: text input with left/right buttons in collapsed
|
|
|
|
|
Padding(
|
|
|
|
|
padding: const EdgeInsets.all(Spacing.inputPadding),
|
|
|
|
|
child: Row(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
if (!_isExpanded) ...[
|
|
|
|
|
_buildRoundButton(
|
|
|
|
|
icon: Icons.add,
|
|
|
|
|
onTap: widget.enabled
|
|
|
|
|
? _showAttachmentOptions
|
|
|
|
|
: null,
|
2025-08-23 20:09:43 +05:30
|
|
|
tooltip: AppLocalizations.of(context)!.addAttachment,
|
2025-08-10 01:20:45 +05:30
|
|
|
),
|
|
|
|
|
const SizedBox(width: Spacing.sm),
|
|
|
|
|
],
|
|
|
|
|
// Text input expands to fill
|
|
|
|
|
Expanded(
|
|
|
|
|
child: Semantics(
|
|
|
|
|
textField: true,
|
2025-08-23 20:09:43 +05:30
|
|
|
label: AppLocalizations.of(context)!.messageInputLabel,
|
|
|
|
|
hint: AppLocalizations.of(context)!.messageInputHint,
|
2025-08-10 01:20:45 +05:30
|
|
|
child: TextField(
|
|
|
|
|
controller: _controller,
|
|
|
|
|
focusNode: _focusNode,
|
|
|
|
|
enabled: widget.enabled,
|
|
|
|
|
autofocus: false,
|
|
|
|
|
maxLines: _isExpanded ? null : 1,
|
|
|
|
|
keyboardType: TextInputType.multiline,
|
2025-08-21 16:15:27 +05:30
|
|
|
textCapitalization:
|
|
|
|
|
TextCapitalization.sentences,
|
2025-08-10 01:20:45 +05:30
|
|
|
textInputAction: TextInputAction.newline,
|
|
|
|
|
showCursor: true,
|
|
|
|
|
cursorColor: context.conduitTheme.inputText,
|
|
|
|
|
style: AppTypography.chatMessageStyle
|
|
|
|
|
.copyWith(
|
|
|
|
|
color: context.conduitTheme.inputText,
|
|
|
|
|
),
|
|
|
|
|
decoration: InputDecoration(
|
2025-08-23 20:09:43 +05:30
|
|
|
hintText: AppLocalizations.of(context)!.messageHintText,
|
2025-08-10 01:20:45 +05:30
|
|
|
hintStyle: TextStyle(
|
|
|
|
|
color:
|
|
|
|
|
context.conduitTheme.inputPlaceholder,
|
|
|
|
|
fontSize: AppTypography.bodyLarge,
|
|
|
|
|
fontWeight: _isRecording
|
|
|
|
|
? FontWeight.w500
|
|
|
|
|
: FontWeight.w400,
|
|
|
|
|
fontStyle: _isRecording
|
|
|
|
|
? FontStyle.italic
|
|
|
|
|
: FontStyle.normal,
|
|
|
|
|
),
|
|
|
|
|
// Ensure the text field background matches its parent container
|
|
|
|
|
// and does not use the global InputDecorationTheme fill
|
|
|
|
|
filled: false,
|
|
|
|
|
border: InputBorder.none,
|
|
|
|
|
enabledBorder: InputBorder.none,
|
|
|
|
|
focusedBorder: InputBorder.none,
|
|
|
|
|
errorBorder: InputBorder.none,
|
|
|
|
|
disabledBorder: InputBorder.none,
|
|
|
|
|
contentPadding: EdgeInsets.zero,
|
|
|
|
|
isDense: true,
|
|
|
|
|
alignLabelWithHint: true,
|
|
|
|
|
),
|
|
|
|
|
// Removed onChanged setState to reduce rebuilds
|
|
|
|
|
onSubmitted: (_) => _sendMessage(),
|
|
|
|
|
onTap: () {
|
|
|
|
|
if (!widget.enabled) return;
|
|
|
|
|
if (!_isExpanded) {
|
|
|
|
|
_setExpanded(true);
|
|
|
|
|
WidgetsBinding.instance
|
|
|
|
|
.addPostFrameCallback((_) {
|
|
|
|
|
if (!mounted) return;
|
|
|
|
|
_ensureFocusedIfEnabled();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
_ensureFocusedIfEnabled();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
if (!_isExpanded) ...[
|
|
|
|
|
const SizedBox(width: Spacing.sm),
|
|
|
|
|
// Primary action button (Send/Stop) when collapsed
|
|
|
|
|
_buildPrimaryButton(
|
|
|
|
|
_hasText,
|
|
|
|
|
isGenerating,
|
|
|
|
|
stopGeneration,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
// Expanded bottom row with additional options
|
|
|
|
|
if (_isExpanded) ...[
|
|
|
|
|
Container(
|
|
|
|
|
padding: const EdgeInsets.only(
|
|
|
|
|
left: Spacing.inputPadding,
|
|
|
|
|
right: Spacing.inputPadding,
|
|
|
|
|
bottom: Spacing.inputPadding,
|
|
|
|
|
),
|
|
|
|
|
child: FadeTransition(
|
|
|
|
|
opacity: _expandController,
|
|
|
|
|
child: Row(
|
|
|
|
|
children: [
|
|
|
|
|
_buildRoundButton(
|
|
|
|
|
icon: Icons.add,
|
|
|
|
|
onTap: widget.enabled
|
|
|
|
|
? _showAttachmentOptions
|
|
|
|
|
: null,
|
2025-08-23 20:09:43 +05:30
|
|
|
tooltip: AppLocalizations.of(context)!.addAttachment,
|
2025-08-10 01:20:45 +05:30
|
|
|
),
|
|
|
|
|
const SizedBox(width: Spacing.sm),
|
2025-08-19 20:26:19 +05:30
|
|
|
// Tools button
|
|
|
|
|
_buildRoundButton(
|
|
|
|
|
icon: Icons.build,
|
|
|
|
|
onTap: widget.enabled
|
|
|
|
|
? () {
|
2025-08-20 16:08:44 +05:30
|
|
|
_showUnifiedToolsModal();
|
2025-08-19 20:26:19 +05:30
|
|
|
}
|
|
|
|
|
: null,
|
2025-08-23 20:09:43 +05:30
|
|
|
tooltip: AppLocalizations.of(context)!.tools,
|
2025-08-20 16:08:44 +05:30
|
|
|
isActive:
|
|
|
|
|
ref
|
|
|
|
|
.watch(selectedToolIdsProvider)
|
|
|
|
|
.isNotEmpty ||
|
2025-08-21 16:23:23 +05:30
|
|
|
ref.watch(webSearchEnabledProvider) ||
|
|
|
|
|
ref.watch(imageGenerationEnabledProvider),
|
2025-08-10 01:20:45 +05:30
|
|
|
),
|
2025-08-20 16:08:44 +05:30
|
|
|
const Spacer(),
|
2025-08-10 01:20:45 +05:30
|
|
|
// Microphone button: call provided callback for premium voice UI
|
|
|
|
|
_buildRoundButton(
|
|
|
|
|
icon: Platform.isIOS
|
|
|
|
|
? CupertinoIcons.mic_fill
|
|
|
|
|
: Icons.mic,
|
|
|
|
|
onTap: widget.enabled
|
|
|
|
|
? widget.onVoiceInput
|
|
|
|
|
: null,
|
2025-08-23 20:09:43 +05:30
|
|
|
tooltip: AppLocalizations.of(context)!.voiceInput,
|
2025-08-10 01:20:45 +05:30
|
|
|
isActive: _isRecording,
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(width: Spacing.sm),
|
|
|
|
|
// Primary action button (Send/Stop) when expanded
|
|
|
|
|
_buildPrimaryButton(
|
|
|
|
|
_hasText,
|
|
|
|
|
isGenerating,
|
|
|
|
|
stopGeneration,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Widget _buildPrimaryButton(
|
|
|
|
|
bool hasText,
|
|
|
|
|
bool isGenerating,
|
|
|
|
|
void Function() stopGeneration,
|
|
|
|
|
) {
|
|
|
|
|
// Spec: 48px touch target, circular radius, md icon size
|
|
|
|
|
const double buttonSize = TouchTarget.comfortable; // 48.0
|
|
|
|
|
const double radius = AppBorderRadius.round; // big to ensure circle
|
|
|
|
|
|
|
|
|
|
final enabled = !isGenerating && hasText && widget.enabled;
|
|
|
|
|
|
|
|
|
|
// Generating -> STOP variant
|
|
|
|
|
if (isGenerating) {
|
|
|
|
|
return Tooltip(
|
2025-08-23 20:09:43 +05:30
|
|
|
message: AppLocalizations.of(context)!.stopGenerating,
|
2025-08-21 23:56:47 +05:30
|
|
|
child: Material(
|
|
|
|
|
color: Colors.transparent,
|
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
|
borderRadius: BorderRadius.circular(radius),
|
|
|
|
|
side: BorderSide(color: context.conduitTheme.error, width: BorderWidth.regular),
|
|
|
|
|
),
|
|
|
|
|
child: InkWell(
|
|
|
|
|
borderRadius: BorderRadius.circular(radius),
|
|
|
|
|
onTap: () {
|
|
|
|
|
HapticFeedback.lightImpact();
|
|
|
|
|
stopGeneration();
|
|
|
|
|
},
|
|
|
|
|
child: Container(
|
|
|
|
|
width: buttonSize,
|
|
|
|
|
height: buttonSize,
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: context.conduitTheme.error.withValues(
|
|
|
|
|
alpha: Alpha.buttonPressed,
|
|
|
|
|
),
|
|
|
|
|
borderRadius: BorderRadius.circular(radius),
|
|
|
|
|
boxShadow: ConduitShadows.button,
|
2025-08-10 01:20:45 +05:30
|
|
|
),
|
2025-08-21 23:56:47 +05:30
|
|
|
child: Stack(
|
|
|
|
|
alignment: Alignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
SizedBox(
|
|
|
|
|
width: buttonSize - 18,
|
|
|
|
|
height: buttonSize - 18,
|
|
|
|
|
child: CircularProgressIndicator(
|
|
|
|
|
strokeWidth: BorderWidth.medium,
|
|
|
|
|
valueColor: AlwaysStoppedAnimation<Color>(
|
|
|
|
|
context.conduitTheme.error,
|
|
|
|
|
),
|
2025-08-10 01:20:45 +05:30
|
|
|
),
|
|
|
|
|
),
|
2025-08-21 23:56:47 +05:30
|
|
|
Icon(
|
|
|
|
|
Platform.isIOS ? CupertinoIcons.stop_fill : Icons.stop,
|
|
|
|
|
size: IconSize.medium,
|
|
|
|
|
color: context.conduitTheme.error,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
2025-08-10 01:20:45 +05:30
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Default SEND variant
|
|
|
|
|
return Tooltip(
|
2025-08-23 20:09:43 +05:30
|
|
|
message: enabled ? AppLocalizations.of(context)!.sendMessage : AppLocalizations.of(context)!.send,
|
2025-08-21 23:56:47 +05:30
|
|
|
child: Opacity(
|
2025-08-10 01:20:45 +05:30
|
|
|
opacity: enabled ? Alpha.primary : Alpha.disabled,
|
2025-08-21 23:56:47 +05:30
|
|
|
child: IgnorePointer(
|
|
|
|
|
ignoring: !enabled,
|
|
|
|
|
child: Material(
|
|
|
|
|
color: Colors.transparent,
|
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
|
borderRadius: BorderRadius.circular(radius),
|
|
|
|
|
side: BorderSide(
|
|
|
|
|
color: enabled
|
|
|
|
|
? context.conduitTheme.cardBorder
|
|
|
|
|
: context.conduitTheme.cardBorder.withValues(alpha: Alpha.medium),
|
|
|
|
|
width: BorderWidth.regular,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
child: InkWell(
|
|
|
|
|
borderRadius: BorderRadius.circular(radius),
|
|
|
|
|
onTap: enabled
|
|
|
|
|
? () {
|
|
|
|
|
PlatformUtils.lightHaptic();
|
|
|
|
|
_sendMessage();
|
|
|
|
|
}
|
|
|
|
|
: null,
|
|
|
|
|
child: Container(
|
|
|
|
|
width: buttonSize,
|
|
|
|
|
height: buttonSize,
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: context.conduitTheme.cardBackground,
|
|
|
|
|
borderRadius: BorderRadius.circular(radius),
|
|
|
|
|
boxShadow: ConduitShadows.button,
|
|
|
|
|
),
|
|
|
|
|
child: Icon(
|
|
|
|
|
Platform.isIOS ? CupertinoIcons.arrow_up : Icons.arrow_upward,
|
|
|
|
|
size: IconSize.medium,
|
2025-08-10 01:20:45 +05:30
|
|
|
color: enabled
|
2025-08-21 23:56:47 +05:30
|
|
|
? context.conduitTheme.textPrimary
|
|
|
|
|
: context.conduitTheme.textPrimary.withValues(alpha: Alpha.disabled),
|
2025-08-10 01:20:45 +05:30
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Widget _buildRoundButton({
|
|
|
|
|
required IconData icon,
|
|
|
|
|
VoidCallback? onTap,
|
|
|
|
|
String? tooltip,
|
|
|
|
|
bool isActive = false,
|
|
|
|
|
bool showBackground = true,
|
|
|
|
|
}) {
|
|
|
|
|
return Tooltip(
|
|
|
|
|
message: tooltip ?? '',
|
2025-08-21 23:56:47 +05:30
|
|
|
child: Material(
|
|
|
|
|
color: Colors.transparent,
|
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
|
borderRadius: BorderRadius.circular(AppBorderRadius.xl),
|
|
|
|
|
side: BorderSide(
|
|
|
|
|
color: isActive
|
|
|
|
|
? context.conduitTheme.textPrimary.withValues(
|
|
|
|
|
alpha: Alpha.buttonHover + Alpha.subtle,
|
|
|
|
|
)
|
|
|
|
|
: showBackground
|
|
|
|
|
? context.conduitTheme.cardBorder
|
|
|
|
|
: Colors.transparent,
|
|
|
|
|
width: BorderWidth.regular,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
child: InkWell(
|
|
|
|
|
borderRadius: BorderRadius.circular(AppBorderRadius.xl),
|
|
|
|
|
onTap: onTap == null
|
|
|
|
|
? null
|
|
|
|
|
: () {
|
|
|
|
|
HapticFeedback.selectionClick();
|
|
|
|
|
onTap();
|
|
|
|
|
},
|
|
|
|
|
child: Container(
|
2025-08-10 01:20:45 +05:30
|
|
|
width: TouchTarget.comfortable,
|
|
|
|
|
height: TouchTarget.comfortable,
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: isActive
|
|
|
|
|
? context.conduitTheme.textPrimary.withValues(
|
|
|
|
|
alpha: Alpha.buttonHover,
|
|
|
|
|
)
|
|
|
|
|
: showBackground
|
|
|
|
|
? context.conduitTheme.cardBackground
|
|
|
|
|
: Colors.transparent,
|
|
|
|
|
borderRadius: BorderRadius.circular(AppBorderRadius.xl),
|
|
|
|
|
boxShadow: (isActive || showBackground)
|
|
|
|
|
? ConduitShadows.button
|
|
|
|
|
: null,
|
|
|
|
|
),
|
|
|
|
|
child: Icon(
|
|
|
|
|
icon,
|
|
|
|
|
size: IconSize.medium,
|
|
|
|
|
color: widget.enabled
|
|
|
|
|
? (isActive
|
|
|
|
|
? context.conduitTheme.textPrimary
|
|
|
|
|
: context.conduitTheme.textPrimary.withValues(
|
|
|
|
|
alpha: Alpha.strong,
|
|
|
|
|
))
|
|
|
|
|
: context.conduitTheme.textPrimary.withValues(
|
|
|
|
|
alpha: Alpha.disabled,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
2025-08-21 23:56:47 +05:30
|
|
|
));
|
2025-08-10 01:20:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _showAttachmentOptions() {
|
2025-08-21 23:56:47 +05:30
|
|
|
HapticFeedback.selectionClick();
|
2025-08-10 01:20:45 +05:30
|
|
|
showModalBottomSheet(
|
|
|
|
|
context: context,
|
|
|
|
|
backgroundColor: Colors.transparent,
|
|
|
|
|
builder: (context) => Container(
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: context.conduitTheme.surfaceBackground,
|
|
|
|
|
borderRadius: const BorderRadius.vertical(
|
|
|
|
|
top: Radius.circular(AppBorderRadius.bottomSheet),
|
|
|
|
|
),
|
2025-08-21 23:56:47 +05:30
|
|
|
border: Border.all(
|
|
|
|
|
color: context.conduitTheme.dividerColor,
|
|
|
|
|
width: BorderWidth.regular,
|
|
|
|
|
),
|
2025-08-10 01:20:45 +05:30
|
|
|
boxShadow: ConduitShadows.modal,
|
|
|
|
|
),
|
|
|
|
|
padding: const EdgeInsets.all(Spacing.bottomSheetPadding),
|
|
|
|
|
child: Column(
|
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
|
children: [
|
2025-08-22 01:24:04 +05:30
|
|
|
// Handle bar (standardized)
|
|
|
|
|
const SheetHandle(),
|
2025-08-10 01:20:45 +05:30
|
|
|
const SizedBox(height: Spacing.lg),
|
|
|
|
|
|
|
|
|
|
// Options grid
|
|
|
|
|
Row(
|
|
|
|
|
children: [
|
2025-08-21 23:56:47 +05:30
|
|
|
Expanded(
|
|
|
|
|
child: _buildAttachmentOption(
|
2025-08-10 01:20:45 +05:30
|
|
|
icon: Platform.isIOS ? CupertinoIcons.doc : Icons.attach_file,
|
2025-08-23 20:09:43 +05:30
|
|
|
label: AppLocalizations.of(context)!.file,
|
2025-08-10 01:20:45 +05:30
|
|
|
onTap: () {
|
2025-08-21 23:56:47 +05:30
|
|
|
HapticFeedback.lightImpact();
|
2025-08-10 01:20:45 +05:30
|
|
|
Navigator.pop(context); // Close modal
|
|
|
|
|
widget.onFileAttachment?.call();
|
|
|
|
|
},
|
2025-08-21 23:56:47 +05:30
|
|
|
)),
|
|
|
|
|
const SizedBox(width: Spacing.md),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: _buildAttachmentOption(
|
2025-08-10 01:20:45 +05:30
|
|
|
icon: Platform.isIOS ? CupertinoIcons.photo : Icons.image,
|
2025-08-23 20:09:43 +05:30
|
|
|
label: AppLocalizations.of(context)!.photo,
|
2025-08-10 01:20:45 +05:30
|
|
|
onTap: () {
|
2025-08-21 23:56:47 +05:30
|
|
|
HapticFeedback.lightImpact();
|
2025-08-10 01:20:45 +05:30
|
|
|
Navigator.pop(context); // Close modal
|
|
|
|
|
widget.onImageAttachment?.call();
|
|
|
|
|
},
|
2025-08-21 23:56:47 +05:30
|
|
|
)),
|
|
|
|
|
const SizedBox(width: Spacing.md),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: _buildAttachmentOption(
|
2025-08-10 01:20:45 +05:30
|
|
|
icon: Platform.isIOS
|
|
|
|
|
? CupertinoIcons.camera
|
|
|
|
|
: Icons.camera_alt,
|
2025-08-23 20:09:43 +05:30
|
|
|
label: AppLocalizations.of(context)!.camera,
|
2025-08-10 01:20:45 +05:30
|
|
|
onTap: () {
|
2025-08-21 23:56:47 +05:30
|
|
|
HapticFeedback.lightImpact();
|
2025-08-10 01:20:45 +05:30
|
|
|
Navigator.pop(context); // Close modal
|
|
|
|
|
widget.onCameraCapture?.call();
|
|
|
|
|
},
|
2025-08-21 23:56:47 +05:30
|
|
|
)),
|
2025-08-10 01:20:45 +05:30
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
const SizedBox(height: Spacing.lg),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-20 16:08:44 +05:30
|
|
|
void _showUnifiedToolsModal() {
|
2025-08-21 23:56:47 +05:30
|
|
|
HapticFeedback.selectionClick();
|
2025-08-20 16:08:44 +05:30
|
|
|
showModalBottomSheet(
|
|
|
|
|
context: context,
|
|
|
|
|
backgroundColor: Colors.transparent,
|
|
|
|
|
builder: (context) => const UnifiedToolsModal(),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-10 01:20:45 +05:30
|
|
|
Widget _buildAttachmentOption({
|
|
|
|
|
required IconData icon,
|
|
|
|
|
required String label,
|
|
|
|
|
VoidCallback? onTap,
|
|
|
|
|
}) {
|
2025-08-21 23:56:47 +05:30
|
|
|
return Material(
|
|
|
|
|
color: Colors.transparent,
|
|
|
|
|
child: InkWell(
|
|
|
|
|
borderRadius: BorderRadius.circular(AppBorderRadius.lg),
|
|
|
|
|
onTap: onTap == null
|
|
|
|
|
? null
|
|
|
|
|
: () {
|
|
|
|
|
HapticFeedback.selectionClick();
|
|
|
|
|
onTap();
|
|
|
|
|
},
|
|
|
|
|
child: Column(
|
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
|
children: [
|
|
|
|
|
Container(
|
|
|
|
|
width: 64,
|
|
|
|
|
height: 64,
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
color: context.conduitTheme.cardBackground,
|
|
|
|
|
borderRadius: BorderRadius.circular(AppBorderRadius.lg),
|
|
|
|
|
border: Border.all(
|
|
|
|
|
color: context.conduitTheme.cardBorder,
|
|
|
|
|
width: BorderWidth.regular,
|
2025-08-10 01:20:45 +05:30
|
|
|
),
|
2025-08-21 23:56:47 +05:30
|
|
|
),
|
|
|
|
|
child: Icon(
|
|
|
|
|
icon,
|
|
|
|
|
color: context.conduitTheme.iconPrimary,
|
|
|
|
|
size: IconSize.xl,
|
2025-08-10 01:20:45 +05:30
|
|
|
),
|
|
|
|
|
),
|
2025-08-21 23:56:47 +05:30
|
|
|
const SizedBox(height: Spacing.sm),
|
|
|
|
|
Text(
|
|
|
|
|
label,
|
|
|
|
|
style: AppTypography.labelStyle.copyWith(
|
|
|
|
|
color: context.conduitTheme.textPrimary,
|
|
|
|
|
),
|
2025-08-10 01:20:45 +05:30
|
|
|
),
|
2025-08-21 23:56:47 +05:30
|
|
|
],
|
|
|
|
|
),
|
2025-08-10 01:20:45 +05:30
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|