summaryrefslogtreecommitdiff
path: root/app/views/projects/diffs/_file_header.html.haml
blob: 7d6b3701f95adaf3242de9cb6a052d75acab0a83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
%i.fa.diff-toggle-caret.fa-fw
- if defined?(blob) && blob && diff_file.submodule?
  %span
    = icon('archive fw')

    %strong.file-title-name
      = submodule_link(blob, diff_commit.id, project.repository)

    = copy_file_path_button(blob.path)
- else
  = conditional_link_to url.present?, url do
    = blob_icon diff_file.b_mode, diff_file.file_path

    - if diff_file.renamed_file
      - old_path, new_path = mark_inline_diffs(diff_file.old_path, diff_file.new_path)
      %strong.file-title-name.has-tooltip{ data: { title: diff_file.old_path, container: 'body' } }
        = old_path
      →
      %strong.file-title-name.has-tooltip{ data: { title: diff_file.new_path, container: 'body' } }
        = new_path
    - else
      %strong.file-title-name.has-tooltip{ data: { title: diff_file.new_path, container: 'body' } }
        = diff_file.new_path
      - if diff_file.deleted_file
        deleted

  = copy_file_path_button(diff_file.new_path)

  - if diff_file.mode_changed?
    %small
      #{diff_file.a_mode} → #{diff_file.b_mode}