mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
* WIP * WIP * WIP * WIP * WIP * WIP * WIP * format * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * fix conflict * fix conflict * chore: run rubocop * fix test * update PWA logo * fix tests * chore: lint * fix test * Refactor: Remove duplicate data attribute in activity partial and add chat form rendering in chats index --------- Co-authored-by: Josh Pigford <josh@joshpigford.com>
49 lines
2.1 KiB
Text
49 lines
2.1 KiB
Text
<%# locals: (import:) %>
|
|
|
|
<% steps = [
|
|
{ name: "Upload", path: import_upload_path(import), is_complete: import.uploaded?, step_number: 1 },
|
|
{ name: "Configure", path: import_configuration_path(import), is_complete: import.configured?, step_number: 2 },
|
|
{ name: "Clean", path: import_clean_path(import), is_complete: import.cleaned?, step_number: 3 },
|
|
{ name: "Map", path: import_confirm_path(import), is_complete: import.publishable?, step_number: 4 },
|
|
{ name: "Confirm", path: import_path(import), is_complete: import.complete?, step_number: 5 }
|
|
].reject { |step| step[:name] == "Map" && import.mapping_steps.empty? } %>
|
|
|
|
<% content_for :mobile_import_progress do %>
|
|
<% active_step = steps.detect { |s| request.path.eql?(s[:path]) } %>
|
|
<% if active_step.present? %>
|
|
<div class="md:hidden text-center text-secondary text-md my-2">
|
|
<span class="text-gray-500">Step <%= active_step[:step_number] %> of <%= steps.size %></span>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<ul class="hidden md:flex items-center gap-2">
|
|
<% steps.each_with_index do |step, idx| %>
|
|
<li class="flex items-center gap-2 group">
|
|
<% is_current = request.path == step[:path] %>
|
|
|
|
<% text_class = if is_current
|
|
"text-primary"
|
|
else
|
|
step[:is_complete] ? "text-green-600" : "text-secondary"
|
|
end %>
|
|
<% step_class = if is_current
|
|
"bg-primary text-white"
|
|
else
|
|
step[:is_complete] ? "bg-green-600/10 border-alpha-black-25" : "bg-container-inset"
|
|
end %>
|
|
|
|
<%= link_to step[:path], class: "flex items-center gap-3" do %>
|
|
<div class="flex items-center gap-2 text-sm font-medium <%= text_class %>">
|
|
<span class="<%= step_class %> w-7 h-7 rounded-full shrink-0 inline-flex items-center justify-center border border-transparent">
|
|
<%= step[:is_complete] && !is_current ? lucide_icon("check", class: "w-4 h-4") : idx + 1 %>
|
|
</span>
|
|
|
|
<span><%= step[:name] %></span>
|
|
</div>
|
|
<% end %>
|
|
|
|
<div class="h-px bg-alpha-black-200 w-12 group-last:hidden"></div>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|