mirror of
https://github.com/we-promise/sure.git
synced 2026-04-21 13:04:18 +00:00
* Domain model sketch * Scaffold out rules domain * Migrations * Remove existing data enrichment for clean slate * Sketch out business logic and basic tests * Simplify rule scope building and action executions * Get generator working again * Basic implementation + tests * Remove manual merchant management (rules will replace) * Revert "Remove manual merchant management (rules will replace)" This reverts commit 83dcbd9ff0aa7bbee211796b71aa48b71df5e57e. * Family and Provider merchants model * Fix brakeman warnings * Fix notification loader * Update notification position * Add Rule action and condition registries * Rule form with compound conditions and tests * Split out notification types, add CTA type * Rules form builder and Stimulus controller * Clean up rule registry domain * Clean up rules stimulus controller * CTA message for rule when user changes transaction category * Fix tests * Lint updates * Centralize notifications in Notifiable concern * Implement category rule prompts with auto backoff and option to disable * Fix layout bug caused by merge conflict * Initialize rule with correct action for category CTA * Add rule deletions, get rules working * Complete dynamic rule form, split Stimulus controllers by resource * Fix failing tests * Change test password to avoid chromium conflicts * Update integration tests * Centralize all test password references * Add re-apply rule action * Rule confirm modal * Run migrations * Trigger rule notification after inline category updates * Clean up rule styles * Basic attribute locking for rules * Apply attribute locks on user edits * Log data enrichments, only apply rules to unlocked attributes * Fix merge errors * Additional merge conflict fixes * Form UI improvements, ignore attribute locks on manual rule application * Batch AI auto-categorization of transactions * Auto merchant detection, ai enrichment in batches * Fix Plaid merchant assignments * Plaid category matching * Cleanup 1 * Test cleanup * Remove stale route * Fix desktop chat UI issues * Fix mobile nav styling issues
35 lines
1.7 KiB
Plaintext
35 lines
1.7 KiB
Plaintext
<%# locals: (chat: nil, message_hint: nil) %>
|
|
|
|
<div id="chat-form" class="space-y-2">
|
|
<% model = chat && chat.persisted? ? [chat, Message.new] : Chat.new %>
|
|
|
|
<%= form_with model: model,
|
|
class: "flex lg:flex-col gap-2 bg-container px-2 py-1.5 rounded-full lg:rounded-lg shadow-border-xs",
|
|
data: { chat_target: "form" } do |f| %>
|
|
|
|
<%# In the future, this will be a dropdown with different AI models %>
|
|
<%= f.hidden_field :ai_model, value: "gpt-4o" %>
|
|
|
|
<%= f.text_area :content, placeholder: "Ask anything ...", value: message_hint,
|
|
class: "w-full border-0 focus:ring-0 text-sm resize-none px-1 bg-transparent",
|
|
data: { chat_target: "input", action: "input->chat#autoResize keydown->chat#handleInputKeyDown" },
|
|
rows: 1 %>
|
|
|
|
<div class="flex items-center justify-between gap-1">
|
|
<div class="items-center gap-1 hidden lg:flex">
|
|
<%# These are disabled for now, but in the future, will all open specific menus with their own context and search %>
|
|
<% ["plus", "command", "at-sign", "mouse-pointer-click"].each do |icon| %>
|
|
<button type="button" title="Coming soon" class="cursor-not-allowed w-8 h-8 flex justify-center items-center hover:bg-surface-hover rounded-lg">
|
|
<%= icon(icon, color: "gray") %>
|
|
</button>
|
|
<% end %>
|
|
</div>
|
|
|
|
<button type="submit" class="w-8 h-8 flex justify-center items-center text-secondary hover:bg-surface-hover cursor-pointer rounded-lg">
|
|
<%= icon("arrow-up") %>
|
|
</button>
|
|
</div>
|
|
<% end %>
|
|
|
|
<p class="text-xs text-secondary">AI responses are informational only and are not financial advice.</p>
|
|
</div> |