summaryrefslogtreecommitdiff
path: root/app/views/projects/tree/_tree.html.haml
blob: 80ed1fdeabf073607025b06ff7bdf1d9758ce09b (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
%ul.breadcrumb
  %li
    %i.icon-angle-right
    = link_to project_tree_path(@project, @ref) do
      = @project.path
  - tree_breadcrumbs(tree, 6) do |title, path|
    %li
      - if path
        = link_to truncate(title, length: 40), project_tree_path(@project, path)
      - else
        = link_to title, '#'
  - if @repository.branch_names.include?(@ref)
    %li
      = link_to project_new_tree_path(@project, @id), title: 'New file', id: 'new-file-link' do
        %small
          %i.icon-plus.light

%div#tree-content-holder.tree-content-holder
  %table#tree-slider{class: "table_#{@hex_path} tree-table" }
    %thead
      %tr
        %th Name
        %th Last Update
        %th
          Last Commit
           
          %i.icon-angle-right
           
          %small.light
            = link_to @commit.short_id, project_commit_path(@project, @commit)
            –
            = truncate(@commit.title, length: 50)
        %th= link_to "history", project_commits_path(@project, @id), class: "pull-right"

    - if @path.present?
      %tr.tree-item
        %td.tree-item-file-name
          = image_tag "file_empty.png", size: '16x16'
          = link_to "..", project_tree_path(@project, up_dir_path(tree))
        %td
        %td
        %td

    = render_tree(tree)

  - if tree.readme
    = render "projects/tree/readme", readme: tree.readme

%div.tree_progress

:javascript
  // Load last commit log for each file in tree
  $('#tree-slider').waitForImages(function() {
    ajaxGet('#{@logs_path}');
  });