2022-11-09 12:33:20 +01:00
|
|
|
class Dsfr::DownloadComponent < ApplicationComponent
|
|
|
|
renders_one :right
|
|
|
|
|
|
|
|
attr_reader :attachment
|
|
|
|
attr_reader :html_class
|
|
|
|
attr_reader :name
|
2022-12-05 15:59:50 +01:00
|
|
|
attr_reader :new_tab
|
2022-11-09 12:33:20 +01:00
|
|
|
|
2022-12-05 15:59:50 +01:00
|
|
|
def initialize(attachment:, name: nil, url: nil, new_tab: false)
|
2022-11-09 12:33:20 +01:00
|
|
|
@attachment = attachment
|
|
|
|
@name = name || attachment.filename.to_s
|
2022-12-01 17:57:53 +01:00
|
|
|
@url = url
|
2022-12-05 15:59:50 +01:00
|
|
|
@new_tab = new_tab
|
2022-11-09 12:33:20 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def title
|
2022-11-22 19:25:45 +01:00
|
|
|
t(".title", filename: attachment.filename.to_s)
|
2022-11-09 12:33:20 +01:00
|
|
|
end
|
2022-12-01 17:57:53 +01:00
|
|
|
|
|
|
|
def url
|
|
|
|
return @url if @url.present?
|
|
|
|
|
|
|
|
helpers.url_for(@attachment.blob)
|
|
|
|
end
|
2022-11-09 12:33:20 +01:00
|
|
|
end
|