debian-mirror-gitlab/app/helpers/tree_helper.rb

89 lines
2.5 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
module TreeHelper
# Sorts a repository's tree so that folders are before files and renders
# their corresponding partials
#
# contents - A Grit::Tree object for the current tree
def render_tree(tree)
# Render Folders before Files/Submodules
folders, files, submodules = tree.trees, tree.blobs, tree.submodules
tree = ""
# Render folders if we have any
2015-04-26 12:48:37 +05:30
tree << render(partial: 'projects/tree/tree_item', collection: folders,
locals: { type: 'folder' }) if folders.present?
2014-09-02 18:07:02 +05:30
# Render files if we have any
2015-04-26 12:48:37 +05:30
tree << render(partial: 'projects/tree/blob_item', collection: files,
locals: { type: 'file' }) if files.present?
2014-09-02 18:07:02 +05:30
# Render submodules if we have any
2015-04-26 12:48:37 +05:30
tree << render(partial: 'projects/tree/submodule_item',
collection: submodules) if submodules.present?
2014-09-02 18:07:02 +05:30
tree.html_safe
end
def render_readme(readme)
2015-09-11 14:41:01 +05:30
render_markup(readme.name, readme.data)
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
# Return an image icon depending on the file type and mode
2014-09-02 18:07:02 +05:30
#
# type - String type of the tree item; either 'folder' or 'file'
2015-04-26 12:48:37 +05:30
# mode - File unix mode
# name - File name
def tree_icon(type, mode, name)
icon("#{file_type_icon_class(type, mode, name)} fw")
2014-09-02 18:07:02 +05:30
end
def tree_hex_class(content)
"file_#{hexdigest(content.name)}"
end
# Simple shortcut to File.join
def tree_join(*args)
File.join(*args)
end
2015-04-26 12:48:37 +05:30
def allowed_tree_edit?(project = nil, ref = nil)
project ||= @project
ref ||= @ref
return false unless project.repository.branch_names.include?(ref)
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
::Gitlab::GitAccess.new(current_user, project).can_push_to_branch?(ref)
2014-09-02 18:07:02 +05:30
end
def tree_breadcrumbs(tree, max_links = 2)
if @path.present?
part_path = ""
2015-04-26 12:48:37 +05:30
parts = @path.split('/')
2014-09-02 18:07:02 +05:30
yield('..', nil) if parts.count > max_links
parts.each do |part|
part_path = File.join(part_path, part) unless part_path.empty?
part_path = part if part_path.empty?
next unless parts.last(2).include?(part) if parts.count > max_links
yield(part, tree_join(@ref, part_path))
end
end
end
2015-04-26 12:48:37 +05:30
def up_dir_path
2014-09-02 18:07:02 +05:30
file = File.join(@path, "..")
tree_join(@ref, file)
end
2015-04-26 12:48:37 +05:30
# returns the relative path of the first subdir that doesn't have only one directory descendant
def flatten_tree(tree)
subtree = Gitlab::Git::Tree.where(@repository, @commit.id, tree.path)
if subtree.count == 1 && subtree.first.dir?
return tree_join(tree.name, flatten_tree(subtree.first))
2014-09-02 18:07:02 +05:30
else
2015-04-26 12:48:37 +05:30
return tree.name
2014-09-02 18:07:02 +05:30
end
end
end