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
53f34dd0
Commit
53f34dd0
authored
Nov 09, 2017
by
Filipa Lacerda
Committed by
Phil Hughes
Nov 09, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enables scroll to bottom once user has scrolled back to bottom in job log
parent
5c51c3e1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
26 deletions
+29
-26
app/assets/javascripts/job.js
app/assets/javascripts/job.js
+24
-26
changelogs/unreleased/39109-reenable-scroll-job.yml
changelogs/unreleased/39109-reenable-scroll-job.yml
+5
-0
No files found.
app/assets/javascripts/job.js
View file @
53f34dd0
...
...
@@ -14,8 +14,8 @@ export default class Job {
this
.
state
=
this
.
options
.
logState
;
this
.
buildStage
=
this
.
options
.
buildStage
;
this
.
$document
=
$
(
document
);
this
.
$window
=
$
(
window
);
this
.
logBytes
=
0
;
this
.
hasBeenScrolled
=
false
;
this
.
updateDropdown
=
this
.
updateDropdown
.
bind
(
this
);
this
.
$buildTrace
=
$
(
'
#build-trace
'
);
...
...
@@ -54,23 +54,18 @@ export default class Job {
this
.
scrollThrottled
=
_
.
throttle
(
this
.
toggleScroll
.
bind
(
this
),
100
);
$
(
window
)
this
.
$window
.
off
(
'
scroll
'
)
.
on
(
'
scroll
'
,
()
=>
{
const
contentHeight
=
this
.
$buildTraceOutput
.
height
();
if
(
contentHeight
>
this
.
windowSize
)
{
// means the user did not scroll, the content was updated.
this
.
windowSize
=
contentHeight
;
}
else
{
// User scrolled
this
.
hasBeenScrolled
=
true
;
if
(
!
this
.
isScrolledToBottom
())
{
this
.
toggleScrollAnimation
(
false
);
}
else
if
(
this
.
isScrolledToBottom
()
&&
!
this
.
isLogComplete
)
{
this
.
toggleScrollAnimation
(
true
);
}
this
.
scrollThrottled
();
});
$
(
window
)
this
.
$window
.
off
(
'
resize.build
'
)
.
on
(
'
resize.build
'
,
_
.
throttle
(
this
.
sidebarOnResize
.
bind
(
this
),
100
));
...
...
@@ -99,14 +94,14 @@ export default class Job {
// eslint-disable-next-line class-methods-use-this
canScroll
()
{
return
$
(
document
).
height
()
>
$
(
window
)
.
height
();
return
this
.
$document
.
height
()
>
this
.
$window
.
height
();
}
toggleScroll
()
{
const
currentPosition
=
$
(
document
)
.
scrollTop
();
const
scrollHeight
=
$
(
document
)
.
height
();
const
currentPosition
=
this
.
$document
.
scrollTop
();
const
scrollHeight
=
this
.
$document
.
height
();
const
windowHeight
=
$
(
window
)
.
height
();
const
windowHeight
=
this
.
$window
.
height
();
if
(
this
.
canScroll
())
{
if
(
currentPosition
>
0
&&
(
scrollHeight
-
currentPosition
!==
windowHeight
))
{
...
...
@@ -119,7 +114,7 @@ export default class Job {
this
.
toggleDisableButton
(
this
.
$scrollTopBtn
,
true
);
this
.
toggleDisableButton
(
this
.
$scrollBottomBtn
,
false
);
}
else
if
(
scrollHeight
-
currentPosition
===
windowHeight
)
{
}
else
if
(
this
.
isScrolledToBottom
()
)
{
// User is at the bottom of the build log.
this
.
toggleDisableButton
(
this
.
$scrollTopBtn
,
false
);
...
...
@@ -131,9 +126,17 @@ export default class Job {
}
}
isScrolledToBottom
()
{
const
currentPosition
=
this
.
$document
.
scrollTop
();
const
scrollHeight
=
this
.
$document
.
height
();
const
windowHeight
=
this
.
$window
.
height
();
return
scrollHeight
-
currentPosition
===
windowHeight
;
}
// eslint-disable-next-line class-methods-use-this
scrollDown
()
{
$
(
document
).
scrollTop
(
$
(
document
)
.
height
());
this
.
$document
.
scrollTop
(
this
.
$document
.
height
());
}
scrollToBottom
()
{
...
...
@@ -143,7 +146,7 @@ export default class Job {
}
scrollToTop
()
{
$
(
document
)
.
scrollTop
(
0
);
this
.
$document
.
scrollTop
(
0
);
this
.
hasBeenScrolled
=
true
;
this
.
toggleScroll
();
}
...
...
@@ -174,7 +177,7 @@ export default class Job {
this
.
state
=
log
.
state
;
}
this
.
windowSize
=
this
.
$buildTraceOutput
.
height
();
this
.
isScrollInBottom
=
this
.
isScrolledToBottom
();
if
(
log
.
append
)
{
this
.
$buildTraceOutput
.
append
(
log
.
html
);
...
...
@@ -194,14 +197,9 @@ export default class Job {
}
else
{
this
.
$truncatedInfo
.
addClass
(
'
hidden
'
);
}
this
.
isLogComplete
=
log
.
complete
;
if
(
!
log
.
complete
)
{
if
(
!
this
.
hasBeenScrolled
)
{
this
.
toggleScrollAnimation
(
true
);
}
else
{
this
.
toggleScrollAnimation
(
false
);
}
this
.
timeout
=
setTimeout
(()
=>
{
this
.
getBuildTrace
();
},
4000
);
...
...
@@ -218,7 +216,7 @@ export default class Job {
this
.
$buildRefreshAnimation
.
remove
();
})
.
then
(()
=>
{
if
(
!
this
.
hasBeenScrolled
)
{
if
(
this
.
isScrollInBottom
)
{
this
.
scrollDown
();
}
})
...
...
changelogs/unreleased/39109-reenable-scroll-job.yml
0 → 100644
View file @
53f34dd0
---
title
:
Enables scroll to bottom once user has scrolled back to bottom in job log
merge_request
:
author
:
type
:
fixed
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