2012-07-10 16:12:38 -04:00
|
|
|
module TreeHelper
|
2012-10-03 18:40:56 -04:00
|
|
|
# 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
|
2013-04-02 15:37:20 -04:00
|
|
|
def render_tree(tree)
|
2012-10-03 18:40:56 -04:00
|
|
|
# Render Folders before Files/Submodules
|
2013-05-01 06:39:37 -04:00
|
|
|
folders, files, submodules = tree.trees, tree.blobs, tree.submodules
|
2012-10-03 18:40:56 -04:00
|
|
|
|
|
|
|
tree = ""
|
|
|
|
|
|
|
|
# Render folders if we have any
|
2014-10-09 03:47:47 -04:00
|
|
|
tree << render(partial: 'projects/tree/tree_item', collection: folders,
|
|
|
|
locals: { type: 'folder' }) if folders.present?
|
2012-10-03 18:40:56 -04:00
|
|
|
|
2013-05-01 06:39:37 -04:00
|
|
|
# Render files if we have any
|
2014-10-09 03:47:47 -04:00
|
|
|
tree << render(partial: 'projects/tree/blob_item', collection: files,
|
|
|
|
locals: { type: 'file' }) if files.present?
|
2013-05-01 06:39:37 -04:00
|
|
|
|
|
|
|
# Render submodules if we have any
|
2014-10-09 03:47:47 -04:00
|
|
|
tree << render(partial: 'projects/tree/submodule_item',
|
|
|
|
collection: submodules) if submodules.present?
|
2012-10-03 18:40:56 -04:00
|
|
|
|
|
|
|
tree.html_safe
|
2012-07-10 16:12:38 -04:00
|
|
|
end
|
|
|
|
|
2014-08-11 02:50:56 -04:00
|
|
|
def render_readme(readme)
|
2015-05-12 19:54:13 -04:00
|
|
|
render_markup(readme.name, readme.data)
|
2014-08-11 02:50:56 -04:00
|
|
|
end
|
|
|
|
|
2014-10-04 06:29:18 -04:00
|
|
|
# Return an image icon depending on the file type and mode
|
2012-10-03 18:40:56 -04:00
|
|
|
#
|
|
|
|
# type - String type of the tree item; either 'folder' or 'file'
|
2014-10-04 06:29:18 -04:00
|
|
|
# mode - File unix mode
|
|
|
|
# name - File name
|
|
|
|
def tree_icon(type, mode, name)
|
|
|
|
icon("#{file_type_icon_class(type, mode, name)} fw")
|
2012-07-10 16:12:38 -04:00
|
|
|
end
|
|
|
|
|
2012-10-03 18:40:56 -04:00
|
|
|
def tree_hex_class(content)
|
|
|
|
"file_#{hexdigest(content.name)}"
|
2012-07-10 16:12:38 -04:00
|
|
|
end
|
2012-09-05 16:52:49 -04:00
|
|
|
|
2012-09-17 12:39:57 -04:00
|
|
|
# Simple shortcut to File.join
|
|
|
|
def tree_join(*args)
|
|
|
|
File.join(*args)
|
|
|
|
end
|
2012-10-21 05:12:14 -04:00
|
|
|
|
2014-09-28 05:02:29 -04:00
|
|
|
def allowed_tree_edit?(project = nil, ref = nil)
|
|
|
|
project ||= @project
|
|
|
|
ref ||= @ref
|
|
|
|
return false unless project.repository.branch_names.include?(ref)
|
2013-08-04 10:18:49 -04:00
|
|
|
|
2015-03-24 09:10:55 -04:00
|
|
|
::Gitlab::GitAccess.new(current_user, project).can_push_to_branch?(ref)
|
2014-09-28 05:02:29 -04:00
|
|
|
end
|
|
|
|
|
2013-03-31 16:46:54 -04:00
|
|
|
def tree_breadcrumbs(tree, max_links = 2)
|
2013-10-01 10:00:28 -04:00
|
|
|
if @path.present?
|
2013-03-31 16:46:54 -04:00
|
|
|
part_path = ""
|
2014-11-04 05:16:53 -05:00
|
|
|
parts = @path.split('/')
|
2013-03-31 16:46:54 -04:00
|
|
|
|
|
|
|
yield('..', nil) if parts.count > max_links
|
2012-11-01 17:58:13 -04:00
|
|
|
|
2013-03-31 16:46:54 -04:00
|
|
|
parts.each do |part|
|
|
|
|
part_path = File.join(part_path, part) unless part_path.empty?
|
|
|
|
part_path = part if part_path.empty?
|
2012-11-01 17:58:13 -04:00
|
|
|
|
2013-03-31 16:46:54 -04:00
|
|
|
next unless parts.last(2).include?(part) if parts.count > max_links
|
2013-10-01 10:00:28 -04:00
|
|
|
yield(part, tree_join(@ref, part_path))
|
2012-11-01 17:58:13 -04:00
|
|
|
end
|
|
|
|
end
|
2013-03-31 16:46:54 -04:00
|
|
|
end
|
2012-11-01 17:58:13 -04:00
|
|
|
|
2014-09-30 16:28:05 -04:00
|
|
|
def up_dir_path
|
2013-10-01 10:00:28 -04:00
|
|
|
file = File.join(@path, "..")
|
|
|
|
tree_join(@ref, file)
|
2012-11-01 17:58:13 -04:00
|
|
|
end
|
2013-05-27 08:43:44 -04:00
|
|
|
|
2015-01-18 10:29:37 -05:00
|
|
|
# returns the relative path of the first subdir that doesn't have only one directory descendant
|
2014-12-30 21:15:04 -05:00
|
|
|
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))
|
|
|
|
else
|
|
|
|
return tree.name
|
|
|
|
end
|
|
|
|
end
|
2012-07-10 16:12:38 -04:00
|
|
|
end
|