summaryrefslogtreecommitdiff
path: root/app/views/projects/diffs/_stats.html.haml
blob: efc0ea31917576868428c21b886ace592753fd4a (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
32
33
34
- sum_added_lines = diff_files.sum(&:added_lines)
- sum_removed_lines = diff_files.sum(&:removed_lines)
.commit-stat-summary.dropdown
  Showing
  %button.diff-stats-summary-toggler.js-diff-stats-dropdown{ type: "button", data: { toggle: "dropdown" } }<
    = pluralize(diff_files.size, "changed file")
    = icon("caret-down", class: "prepend-left-5")
  %span.diff-stats-additions-deletions-expanded#diff-stats
    with
    %strong.cgreen #{sum_added_lines} additions
    and
    %strong.cred #{sum_removed_lines} deletions
  .diff-stats-additions-deletions-collapsed.pull-right{ "aria-hidden": "true", "aria-describedby": "diff-stats" }
    %strong.cgreen<
      +#{sum_added_lines}
    %strong.cred<
      \-#{sum_removed_lines}
  .dropdown-menu.diff-file-changes
    = dropdown_filter("Search files")
    .dropdown-content
      %ul
        - diff_files.each do |diff_file|
          %li
            %a{ href: "##{hexdigest(diff_file.file_path)}", title: diff_file.new_path }
              = icon("#{diff_file_changed_icon(diff_file)} fw", class: "#{diff_file_changed_icon_color(diff_file)} append-right-5")
              %span.diff-file-changes-path= diff_file.new_path
              .pull-right
                %span.cgreen<
                  +#{diff_file.added_lines}
                %span.cred<
                  \-#{diff_file.removed_lines}
        %li.dropdown-menu-empty-link.hidden
          %a{ href: "#" }
            No files found.