27 lines
694 B
Ruby
27 lines
694 B
Ruby
class Dsfr::DownloadComponent < ApplicationComponent
|
|
attr_reader :attachment
|
|
attr_reader :html_class
|
|
attr_reader :name
|
|
attr_reader :ephemeral_link
|
|
attr_reader :virus_not_analyzed
|
|
attr_reader :new_tab
|
|
|
|
def initialize(attachment:, name: nil, url: nil, ephemeral_link: false, virus_not_analyzed: false, new_tab: false)
|
|
@attachment = attachment
|
|
@name = name || attachment.filename.to_s
|
|
@url = url
|
|
@ephemeral_link = ephemeral_link
|
|
@virus_not_analyzed = virus_not_analyzed
|
|
@new_tab = new_tab
|
|
end
|
|
|
|
def title
|
|
t(".title", filename: attachment.filename.to_s)
|
|
end
|
|
|
|
def url
|
|
return @url if @url.present?
|
|
|
|
helpers.url_for(@attachment.blob)
|
|
end
|
|
end
|