BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
b187a3f2
Commit
b187a3f2
authored
Sep 26, 2017
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'changes-bar-dynamic-placeholder' into 'master'
Dynamically create offset for sticky bar See merge request gitlab-org/gitlab-ce!14280
parents
178ae69b
1544bc32
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
83 additions
and
40 deletions
+83
-40
sticky.js
app/assets/javascripts/lib/utils/sticky.js
+25
-5
diff.scss
app/assets/stylesheets/pages/diff.scss
+1
-11
test.scss
app/assets/stylesheets/test.scss
+6
-0
sticky_spec.js
spec/javascripts/lib/utils/sticky_spec.js
+51
-24
No files found.
app/assets/javascripts/lib/utils/sticky.js
View file @
b187a3f2
export
const
isSticky
=
(
el
,
scrollY
,
stickyTop
)
=>
{
export
const
createPlaceholder
=
()
=>
{
const
placeholder
=
document
.
createElement
(
'div'
);
placeholder
.
classList
.
add
(
'sticky-placeholder'
);
return
placeholder
;
};
export
const
isSticky
=
(
el
,
scrollY
,
stickyTop
,
insertPlaceholder
)
=>
{
const
top
=
Math
.
floor
(
el
.
offsetTop
-
scrollY
);
if
(
top
<=
stickyTop
)
{
if
(
top
<=
stickyTop
&&
!
el
.
classList
.
contains
(
'is-stuck'
))
{
const
placeholder
=
insertPlaceholder
?
createPlaceholder
()
:
null
;
const
heightBefore
=
el
.
offsetHeight
;
el
.
classList
.
add
(
'is-stuck'
);
}
else
{
if
(
insertPlaceholder
)
{
el
.
parentNode
.
insertBefore
(
placeholder
,
el
.
nextElementSibling
);
placeholder
.
style
.
height
=
`
${
heightBefore
-
el
.
offsetHeight
}
px`
;
}
}
else
if
(
top
>
stickyTop
&&
el
.
classList
.
contains
(
'is-stuck'
))
{
el
.
classList
.
remove
(
'is-stuck'
);
if
(
insertPlaceholder
&&
el
.
nextElementSibling
&&
el
.
nextElementSibling
.
classList
.
contains
(
'sticky-placeholder'
))
{
el
.
nextElementSibling
.
remove
();
}
}
};
export
default
(
el
)
=>
{
export
default
(
el
,
insertPlaceholder
=
true
)
=>
{
if
(
!
el
)
return
;
const
computedStyle
=
window
.
getComputedStyle
(
el
);
...
...
@@ -17,7 +37,7 @@ export default (el) => {
const
stickyTop
=
parseInt
(
computedStyle
.
top
,
10
);
document
.
addEventListener
(
'scroll'
,
()
=>
isSticky
(
el
,
window
.
scrollY
,
stickyTop
),
{
document
.
addEventListener
(
'scroll'
,
()
=>
isSticky
(
el
,
window
.
scrollY
,
stickyTop
,
insertPlaceholder
),
{
passive
:
true
,
});
};
app/assets/stylesheets/pages/diff.scss
View file @
b187a3f2
...
...
@@ -451,7 +451,7 @@
}
.files
{
margin-top
:
-
1px
;
margin-top
:
1px
;
.diff-file
:last-child
{
margin-bottom
:
0
;
...
...
@@ -586,11 +586,6 @@
top
:
76px
;
}
+
.files
,
+
.alert
{
margin-top
:
1px
;
}
&
:not
(
.is-stuck
)
.diff-stats-additions-deletions-collapsed
{
display
:
none
;
}
...
...
@@ -605,11 +600,6 @@
.inline-parallel-buttons
{
display
:
none
;
}
+
.files
,
+
.alert
{
margin-top
:
32px
;
}
}
}
}
...
...
app/assets/stylesheets/test.scss
View file @
b187a3f2
...
...
@@ -15,3 +15,9 @@
-ms-animation
:
none
!
important
;
animation
:
none
!
important
;
}
// Disable sticky changes bar for tests
.diff-files-changed
{
position
:
relative
!
important
;
top
:
0
!
important
;
}
spec/javascripts/lib/utils/sticky_spec.js
View file @
b187a3f2
import
{
isSticky
}
from
'~/lib/utils/sticky'
;
describe
(
'sticky'
,
()
=>
{
const
el
=
{
offsetTop
:
0
,
classList
:
{},
};
let
el
;
beforeEach
(()
=>
{
el
.
offsetTop
=
0
;
el
.
classList
.
add
=
jasmine
.
createSpy
(
'spy'
);
el
.
classList
.
remove
=
jasmine
.
createSpy
(
'spy'
);
document
.
body
.
innerHTML
+=
`
<div class="parent">
<div id="js-sticky"></div>
</div>
`
;
el
=
document
.
getElementById
(
'js-sticky'
);
});
describe
(
'classList.remove'
,
()
=>
{
it
(
'does not call classList.remove when stuck'
,
()
=>
{
isSticky
(
el
,
0
,
0
);
afterEach
(()
=>
{
el
.
parentNode
.
remove
();
});
describe
(
'when stuck'
,
()
=>
{
it
(
'does not remove is-stuck class'
,
()
=>
{
isSticky
(
el
,
0
,
el
.
offsetTop
);
isSticky
(
el
,
0
,
el
.
offsetTop
);
expect
(
el
.
classList
.
remove
,
).
not
.
toHaveBeenCalled
();
el
.
classList
.
contains
(
'is-stuck'
)
,
).
toBeTruthy
();
});
it
(
'calls classList.remove when not stuck'
,
()
=>
{
el
.
offsetTop
=
10
;
isSticky
(
el
,
0
,
0
);
it
(
'adds is-stuck class'
,
()
=>
{
isSticky
(
el
,
0
,
el
.
offsetTop
);
expect
(
el
.
classList
.
remove
,
).
toHaveBeenCalledWith
(
'is-stuck'
);
el
.
classList
.
contains
(
'is-stuck'
),
).
toBeTruthy
();
});
it
(
'inserts placeholder element'
,
()
=>
{
isSticky
(
el
,
0
,
el
.
offsetTop
,
true
);
expect
(
document
.
querySelector
(
'.sticky-placeholder'
),
).
not
.
toBeNull
();
});
});
describe
(
'classList.add'
,
()
=>
{
it
(
'calls classList.add when stuck'
,
()
=>
{
describe
(
'when not stuck'
,
()
=>
{
it
(
'removes is-stuck class'
,
()
=>
{
spyOn
(
el
.
classList
,
'remove'
).
and
.
callThrough
();
isSticky
(
el
,
0
,
el
.
offsetTop
);
isSticky
(
el
,
0
,
0
);
expect
(
el
.
classList
.
add
,
el
.
classList
.
remove
,
).
toHaveBeenCalledWith
(
'is-stuck'
);
expect
(
el
.
classList
.
contains
(
'is-stuck'
),
).
toBeFalsy
();
});
it
(
'does not call classList.add when not stuck'
,
()
=>
{
el
.
offsetTop
=
10
;
it
(
'does not add is-stuck class'
,
()
=>
{
isSticky
(
el
,
0
,
0
);
expect
(
el
.
classList
.
add
,
).
not
.
toHaveBeenCalled
();
el
.
classList
.
contains
(
'is-stuck'
),
).
toBeFalsy
();
});
it
(
'removes placeholder'
,
()
=>
{
isSticky
(
el
,
0
,
el
.
offsetTop
,
true
);
isSticky
(
el
,
0
,
0
,
true
);
expect
(
document
.
querySelector
(
'.sticky-placeholder'
),
).
toBeNull
();
});
});
});
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