25 lines
598 B
Ruby
25 lines
598 B
Ruby
class Attachment::ShowComponent < ApplicationComponent
|
|
def initialize(attachment:, new_tab: false)
|
|
@attachment = attachment
|
|
@new_tab = new_tab
|
|
end
|
|
|
|
attr_reader :attachment, :new_tab
|
|
|
|
def should_display_link?
|
|
(attachment.virus_scanner.safe? || !attachment.virus_scanner.started?) && !attachment.watermark_pending?
|
|
end
|
|
|
|
def error_message
|
|
case
|
|
when attachment.virus_scanner.infected?
|
|
t(".errors.virus_infected")
|
|
when attachment.virus_scanner.corrupt?
|
|
t(".errors.corrupted_file")
|
|
end
|
|
end
|
|
|
|
def error?
|
|
attachment.virus_scanner_error?
|
|
end
|
|
end
|