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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
a363585b
Commit
a363585b
authored
Aug 03, 2018
by
Dennis Tang
Committed by
Annabel Gray
Aug 03, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve "Pipeline job log page uses too much CPU for loading animation"
parent
3a5885c4
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
49 additions
and
20 deletions
+49
-20
app/assets/javascripts/ide/components/jobs/detail.vue
app/assets/javascripts/ide/components/jobs/detail.vue
+3
-0
app/assets/stylesheets/framework/mixins.scss
app/assets/stylesheets/framework/mixins.scss
+32
-5
app/assets/stylesheets/pages/builds.scss
app/assets/stylesheets/pages/builds.scss
+6
-15
app/views/shared/builds/_build_output.html.haml
app/views/shared/builds/_build_output.html.haml
+3
-0
changelogs/unreleased/49776-pipeline-job-log-page-uses-too-much-cpu-for-loading-animation.yml
...-job-log-page-uses-too-much-cpu-for-loading-animation.yml
+5
-0
No files found.
app/assets/javascripts/ide/components/jobs/detail.vue
View file @
a363585b
...
@@ -131,6 +131,9 @@ export default {
...
@@ -131,6 +131,9 @@ export default {
v-show=
"detailJob.isLoading"
v-show=
"detailJob.isLoading"
class=
"build-loader-animation"
class=
"build-loader-animation"
>
>
<div
class=
"dot"
></div>
<div
class=
"dot"
></div>
<div
class=
"dot"
></div>
</div>
</div>
</pre>
</pre>
</div>
</div>
...
...
app/assets/stylesheets/framework/mixins.scss
View file @
a363585b
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
border
:
0
;
border
:
0
;
border-color
:
$md-area-border
;
border-color
:
$md-area-border
;
@supports
(
width
:
fit-content
)
{
@supports
(
width
:
fit-content
)
{
display
:
block
;
display
:
block
;
width
:
fit-content
;
width
:
fit-content
;
}
}
...
@@ -116,7 +116,7 @@
...
@@ -116,7 +116,7 @@
/* http://phrappe.com/css/conditional-css-for-webkit-based-browsers/ */
/* http://phrappe.com/css/conditional-css-for-webkit-based-browsers/ */
@mixin
on-webkit-only
{
@mixin
on-webkit-only
{
@media
screen
and
(
-
webkit-min-device-pixel-ratio
:
0
)
{
@media
screen
and
(
-
webkit-min-device-pixel-ratio
:
0
)
{
@content
;
@content
;
}
}
}
}
...
@@ -164,14 +164,18 @@
...
@@ -164,14 +164,18 @@
bottom
:
12px
;
bottom
:
12px
;
width
:
43px
;
width
:
43px
;
height
:
30px
;
height
:
30px
;
transition-duration
:
.3s
;
transition-duration
:
0
.3s
;
-webkit-transform
:
translateZ
(
0
);
-webkit-transform
:
translateZ
(
0
);
background
:
linear-gradient
(
to
$gradient-direction
,
$gradient-color
45%
,
rgba
(
$gradient-color
,
0
.4
));
background
:
linear-gradient
(
to
$gradient-direction
,
$gradient-color
45%
,
rgba
(
$gradient-color
,
0
.4
)
);
&
.scrolling
{
&
.scrolling
{
visibility
:
visible
;
visibility
:
visible
;
opacity
:
1
;
opacity
:
1
;
transition-duration
:
.3s
;
transition-duration
:
0
.3s
;
}
}
.fa
{
.fa
{
...
@@ -233,6 +237,29 @@
...
@@ -233,6 +237,29 @@
max-width
:
100%
;
max-width
:
100%
;
}
}
@mixin
build-loader-animation
{
position
:
relative
;
white-space
:
initial
;
.dot
{
display
:
inline-block
;
width
:
6px
;
height
:
6px
;
margin
:
auto
auto
12px
;
border-radius
:
50%
;
animation
:
blinking-dot
1s
linear
infinite
;
background
:
$white-light
;
&
:nth-child
(
2
)
{
animation-delay
:
0
.33s
;
}
&
:nth-child
(
3
)
{
animation-delay
:
0
.66s
;
}
}
}
@mixin
borderless-status-icon
(
$color
)
{
@mixin
borderless-status-icon
(
$color
)
{
svg
{
svg
{
border
:
1px
solid
$color
;
border
:
1px
solid
$color
;
...
...
app/assets/stylesheets/pages/builds.scss
View file @
a363585b
...
@@ -9,25 +9,21 @@
...
@@ -9,25 +9,21 @@
}
}
}
}
@keyframes
blinking-dot
s
{
@keyframes
blinking-dot
{
0
%
{
0
%
{
background-color
:
rgba
(
$white-light
,
1
);
opacity
:
1
;
box-shadow
:
12px
0
0
0
rgba
(
$white-light
,
0
.2
)
,
24px
0
0
0
rgba
(
$white-light
,
0
.2
);
}
}
25
%
{
25
%
{
background-color
:
rgba
(
$white-light
,
0
.4
);
opacity
:
0
.4
;
box-shadow
:
12px
0
0
0
rgba
(
$white-light
,
2
)
,
24px
0
0
0
rgba
(
$white-light
,
0
.2
);
}
}
75
%
{
75
%
{
background-color
:
rgba
(
$white-light
,
0
.4
);
opacity
:
0
.4
;
box-shadow
:
12px
0
0
0
rgba
(
$white-light
,
0
.2
)
,
24px
0
0
0
rgba
(
$white-light
,
1
);
}
}
100
%
{
100
%
{
background-color
:
rgba
(
$white-light
,
1
);
opacity
:
1
;
box-shadow
:
12px
0
0
0
rgba
(
$white-light
,
0
.2
)
,
24px
0
0
0
rgba
(
$white-light
,
0
.2
);
}
}
}
}
...
@@ -182,12 +178,7 @@
...
@@ -182,12 +178,7 @@
}
}
.build-loader-animation
{
.build-loader-animation
{
position
:
relative
;
@include
build-loader-animation
;
width
:
6px
;
height
:
6px
;
margin
:
auto
auto
12px
2px
;
border-radius
:
50%
;
animation
:
blinking-dots
1s
linear
infinite
;
}
}
}
}
...
...
app/views/shared/builds/_build_output.html.haml
View file @
a363585b
%pre
.build-trace
#build-trace
%pre
.build-trace
#build-trace
%code
.bash.js-build-output
%code
.bash.js-build-output
.build-loader-animation.js-build-refresh
.build-loader-animation.js-build-refresh
.dot
.dot
.dot
changelogs/unreleased/49776-pipeline-job-log-page-uses-too-much-cpu-for-loading-animation.yml
0 → 100644
View file @
a363585b
---
title
:
refactor pipeline job log animation to reduce CPU usage
merge_request
:
20915
author
:
type
:
performance
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