summaryrefslogtreecommitdiff
path: root/app/views/projects/tree/_tree.html.haml
blob: 367a87927d7910662801a2351d9c0b170ae6f0cb (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
%ul.breadcrumb.repo-breadcrumb
  %li
    = link_to namespace_project_tree_path(@project.namespace, @project, @ref) do
      = @project.path
  - tree_breadcrumbs(tree, 6) do |title, path|
    %li
      - if path
        = link_to truncate(title, length: 40), namespace_project_tree_path(@project.namespace, @project, path)
      - else
        = link_to title, '#'
  - if current_user && can_push_branch?(@project, @ref)
    %li
      = link_to namespace_project_new_blob_path(@project.namespace, @project, @id), title: 'New file', id: 'new-file-link' do
        %small
          %i.fa.fa-plus

%div#tree-content-holder.tree-content-holder.prepend-top-20
  %table#tree-slider{class: "table_#{@hex_path} tree-table" }
    %thead
      %tr
        %th Name
        %th Last Update
        %th.hidden-xs
          .pull-left Last Commit
          .last-commit.hidden-sm.pull-left
             
            %i.fa.fa-angle-right
             
            %small.light
              = link_to @commit.short_id, namespace_project_commit_path(@project.namespace, @project, @commit)
              –
              = truncate(@commit.title, length: 50)
          = link_to 'History', namespace_project_commits_path(@project.namespace, @project, @id), class: 'pull-right'

    - if @path.present?
      %tr.tree-item
        %td.tree-item-file-name
          = link_to "..", namespace_project_tree_path(@project.namespace, @project, up_dir_path), class: 'prepend-left-10'
        %td
        %td.hidden-xs

    = 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("#{escape_javascript(@logs_path)}");
  });