gitlab-org--gitlab-foss/app/helpers/tree_helper.rb

100 lines
2.6 KiB
Ruby
Raw Normal View History

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
2013-04-02 19:37:20 +00:00
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
tree += render partial: 'projects/tree/tree_item', collection: folders, locals: {type: 'folder'} if folders.present?
# Render files if we have any
tree += render partial: 'projects/tree/blob_item', collection: files, locals: {type: 'file'} if files.present?
# Render submodules if we have any
tree += render partial: 'projects/tree/submodule_item', collection: submodules if submodules.present?
tree.html_safe
end
def render_readme(readme)
if gitlab_markdown?(readme.name)
preserve(markdown(readme.data))
elsif markup?(readme.name)
render_markup(readme.name, readme.data)
else
simple_format(readme.data)
end
end
# Return an image icon depending on the file type
#
# type - String type of the tree item; either 'folder' or 'file'
def tree_icon(type)
icon_class = if type == 'folder'
2014-10-01 22:21:29 +00:00
'fa fa-folder'
else
2014-10-01 22:21:29 +00:00
'fa fa-file-o'
end
content_tag :i, nil, class: icon_class
end
def tree_hex_class(content)
"file_#{hexdigest(content.name)}"
end
# Simple shortcut to File.join
def tree_join(*args)
File.join(*args)
end
def allowed_tree_edit?
return false unless @repository.branch_names.include?(@ref)
if @project.protected_branch? @ref
can?(current_user, :push_code_to_protected_branches, @project)
else
can?(current_user, :push_code, @project)
end
end
2013-03-31 20:46:54 +00:00
def tree_breadcrumbs(tree, max_links = 2)
2013-10-01 14:00:28 +00:00
if @path.present?
2013-03-31 20:46:54 +00:00
part_path = ""
2013-10-01 14:00:28 +00:00
parts = @path.split("\/")
2013-03-31 20:46:54 +00:00
yield('..', nil) if parts.count > max_links
2013-03-31 20:46:54 +00:00
parts.each do |part|
part_path = File.join(part_path, part) unless part_path.empty?
part_path = part if part_path.empty?
2013-03-31 20:46:54 +00:00
next unless parts.last(2).include?(part) if parts.count > max_links
2013-10-01 14:00:28 +00:00
yield(part, tree_join(@ref, part_path))
end
end
2013-03-31 20:46:54 +00:00
end
def up_dir_path(tree)
2013-10-01 14:00:28 +00:00
file = File.join(@path, "..")
tree_join(@ref, file)
end
2013-05-27 12:43:44 +00:00
def leave_edit_message
"Leave edit mode?\nAll unsaved changes will be lost."
end
2014-04-15 15:02:02 +00:00
def editing_preview_title(filename)
if Gitlab::MarkdownHelper.previewable?(filename)
2014-04-15 15:02:02 +00:00
'Preview'
else
'Diff'
end
end
end