Files
sure/app/views/lunchflow_items/_loading.html.erb
soky srm 5eadfaad98 Lunchflow integration (#259)
* First pass lunch flow

* Fixes

- Fix apikey not being saved properly due to provider no reload support
- Fix proper messages if we try to link existing accounts.

* Fix better error handling

* Filter existing transactions and skip duplicates

* FIX messaging

* Branding :)

* Fix XSS and linter

* FIX provider concern

- also fix code duplication

* FIX md5 digest

* Updated determine_sync_start_date to be account-aware

* Review fixes

* Broaden error catch to not crash UI

* Fix buttons styling

* FIX process account error handling

* FIX account cap and url parsing

* Lunch Flow brand

* Found orphan i18n strings

* Remove per conversation with @sokie

---------

Co-authored-by: Juan José Mata <juanjo.mata@gmail.com>
2025-10-30 14:07:16 +01:00

17 lines
526 B
Plaintext

<%= turbo_frame_tag "modal" do %>
<%= render DS::Dialog.new do |dialog| %>
<% dialog.with_header(title: t(".loading_title")) %>
<% dialog.with_body do %>
<div class="flex items-center justify-center py-8">
<div class="flex flex-col items-center gap-4">
<%= icon("loader-circle", class: "h-8 w-8 animate-spin text-primary") %>
<p class="text-sm text-secondary">
<%= t(".loading_message") %>
</p>
</div>
</div>
<% end %>
<% end %>
<% end %>