mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-06 22:15:20 +02:00
Since the very first 0.1.0-alpha.1 release, we've been moving quickly to add new features to the Maybe app. In doing so, some parts of the codebase have become outdated, unnecessary, or overly-complex as a natural result of this feature prioritization. Now that "core" Maybe is complete, we're moving into a second phase of development where we'll be working hard to improve the accuracy of existing features and build additional features on top of "core". This PR is a quick overhaul of the existing codebase aimed to: - Establish the brand new and simplified dashboard view (pictured above) - Establish and move towards the conventions introduced in Cursor rules and project design overview #1788 - Consolidate layouts and improve the performance of layout queries - Organize the core models of the Maybe domain (i.e. Account::Entry, Account::Transaction, etc.) and break out specific traits of each model into dedicated concerns for better readability - Remove stale / dead code from codebase - Remove overly complex code paths in favor of simpler ones
57 lines
2.6 KiB
Text
57 lines
2.6 KiB
Text
<%# locals: (pagy:) %>
|
|
|
|
<nav class="flex w-full items-center justify-between">
|
|
<div class="flex items-center gap-1">
|
|
<div>
|
|
<% if pagy.prev %>
|
|
<%= link_to pagy_url_for(pagy, pagy.prev),
|
|
data: { turbo_frame: :_top },
|
|
class: "inline-flex items-center p-2 text-sm font-medium text-secondary hover:border-gray-300 hover:text-gray-700" do %>
|
|
<%= lucide_icon("chevron-left", class: "w-5 h-5 text-secondary") %>
|
|
<% end %>
|
|
<% else %>
|
|
<div class="inline-flex items-center p-2 text-sm font-medium hover:border-gray-300">
|
|
<%= lucide_icon("chevron-left", class: "w-5 h-5 text-gray-200") %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
<div class="rounded-xl p-1 bg-gray-25">
|
|
<% pagy.series.each do |series_item| %>
|
|
<% if series_item.is_a?(Integer) %>
|
|
<%= link_to pagy_url_for(pagy, series_item),
|
|
data: { turbo_frame: :_top },
|
|
class: "rounded-md px-2 py-1 inline-flex items-center text-sm font-medium text-secondary hover:border-gray-300 hover:text-gray-700" do %>
|
|
<%= series_item %>
|
|
<% end %>
|
|
<% elsif series_item.is_a?(String) %>
|
|
<%= link_to pagy_url_for(pagy, series_item),
|
|
data: { turbo_frame: :_top },
|
|
class: "rounded-md px-2 py-1 bg-white border border-alpha-black-25 shadow-xs inline-flex items-center text-sm font-medium text-primary" do %>
|
|
<%= series_item %>
|
|
<% end %>
|
|
<% elsif series_item == :gap %>
|
|
<span class="inline-flex items-center px-2 py-1 text-sm font-medium text-secondary">...</span>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
<div>
|
|
<% if pagy.next %>
|
|
<%= link_to pagy_url_for(pagy, pagy.next),
|
|
data: { turbo_frame: :_top },
|
|
class: "inline-flex items-center p-2 text-sm font-medium text-secondary hover:border-gray-300 hover:text-gray-700" do %>
|
|
<%= lucide_icon("chevron-right", class: "w-5 h-5 text-secondary") %>
|
|
<% end %>
|
|
<% else %>
|
|
<div class="inline-flex items-center p-2 text-sm font-medium hover:border-gray-300">
|
|
<%= lucide_icon("chevron-right", class: "w-5 h-5 text-gray-200") %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<div class="flex items-center gap-4">
|
|
<%= select_tag :per_page,
|
|
options_for_select(["10", "20", "30", "50"], pagy.limit),
|
|
data: { controller: "selectable-link" },
|
|
class: "py-1.5 pr-8 text-sm text-primary font-medium border border-gray-200 rounded-lg focus:border-gray-900 focus:ring-gray-900 focus-visible:ring-gray-900" %>
|
|
</div>
|
|
</nav>
|