69 lines
2.2 KiB
Ruby
69 lines
2.2 KiB
Ruby
class Dossiers::ExportLinkComponent < ApplicationComponent
|
|
include ApplicationHelper
|
|
|
|
def initialize(procedure:, exports:, statut: nil, count: nil, class_btn: nil, export_url: nil)
|
|
@procedure = procedure
|
|
@exports = exports
|
|
@statut = statut
|
|
@count = count
|
|
@class_btn = class_btn
|
|
@export_url = export_url
|
|
end
|
|
|
|
def allowed_format?(item)
|
|
item.fetch(:format) != :json || @procedure.active_revision.carte?
|
|
end
|
|
|
|
def download_export_path(export_format:, statut:, force_export: false, no_progress_notification: nil)
|
|
@export_url.call(@procedure,
|
|
export_format: export_format,
|
|
force_export: force_export,
|
|
statut: statut,
|
|
no_progress_notification: no_progress_notification)
|
|
end
|
|
|
|
def time_info(export)
|
|
if export.available?
|
|
t(".ready_link_label_time_info", export_time: helpers.time_ago_in_words(export.updated_at))
|
|
else
|
|
t(".not_ready_link_label_time_info", export_time: helpers.time_ago_in_words(export.updated_at))
|
|
end
|
|
end
|
|
|
|
def export_title(export)
|
|
count = export.count
|
|
|
|
case count
|
|
when nil
|
|
t(".export_title", export_tabs: export.statut.to_s, export_format: export.format)
|
|
else
|
|
t(".export_title_counted", export_tabs: export.statut.to_s, export_format: export.format, count: count)
|
|
end
|
|
end
|
|
|
|
def badge(export)
|
|
if export.available?
|
|
content_tag(:span, t(".success_label"), { class: "fr-badge fr-badge--success fr-text-right" })
|
|
elsif export.failed?
|
|
content_tag(:span, t(".failed_label"), { class: "fr-badge fr-badge--warning fr-text-right" })
|
|
else
|
|
content_tag(:span, t(".pending_label"), { class: "fr-badge fr-badge--info fr-text-right" })
|
|
end
|
|
end
|
|
|
|
def export_button(export)
|
|
if export.available?
|
|
title = t(".everything_ready", export_format: ".#{export.format}")
|
|
content_tag(:a, title, { href: export.file.url, title: new_tab_suffix(title), target: "_blank", rel: "noopener", class: 'fr-btn' })
|
|
elsif export.pending?
|
|
content_tag(:a, t('.refresh_page'), { href: "", class: 'fr-btn fr-btn fr-btn--tertiary' })
|
|
end
|
|
end
|
|
|
|
def refresh_button_options(export)
|
|
{
|
|
title: t(".refresh_old_export", export_format: ".#{export.format}"),
|
|
class: "fr-btn fr-btn--tertiary"
|
|
}
|
|
end
|
|
end
|