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

%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 str-truncated' do
        %span>= blob.name
      = sprite_icon('external-link', css_class: 'js-artifact-tree-external-icon')
    - else
      = link_to path_to_file, class: 'str-truncated' do
        %span= blob.name
  %td
    = number_to_human_size(blob.size)