Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-ce
Commits
a9cce935
Commit
a9cce935
authored
Oct 08, 2012
by
Valeriy Sizov
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1627 from tsigo/tree_performance
Tree performance improvements
parents
325569ac
332fc328
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
83 additions
and
95 deletions
+83
-95
app/assets/javascripts/tree.js
app/assets/javascripts/tree.js
+0
-30
app/assets/javascripts/tree.js.coffee
app/assets/javascripts/tree.js.coffee
+21
-0
app/decorators/tree_decorator.rb
app/decorators/tree_decorator.rb
+2
-2
app/helpers/tree_helper.rb
app/helpers/tree_helper.rb
+29
-18
app/views/tree/_submodule_item.html.haml
app/views/tree/_submodule_item.html.haml
+3
-5
app/views/tree/_tree.html.haml
app/views/tree/_tree.html.haml
+8
-13
app/views/tree/_tree_file.html.haml
app/views/tree/_tree_file.html.haml
+12
-12
app/views/tree/_tree_item.html.haml
app/views/tree/_tree_item.html.haml
+6
-8
app/views/tree/show.html.haml
app/views/tree/show.html.haml
+1
-6
app/views/tree/show.js.haml
app/views/tree/show.js.haml
+1
-1
No files found.
app/assets/javascripts/tree.js
deleted
100644 → 0
View file @
325569ac
/**
* Tree slider for code browse
*
*/
var
Tree
=
{
init
:
function
()
{
$
(
'
#tree-slider .tree-item-file-name a, .breadcrumb li > a
'
).
live
(
"
click
"
,
function
()
{
$
(
"
#tree-content-holder
"
).
hide
(
"
slide
"
,
{
direction
:
"
left
"
},
150
)
})
$
(
'
.project-refs-form
'
).
live
({
"
ajax:beforeSend
"
:
function
()
{
$
(
"
#tree-content-holder
"
).
hide
(
"
slide
"
,
{
direction
:
"
left
"
},
150
);
}
})
$
(
"
#tree-slider .tree-item
"
).
live
(
'
click
'
,
function
(
e
){
if
(
e
.
target
.
nodeName
!=
"
A
"
)
{
link
=
$
(
this
).
find
(
"
.tree-item-file-name a
"
);
link
.
trigger
(
"
click
"
);
}
});
$
(
'
#tree-slider .tree-item-file-name a, .breadcrumb a, .project-refs-form
'
).
live
({
"
ajax:beforeSend
"
:
function
()
{
$
(
'
.tree_progress
'
).
addClass
(
"
loading
"
);
},
"
ajax:complete
"
:
function
()
{
$
(
'
.tree_progress
'
).
removeClass
(
"
loading
"
);
}
});
}
}
app/assets/javascripts/tree.js.coffee
0 → 100644
View file @
a9cce935
# Code browser tree slider
$
->
if
$
(
'#tree-slider'
).
length
>
0
# Show the "Loading commit data" for only the first element
$
(
'span.log_loading:first'
).
removeClass
(
'hide'
)
$
(
'#tree-slider .tree-item-file-name a, .breadcrumb li > a'
).
live
"click"
,
->
$
(
"#tree-content-holder"
).
hide
(
"slide"
,
{
direction
:
"left"
},
150
)
$
(
'.project-refs-form'
).
live
"ajax:beforeSend"
:
->
$
(
"#tree-content-holder"
).
hide
(
"slide"
,
{
direction
:
"left"
},
150
)
# Make the entire tree-item row clickable, but not if clicking another link (like a commit message)
$
(
"#tree-slider .tree-item"
).
live
'click'
,
(
e
)
->
$
(
'.tree-item-file-name a'
,
this
).
trigger
(
'click'
)
if
(
e
.
target
.
nodeName
!=
"A"
)
# Show/Hide the loading spinner
$
(
'#tree-slider .tree-item-file-name a, .breadcrumb a, .project-refs-form'
).
live
"ajax:beforeSend"
:
->
$
(
'.tree_progress'
).
addClass
(
"loading"
)
"ajax:complete"
:
->
$
(
'.tree_progress'
).
removeClass
(
"loading"
)
app/decorators/tree_decorator.rb
View file @
a9cce935
...
...
@@ -8,14 +8,14 @@ class TreeDecorator < ApplicationDecorator
#parts = parts[0...-1] if is_blob?
yield
(
h
.
link_to
(
".."
,
"#"
,
remote:
:
true
))
if
parts
.
count
>
max_links
yield
(
h
.
link_to
(
".."
,
"#"
,
remote:
true
))
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
(
h
.
link_to
(
h
.
truncate
(
part
,
length:
40
),
h
.
project_tree_path
(
project
,
h
.
tree_join
(
ref
,
part_path
)),
remote:
:
true
))
yield
(
h
.
link_to
(
h
.
truncate
(
part
,
length:
40
),
h
.
project_tree_path
(
project
,
h
.
tree_join
(
ref
,
part_path
)),
remote:
true
))
end
end
end
...
...
app/helpers/tree_helper.rb
View file @
a9cce935
module
TreeHelper
def
tree_icon
(
content
)
if
content
.
is_a?
(
Grit
::
Blob
)
if
content
.
text?
image_tag
"file_txt.png"
elsif
content
.
image?
image_tag
"file_img.png"
# 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
(
contents
)
# Render Folders before Files/Submodules
folders
,
files
=
contents
.
partition
{
|
v
|
v
.
kind_of?
(
Grit
::
Tree
)
}
tree
=
""
# Render folders if we have any
tree
+=
render
partial:
'tree/tree_item'
,
collection:
folders
,
locals:
{
type:
'folder'
}
if
folders
.
present?
files
.
each
do
|
f
|
if
f
.
respond_to?
(
:url
)
# Object is a Submodule
tree
+=
render
partial:
'tree/submodule_item'
,
object:
f
else
image_tag
"file_bin.png"
# Object is a Blob
tree
+=
render
partial:
'tree/tree_item'
,
object:
f
,
locals:
{
type:
'file'
}
end
else
image_tag
"file_dir.png"
end
tree
.
html_safe
end
def
tree_hex_class
(
content
)
"file_
#{
hexdigest
(
content
.
name
)
}
"
# Return an image icon depending on the file type
#
# type - String type of the tree item; either 'folder' or 'file'
def
tree_icon
(
type
)
image
=
type
==
'folder'
?
'file_dir.png'
:
'file_txt.png'
image_tag
(
image
,
size:
'16x16'
)
end
def
tree_full_path
(
content
)
content
.
name
.
force_encoding
(
'utf-8'
)
if
params
[
:path
]
File
.
join
(
params
[
:path
],
content
.
name
)
else
content
.
name
end
def
tree_hex_class
(
content
)
"file_
#{
hexdigest
(
content
.
name
)
}
"
end
# Public: Determines if a given filename is compatible with GitHub::Markup.
...
...
app/views/tree/_submodule_item.html.haml
View file @
a9cce935
-
url
=
content
.
url
(
@ref
)
rescue
nil
-
name
=
content
.
basename
-
url
=
submodule_item
.
url
(
@ref
)
rescue
nil
-
name
=
submodule_item
.
basename
-
return
unless
url
%tr
{
class:
"tree-item"
,
url:
url
}
%td
.tree-item-file-name
=
image_tag
"submodule.png"
%strong
=
truncate
(
name
,
length:
40
)
%td
%code
=
content
.
id
[
0
..
10
]
%code
=
submodule_item
.
id
[
0
..
10
]
%td
=
link_to
truncate
(
url
,
length:
40
),
url
app/views/tree/_tree.html.haml
View file @
a9cce935
...
...
@@ -6,13 +6,14 @@
-
tree
.
breadcrumbs
(
6
)
do
|
link
|
\/
%li
=
link
.clear
%div
.tree_progress
%div
#tree-content-holder
.tree-content-holder
-
if
tree
.
is_blob?
=
render
partial:
"tree/tree_file"
,
locals:
{
name:
tree
.
name
,
content:
tree
.
data
,
file:
tree
}
=
render
partial:
"tree/tree_file"
,
object:
tree
-
else
-
contents
=
tree
.
contents
%table
#tree-slider
{
class:
"table_#{@hex_path} tree-table"
}
%thead
%th
Name
...
...
@@ -22,22 +23,16 @@
=
link_to
"History"
,
tree
.
history_path
,
class:
"right"
-
if
tree
.
up_dir?
%tr
{
class:
"tree-item"
,
url:
tree
.
up_dir_path
}
%tr
.tree-item
%td
.tree-item-file-name
=
image_tag
"file_empty.png"
=
link_to
".."
,
tree
.
up_dir_path
,
remote:
:
true
=
image_tag
"file_empty.png"
,
size:
'16x16'
=
link_to
".."
,
tree
.
up_dir_path
,
remote:
true
%td
%td
-
index
=
0
-
contents
.
select
{
|
i
|
i
.
is_a?
(
Grit
::
Tree
)}.
each
do
|
content
|
=
render
partial:
"tree/tree_item"
,
locals:
{
content:
content
,
index:
(
index
+=
1
)
}
-
contents
.
select
{
|
i
|
i
.
is_a?
(
Grit
::
Blob
)}.
each
do
|
content
|
=
render
partial:
"tree/tree_item"
,
locals:
{
content:
content
,
index:
(
index
+=
1
)
}
-
contents
.
select
{
|
i
|
i
.
is_a?
(
Grit
::
Submodule
)}.
each
do
|
content
|
=
render
partial:
"tree/submodule_item"
,
locals:
{
content:
content
,
index:
(
index
+=
1
)
}
=
render_tree
(
tree
.
contents
)
-
if
content
=
contents
.
select
{
|
c
|
c
.
is_a?
(
Grit
::
Blob
)
and
c
.
name
=~
/^readme/i
}.
first
-
if
content
=
tree
.
contents
.
find
{
|
c
|
c
.
is_a?
(
Grit
::
Blob
)
and
c
.
name
=~
/^readme/i
}
.file_holder
#README
.file_title
%i
.icon-file
...
...
app/views/tree/_tree_file.html.haml
View file @
a9cce935
...
...
@@ -2,32 +2,32 @@
.file_title
%i
.icon-file
%span
.file_name
=
name
.
force_encoding
(
'utf-8'
)
%small
#{
file
.
mode
}
=
tree_file
.
name
.
force_encoding
(
'utf-8'
)
%small
#{
tree_
file
.
mode
}
%span
.options
=
link_to
"raw"
,
project_blob_path
(
@project
,
@id
),
class:
"btn very_small"
,
target:
"_blank"
=
link_to
"history"
,
project_commits_path
(
@project
,
@id
),
class:
"btn very_small"
=
link_to
"blame"
,
project_blame_path
(
@project
,
@id
),
class:
"btn very_small"
-
if
file
.
text?
-
if
gitlab_markdown?
(
name
)
-
if
tree_
file
.
text?
-
if
gitlab_markdown?
(
tree_file
.
name
)
.file_content.wiki
=
preserve
do
=
markdown
(
file
.
data
)
-
elsif
markup?
(
name
)
=
markdown
(
tree_
file
.
data
)
-
elsif
markup?
(
tree_file
.
name
)
.file_content.wiki
=
raw
GitHub
::
Markup
.
render
(
name
,
file
.
data
)
=
raw
GitHub
::
Markup
.
render
(
tree_file
.
name
,
tree_
file
.
data
)
-
else
.file_content.code
-
unless
file
.
empty?
-
unless
tree_
file
.
empty?
%div
{
class:
current_user
.
dark_scheme
?
"black"
:
"white"
}
=
preserve
do
=
raw
file
.
colorize
(
options:
{
linenos:
'True'
})
=
raw
tree_
file
.
colorize
(
options:
{
linenos:
'True'
})
-
else
%h4
.nothing_here_message
Empty file
-
elsif
file
.
image?
-
elsif
tree_
file
.
image?
.file_content.image_file
%img
{
src:
"data:#{
file.mime_type};base64,#{Base64.encode64(
file.data)}"
}
%img
{
src:
"data:#{
tree_file.mime_type};base64,#{Base64.encode64(tree_
file.data)}"
}
-
else
.file_content.blob_file
...
...
@@ -37,4 +37,4 @@
%br
=
image_tag
"download.png"
,
width:
64
%h3
Download (
#{
file
.
mb_size
}
)
Download (
#{
tree_
file
.
mb_size
}
)
app/views/tree/_tree_item.html.haml
View file @
a9cce935
-
file
=
tree_full_path
(
content
)
%tr
{
class:
"tree-item #{tree_hex_class(content)}"
,
url:
project_tree_path
(
@project
,
tree_join
(
@id
,
file
))
}
%tr
{
class:
"tree-item #{tree_hex_class(tree_item)}"
}
%td
.tree-item-file-name
=
tree_icon
(
content
)
%strong
=
link_to
truncate
(
content
.
name
,
length:
40
),
project_tree_path
(
@project
,
tree_join
(
@id
||
@commit
.
id
,
file
)),
remote: :
true
=
tree_icon
(
type
)
%strong
=
link_to
truncate
(
tree_item
.
name
,
length:
40
),
project_tree_path
(
@project
,
tree_join
(
@id
||
@commit
.
id
,
tree_item
.
name
)),
remote:
true
%td
.tree_time_ago.cgray
-
if
index
==
1
%span
.log_loading
Loading commit data..
=
image_tag
"ajax_loader_tree.gif"
,
width:
14
%span
.log_loading.hide
Loading commit data...
=
image_tag
"ajax_loader_tree.gif"
,
width:
14
%td
.tree_commit
app/views/tree/show.html.haml
View file @
a9cce935
=
render
"head"
%div
#tree-holder
.tree-holder
=
render
"tree"
,
commit:
@commit
,
tree:
@tree
:javascript
$
(
function
()
{
Tree
.
init
();
});
=
render
"tree"
,
tree:
@tree
app/views/tree/show.js.haml
View file @
a9cce935
:plain
// Load Files list
$("#tree-holder").html("
#{
escape_javascript
(
render
(
partial:
"tree"
,
locals:
{
commit:
@commit
,
tree:
@tree
}))
}
");
$("#tree-holder").html("
#{
escape_javascript
(
render
(
partial:
"tree"
,
locals:
{
tree:
@tree
}))
}
");
$("#tree-content-holder").show("slide", { direction: "right" }, 150);
$('.project-refs-form #path').val("
#{
@path
}
");
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment