summaryrefslogtreecommitdiff
path: root/app/views/projects/artifacts/_tree_file.html.haml
blob: 473b9debb3a8f01c2338095fb2f21576ebe2de61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- blob = file.blob
- path_to_file = file_project_job_artifacts_path(@project, @build, path: file.path)
- external_link = blob.external_link? && @project.public?

%tr.tree-item.js-artifact-tree-row{ data: { link: path_to_file, external_link: "#{external_link}" } }
  %td.tree-item-file-name
    = tree_icon('file', blob.mode, blob.name)
    - if external_link
      = link_to path_to_file, class: 'tree-item-file-external-link js-artifact-tree-tooltip',
          target: '_blank', rel: 'noopener noreferrer', title: _('Opens in a new window') do
        %span.str-truncated>= blob.name
      = icon('external-link', class: 'js-artifact-tree-external-icon')
    - else
      = link_to path_to_file do
        %span.str-truncated= blob.name
  %td
    = number_to_human_size(blob.size, precision: 2)