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
Léo-Paul Géneau
gitlab-ce
Commits
18326c20
Commit
18326c20
authored
Jul 06, 2017
by
Rémy Coutable
Committed by
Clement Ho
Jul 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve & fix the performance bar UI and behavior
parent
46ccda86
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
171 additions
and
52 deletions
+171
-52
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+5
-0
app/assets/javascripts/peek.js
app/assets/javascripts/peek.js
+0
-16
app/assets/javascripts/performance_bar.js
app/assets/javascripts/performance_bar.js
+62
-0
app/assets/stylesheets/framework/modal.scss
app/assets/stylesheets/framework/modal.scss
+6
-0
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+12
-0
app/assets/stylesheets/performance_bar.scss
app/assets/stylesheets/performance_bar.scss
+27
-18
app/helpers/nav_helper.rb
app/helpers/nav_helper.rb
+0
-1
app/helpers/performance_bar_helper.rb
app/helpers/performance_bar_helper.rb
+7
-0
app/views/help/_shortcuts.html.haml
app/views/help/_shortcuts.html.haml
+5
-4
app/views/layouts/_head.html.haml
app/views/layouts/_head.html.haml
+2
-2
app/views/layouts/application.html.haml
app/views/layouts/application.html.haml
+2
-1
app/views/peek/views/_rblineprof.html.haml
app/views/peek/views/_rblineprof.html.haml
+7
-0
app/views/peek/views/_sql.html.haml
app/views/peek/views/_sql.html.haml
+4
-4
config/application.rb
config/application.rb
+1
-1
config/webpack.config.js
config/webpack.config.js
+1
-1
lib/gitlab/performance_bar.rb
lib/gitlab/performance_bar.rb
+1
-1
lib/peek/rblineprof/custom_controller_helpers.rb
lib/peek/rblineprof/custom_controller_helpers.rb
+29
-3
No files found.
app/assets/javascripts/dispatcher.js
View file @
18326c20
...
...
@@ -57,6 +57,7 @@ import ShortcutsBlob from './shortcuts_blob';
import
initSettingsPanels
from
'
./settings_panels
'
;
import
initExperimentalFlags
from
'
./experimental_flags
'
;
import
OAuthRememberMe
from
'
./oauth_remember_me
'
;
import
PerformanceBar
from
'
./performance_bar
'
;
(
function
()
{
var
Dispatcher
;
...
...
@@ -515,6 +516,10 @@ import OAuthRememberMe from './oauth_remember_me';
if
(
!
shortcut_handler
)
{
new
Shortcuts
();
}
if
(
document
.
querySelector
(
'
#peek
'
))
{
new
PerformanceBar
({
container
:
'
#peek
'
});
}
};
Dispatcher
.
prototype
.
initSearch
=
function
()
{
...
...
app/assets/javascripts/peek.js
deleted
100644 → 0
View file @
46ccda86
import
'
vendor/peek
'
;
import
'
vendor/peek.performance_bar
'
;
$
(
document
).
on
(
'
click
'
,
'
#peek-show-queries
'
,
(
e
)
=>
{
e
.
preventDefault
();
$
(
'
.peek-rblineprof-modal
'
).
hide
();
const
$modal
=
$
(
'
#modal-peek-pg-queries
'
);
if
(
$modal
.
length
)
{
$modal
.
modal
(
'
toggle
'
);
}
});
$
(
document
).
on
(
'
click
'
,
'
.js-lineprof-file
'
,
(
e
)
=>
{
e
.
preventDefault
();
$
(
e
.
target
).
parents
(
'
.peek-rblineprof-file
'
).
find
(
'
.data
'
).
toggle
();
});
app/assets/javascripts/performance_bar.js
0 → 100644
View file @
18326c20
import
'
vendor/peek
'
;
import
'
vendor/peek.performance_bar
'
;
export
default
class
PerformanceBar
{
constructor
(
opts
)
{
if
(
!
PerformanceBar
.
singleton
)
{
this
.
init
(
opts
);
PerformanceBar
.
singleton
=
this
;
}
return
PerformanceBar
.
singleton
;
}
init
(
opts
)
{
const
$container
=
$
(
opts
.
container
);
this
.
$sqlProfileLink
=
$container
.
find
(
'
.js-toggle-modal-peek-sql
'
);
this
.
$sqlProfileModal
=
$container
.
find
(
'
#modal-peek-pg-queries
'
);
this
.
$lineProfileLink
=
$container
.
find
(
'
.js-toggle-modal-peek-line-profile
'
);
this
.
$lineProfileModal
=
$
(
'
#modal-peek-line-profile
'
);
this
.
initEventListeners
();
this
.
showModalOnLoad
();
}
initEventListeners
()
{
this
.
$sqlProfileLink
.
on
(
'
click
'
,
()
=>
this
.
handleSQLProfileLink
());
this
.
$lineProfileLink
.
on
(
'
click
'
,
e
=>
this
.
handleLineProfileLink
(
e
));
$
(
document
).
on
(
'
click
'
,
'
.js-lineprof-file
'
,
PerformanceBar
.
toggleLineProfileFile
);
}
showModalOnLoad
()
{
// When a lineprofiler query-string param is present, we show the line
// profiler modal upon page load
if
(
/lineprofiler/
.
test
(
window
.
location
.
search
))
{
PerformanceBar
.
toggleModal
(
this
.
$lineProfileModal
);
}
}
handleSQLProfileLink
()
{
PerformanceBar
.
toggleModal
(
this
.
$sqlProfileModal
);
}
handleLineProfileLink
(
e
)
{
const
lineProfilerParameter
=
gl
.
utils
.
getParameterValues
(
'
lineprofiler
'
);
const
lineProfilerParameterRegex
=
new
RegExp
(
`lineprofiler=
${
lineProfilerParameter
[
0
]}
`
);
const
shouldToggleModal
=
lineProfilerParameter
.
length
>
0
&&
lineProfilerParameterRegex
.
test
(
e
.
currentTarget
.
href
);
if
(
shouldToggleModal
)
{
e
.
preventDefault
();
PerformanceBar
.
toggleModal
(
this
.
$lineProfileModal
);
}
}
static
toggleModal
(
$modal
)
{
if
(
$modal
.
length
)
{
$modal
.
modal
(
'
toggle
'
);
}
}
static
toggleLineProfileFile
(
e
)
{
$
(
e
.
currentTarget
).
parents
(
'
.peek-rblineprof-file
'
).
find
(
'
.data
'
).
toggle
();
}
}
app/assets/stylesheets/framework/modal.scss
View file @
18326c20
...
...
@@ -21,3 +21,9 @@ body.modal-open {
width
:
860px
;
}
}
@media
(
min-width
:
$screen-lg-min
)
{
.modal-full
{
width
:
98%
;
}
}
app/assets/stylesheets/framework/variables.scss
View file @
18326c20
...
...
@@ -594,3 +594,15 @@ Convdev Index
$color-high-score
:
$green-400
;
$color-average-score
:
$orange-400
;
$color-low-score
:
$red-400
;
/*
Performance Bar
*/
$perf-bar-text
:
#999
;
$perf-bar-production
:
#222
;
$perf-bar-staging
:
#291430
;
$perf-bar-development
:
#4c1210
;
$perf-bar-bucket-bg
:
#111
;
$perf-bar-bucket-color
:
#ccc
;
$perf-bar-bucket-box-shadow-from
:
rgba
(
$white-light
,
.2
);
$perf-bar-bucket-box-shadow-to
:
rgba
(
$black
,
.25
);
vendor/assets/stylesheets/peek
.scss
→
app/assets/stylesheets/performance_bar
.scss
View file @
18326c20
//= require peek/views/performance_bar
//= require peek/views/rblineprof
header
.navbar-gitlab.with-peek
{
top
:
35px
;
}
@import
"framework/variables"
;
@import
"peek/views/performance_bar"
;
@import
"peek/views/rblineprof"
;
#peek
{
height
:
35px
;
background
:
#000
;
background
:
$black
;
line-height
:
35px
;
color
:
#999
;
color
:
$perf-bar-text
;
&
.disabled
{
display
:
none
;
}
&
.production
{
background-color
:
#222
;
background-color
:
$perf-bar-production
;
}
&
.staging
{
background-color
:
#291430
;
background-color
:
$perf-bar-staging
;
}
&
.development
{
background-color
:
#4c1210
;
background-color
:
$perf-bar-development
;
}
.wrapper
{
width
:
8
00px
;
width
:
10
00px
;
margin
:
0
auto
;
}
// UI Elements
.bucket
{
background
:
#111
;
background
:
$perf-bar-bucket-bg
;
display
:
inline-block
;
padding
:
4px
6px
;
font-family
:
Consolas
,
"Liberation Mono"
,
Courier
,
monospace
;
line-height
:
1
;
color
:
#ccc
;
color
:
$perf-bar-bucket-color
;
border-radius
:
3px
;
box-shadow
:
0
1px
0
rgba
(
255
,
255
,
255
,.
2
)
,
inset
0
1px
2px
rgba
(
0
,
0
,
0
,.
25
)
;
box-shadow
:
0
1px
0
$perf-bar-bucket-box-shadow-from
,
inset
0
1px
2px
$perf-bar-bucket-box-shadow-to
;
.hidden
{
display
:
none
;
...
...
@@ -53,12 +50,14 @@ header.navbar-gitlab.with-peek {
}
strong
{
color
:
#fff
;
color
:
$white-light
;
}
table
{
color
:
$black
;
strong
{
color
:
#000
;
color
:
$black
;
}
}
...
...
@@ -90,5 +89,15 @@ header.navbar-gitlab.with-peek {
}
#modal-peek-pg-queries-content
{
color
:
#000
;
color
:
$black
;
}
.peek-rblineprof-file
{
pre
.duration
{
width
:
280px
;
}
.data
{
overflow
:
visible
;
}
}
app/helpers/nav_helper.rb
View file @
18326c20
...
...
@@ -23,7 +23,6 @@ module NavHelper
def
nav_header_class
class_name
=
''
class_name
<<
" with-horizontal-nav"
if
defined?
(
nav
)
&&
nav
class_name
<<
" with-peek"
if
peek_enabled?
class_name
end
...
...
app/helpers/performance_bar_helper.rb
0 → 100644
View file @
18326c20
module
PerformanceBarHelper
# This is a hack since using `alias_method :performance_bar_enabled?, :peek_enabled?`
# in WithPerformanceBar breaks tests (but works in the browser).
def
performance_bar_enabled?
peek_enabled?
end
end
app/views/help/_shortcuts.html.haml
View file @
18326c20
...
...
@@ -27,10 +27,11 @@
%td
.shortcut
.key
f
%td
Focus Filter
%tr
%td
.shortcut
.key
p b
%td
Show/hide the Performance Bar
-
if
performance_bar_enabled?
%tr
%td
.shortcut
.key
p b
%td
Show/hide the Performance Bar
%tr
%td
.shortcut
.key
?
...
...
app/views/layouts/_head.html.haml
View file @
18326c20
...
...
@@ -30,7 +30,7 @@
=
stylesheet_link_tag
"application"
,
media:
"all"
=
stylesheet_link_tag
"print"
,
media:
"print"
=
stylesheet_link_tag
"test"
,
media:
"all"
if
Rails
.
env
.
test?
=
stylesheet_link_tag
'pe
ek'
if
peek
_enabled?
=
stylesheet_link_tag
'pe
rformance_bar'
if
performance_bar
_enabled?
-
if
show_new_nav?
=
stylesheet_link_tag
"new_nav"
,
media:
"all"
...
...
@@ -44,7 +44,7 @@
=
webpack_bundle_tag
"main"
=
webpack_bundle_tag
"raven"
if
current_application_settings
.
clientside_sentry_enabled
=
webpack_bundle_tag
"test"
if
Rails
.
env
.
test?
=
webpack_bundle_tag
'pe
ek'
if
peek
_enabled?
=
webpack_bundle_tag
'pe
rformance_bar'
if
performance_bar
_enabled?
-
if
content_for?
(
:page_specific_javascripts
)
=
yield
:page_specific_javascripts
...
...
app/views/layouts/application.html.haml
View file @
18326c20
...
...
@@ -3,7 +3,6 @@
=
render
"layouts/head"
%body
{
class:
@body_class
,
data:
{
page:
body_data_page
,
project:
"#{@project.path if @project}"
,
group:
"#{@group.path if @group}"
}
}
=
render
"layouts/init_auto_complete"
if
@gfm_form
=
render
'peek/bar'
-
if
show_new_nav?
=
render
"layouts/header/new"
-
else
...
...
@@ -11,3 +10,5 @@
=
render
'layouts/page'
,
sidebar:
sidebar
,
nav:
nav
=
yield
:scripts_body
=
render
'peek/bar'
app/views/peek/views/_rblineprof.html.haml
0 → 100644
View file @
18326c20
Profile:
=
link_to
'all'
,
url_for
(
lineprofiler:
'true'
),
class:
'js-toggle-modal-peek-line-profile'
\/
=
link_to
'app & lib'
,
url_for
(
lineprofiler:
'app'
),
class:
'js-toggle-modal-peek-line-profile'
\/
=
link_to
'views'
,
url_for
(
lineprofiler:
'views'
),
class:
'js-toggle-modal-peek-line-profile'
app/views/peek/views/_sql.html.haml
View file @
18326c20
%strong
%a
#peek-show-queries
{
href:
'#'
}
%a
.js-toggle-modal-peek-sql
%span
{
data:
{
defer_to:
"#{view.defer_key}-duration"
}
}
...
\/
%span
{
data:
{
defer_to:
"#{view.defer_key}-calls"
}
}
...
#modal-peek-pg-queries
.modal
{
tabindex:
-
1
}
.modal-dialog
#modal-peek-pg-queries-content
.modal-content
.modal-dialog
.modal-full
.modal-content
.modal-header
%
a
.close
{
href:
"#"
,
"data-dismiss"
=>
"modal"
}
×
%
button
.close.btn.btn-link.btn-sm
{
type:
'button'
,
data:
{
dismiss:
'modal'
}
}
X
%h4
SQL queries
.modal-body
{
data:
{
defer_to:
"#{view.defer_key}-queries"
}
}
...
config/application.rb
View file @
18326c20
...
...
@@ -105,7 +105,7 @@ module Gitlab
config
.
assets
.
precompile
<<
"katex.css"
config
.
assets
.
precompile
<<
"katex.js"
config
.
assets
.
precompile
<<
"xterm/xterm.css"
config
.
assets
.
precompile
<<
"pe
ek
.css"
config
.
assets
.
precompile
<<
"pe
rformance_bar
.css"
config
.
assets
.
precompile
<<
"lib/ace.js"
config
.
assets
.
precompile
<<
"vendor/assets/fonts/*"
config
.
assets
.
precompile
<<
"test.css"
...
...
config/webpack.config.js
View file @
18326c20
...
...
@@ -70,7 +70,7 @@ var config = {
raven
:
'
./raven/index.js
'
,
vue_merge_request_widget
:
'
./vue_merge_request_widget/index.js
'
,
test
:
'
./test.js
'
,
pe
ek
:
'
./peek
.js
'
,
pe
rformance_bar
:
'
./performance_bar
.js
'
,
webpack_runtime
:
'
./webpack.js
'
,
},
...
...
lib/gitlab/performance_bar.rb
View file @
18326c20
module
Gitlab
module
PerformanceBar
def
self
.
enabled?
Feature
.
enabled?
(
'gitlab_performance_bar'
)
Rails
.
env
.
development?
||
Feature
.
enabled?
(
'gitlab_performance_bar'
)
end
end
end
lib/peek/rblineprof/custom_controller_helpers.rb
View file @
18326c20
...
...
@@ -41,9 +41,14 @@ module Peek
]
end
.
sort_by
{
|
a
,
b
,
c
,
d
,
e
,
f
|
-
f
}
output
=
''
per_file
.
each
do
|
file_name
,
lines
,
file_wall
,
file_cpu
,
file_idle
,
file_sort
|
output
=
"<div class='modal-dialog modal-full'><div class='modal-content'>"
output
<<
"<div class='modal-header'>"
output
<<
"<button class='close btn btn-link btn-sm' type='button' data-dismiss='modal'>X</button>"
output
<<
"<h4>Line profiling:
#{
human_description
(
params
[
:lineprofiler
])
}
</h4>"
output
<<
"</div>"
output
<<
"<div class='modal-body'>"
per_file
.
each
do
|
file_name
,
lines
,
file_wall
,
file_cpu
,
file_idle
,
file_sort
|
output
<<
"<div class='peek-rblineprof-file'><div class='heading'>"
show_src
=
file_sort
>
min
...
...
@@ -86,11 +91,32 @@ module Peek
output
<<
"</div></div>"
# .data then .peek-rblineprof-file
end
response
.
body
+=
"<div class='peek-rblineprof-modal' id='line-profile'>
#{
output
}
</div>"
.
html_safe
output
<<
"</div></div></div>"
response
.
body
+=
"<div class='modal' id='modal-peek-line-profile' tabindex=-1>
#{
output
}
</div>"
.
html_safe
end
ret
end
private
def
human_description
(
lineprofiler_param
)
case
lineprofiler_param
when
'app'
'app/ & lib/'
when
'views'
'app/view/'
when
'gems'
'vendor/gems'
when
'all'
'everything in Rails.root'
when
'stdlib'
'everything in the Ruby standard library'
else
'app/, config/, lib/, vendor/ & plugin/'
end
end
end
end
end
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