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
6a1b84c7
Commit
6a1b84c7
authored
Sep 06, 2017
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use modules in common utils
parent
5d952f75
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
779 additions
and
769 deletions
+779
-769
app/assets/javascripts/awards_handler.js
app/assets/javascripts/awards_handler.js
+5
-4
app/assets/javascripts/behaviors/quick_submit.js
app/assets/javascripts/behaviors/quick_submit.js
+2
-1
app/assets/javascripts/confirm_danger_modal.js
app/assets/javascripts/confirm_danger_modal.js
+2
-1
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+3
-2
app/assets/javascripts/lib/utils/common_utils.js
app/assets/javascripts/lib/utils/common_utils.js
+432
-431
app/assets/javascripts/merge_request_tabs.js
app/assets/javascripts/merge_request_tabs.js
+2
-1
app/assets/javascripts/monitoring/components/dashboard.vue
app/assets/javascripts/monitoring/components/dashboard.vue
+2
-1
app/assets/javascripts/notes.js
app/assets/javascripts/notes.js
+8
-7
app/assets/javascripts/notes/stores/actions.js
app/assets/javascripts/notes/stores/actions.js
+3
-2
app/assets/javascripts/profile/profile.js
app/assets/javascripts/profile/profile.js
+2
-1
app/assets/javascripts/prometheus_metrics/prometheus_metrics.js
...sets/javascripts/prometheus_metrics/prometheus_metrics.js
+2
-1
app/assets/javascripts/search_autocomplete.js
app/assets/javascripts/search_autocomplete.js
+7
-6
app/assets/javascripts/vue_merge_request_widget/components/mr_widget_memory_usage.js
...merge_request_widget/components/mr_widget_memory_usage.js
+2
-2
spec/javascripts/lib/utils/common_utils_spec.js
spec/javascripts/lib/utils/common_utils_spec.js
+307
-309
No files found.
app/assets/javascripts/awards_handler.js
View file @
6a1b84c7
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
/* global Flash */
/* global Flash */
import
_
from
'
underscore
'
;
import
_
from
'
underscore
'
;
import
Cookies
from
'
js-cookie
'
;
import
Cookies
from
'
js-cookie
'
;
import
{
isInIssuePage
,
updateTooltipTitle
}
from
'
./lib/utils/common_utils
'
;
const
animationEndEventString
=
'
animationend webkitAnimationEnd MSAnimationEnd oAnimationEnd
'
;
const
animationEndEventString
=
'
animationend webkitAnimationEnd MSAnimationEnd oAnimationEnd
'
;
const
transitionEndEventString
=
'
transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd
'
;
const
transitionEndEventString
=
'
transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd
'
;
...
@@ -237,7 +238,7 @@ class AwardsHandler {
...
@@ -237,7 +238,7 @@ class AwardsHandler {
addAward
(
votesBlock
,
awardUrl
,
emoji
,
checkMutuality
,
callback
)
{
addAward
(
votesBlock
,
awardUrl
,
emoji
,
checkMutuality
,
callback
)
{
const
isMainAwardsBlock
=
votesBlock
.
closest
(
'
.js-issue-note-awards
'
).
length
;
const
isMainAwardsBlock
=
votesBlock
.
closest
(
'
.js-issue-note-awards
'
).
length
;
if
(
gl
.
utils
.
isInIssuePage
()
&&
!
isMainAwardsBlock
)
{
if
(
isInIssuePage
()
&&
!
isMainAwardsBlock
)
{
const
id
=
votesBlock
.
attr
(
'
id
'
).
replace
(
'
note_
'
,
''
);
const
id
=
votesBlock
.
attr
(
'
id
'
).
replace
(
'
note_
'
,
''
);
$
(
'
.emoji-menu
'
).
removeClass
(
'
is-visible
'
);
$
(
'
.emoji-menu
'
).
removeClass
(
'
is-visible
'
);
...
@@ -288,7 +289,7 @@ class AwardsHandler {
...
@@ -288,7 +289,7 @@ class AwardsHandler {
}
}
getVotesBlock
()
{
getVotesBlock
()
{
if
(
gl
.
utils
.
isInIssuePage
())
{
if
(
isInIssuePage
())
{
const
$el
=
$
(
'
.js-add-award.is-active
'
).
closest
(
'
.note.timeline-entry
'
);
const
$el
=
$
(
'
.js-add-award.is-active
'
).
closest
(
'
.note.timeline-entry
'
);
if
(
$el
.
length
)
{
if
(
$el
.
length
)
{
...
@@ -452,11 +453,11 @@ class AwardsHandler {
...
@@ -452,11 +453,11 @@ class AwardsHandler {
userAuthored
(
$emojiButton
)
{
userAuthored
(
$emojiButton
)
{
const
oldTitle
=
this
.
getAwardTooltip
(
$emojiButton
);
const
oldTitle
=
this
.
getAwardTooltip
(
$emojiButton
);
const
newTitle
=
'
You cannot vote on your own issue, MR and note
'
;
const
newTitle
=
'
You cannot vote on your own issue, MR and note
'
;
gl
.
utils
.
updateTooltipTitle
(
$emojiButton
,
newTitle
).
tooltip
(
'
show
'
);
updateTooltipTitle
(
$emojiButton
,
newTitle
).
tooltip
(
'
show
'
);
// Restore tooltip back to award list
// Restore tooltip back to award list
return
setTimeout
(()
=>
{
return
setTimeout
(()
=>
{
$emojiButton
.
tooltip
(
'
hide
'
);
$emojiButton
.
tooltip
(
'
hide
'
);
gl
.
utils
.
updateTooltipTitle
(
$emojiButton
,
oldTitle
);
updateTooltipTitle
(
$emojiButton
,
oldTitle
);
},
2800
);
},
2800
);
}
}
...
...
app/assets/javascripts/behaviors/quick_submit.js
View file @
6a1b84c7
import
'
../commons/bootstrap
'
;
import
'
../commons/bootstrap
'
;
import
{
isInIssuePage
}
from
'
../lib/utils/common_utils
'
;
// Quick Submit behavior
// Quick Submit behavior
//
//
...
@@ -45,7 +46,7 @@ $(document).on('keydown.quick_submit', '.js-quick-submit', (e) => {
...
@@ -45,7 +46,7 @@ $(document).on('keydown.quick_submit', '.js-quick-submit', (e) => {
if
(
!
$submitButton
.
attr
(
'
disabled
'
))
{
if
(
!
$submitButton
.
attr
(
'
disabled
'
))
{
$submitButton
.
trigger
(
'
click
'
,
[
e
]);
$submitButton
.
trigger
(
'
click
'
,
[
e
]);
if
(
!
gl
.
utils
.
isInIssuePage
())
{
if
(
!
isInIssuePage
())
{
$submitButton
.
disable
();
$submitButton
.
disable
();
}
}
}
}
...
...
app/assets/javascripts/confirm_danger_modal.js
View file @
6a1b84c7
/* eslint-disable func-names, space-before-function-paren, wrap-iife, one-var, no-var, camelcase, one-var-declaration-per-line, no-else-return, max-len */
/* eslint-disable func-names, space-before-function-paren, wrap-iife, one-var, no-var, camelcase, one-var-declaration-per-line, no-else-return, max-len */
import
{
rstrip
}
from
'
./lib/utils/common_utils
'
;
window
.
ConfirmDangerModal
=
(
function
()
{
window
.
ConfirmDangerModal
=
(
function
()
{
function
ConfirmDangerModal
(
form
,
text
)
{
function
ConfirmDangerModal
(
form
,
text
)
{
...
@@ -12,7 +13,7 @@ window.ConfirmDangerModal = (function() {
...
@@ -12,7 +13,7 @@ window.ConfirmDangerModal = (function() {
submit
.
disable
();
submit
.
disable
();
$
(
'
.js-confirm-danger-input
'
).
off
(
'
input
'
);
$
(
'
.js-confirm-danger-input
'
).
off
(
'
input
'
);
$
(
'
.js-confirm-danger-input
'
).
on
(
'
input
'
,
function
()
{
$
(
'
.js-confirm-danger-input
'
).
on
(
'
input
'
,
function
()
{
if
(
gl
.
utils
.
rstrip
(
$
(
this
).
val
())
===
project_path
)
{
if
(
rstrip
(
$
(
this
).
val
())
===
project_path
)
{
return
submit
.
enable
();
return
submit
.
enable
();
}
else
{
}
else
{
return
submit
.
disable
();
return
submit
.
disable
();
...
...
app/assets/javascripts/dispatcher.js
View file @
6a1b84c7
...
@@ -77,6 +77,7 @@ import initProjectVisibilitySelector from './project_visibility';
...
@@ -77,6 +77,7 @@ import initProjectVisibilitySelector from './project_visibility';
import
GpgBadges
from
'
./gpg_badges
'
;
import
GpgBadges
from
'
./gpg_badges
'
;
import
UserFeatureHelper
from
'
./helpers/user_feature_helper
'
;
import
UserFeatureHelper
from
'
./helpers/user_feature_helper
'
;
import
initChangesDropdown
from
'
./init_changes_dropdown
'
;
import
initChangesDropdown
from
'
./init_changes_dropdown
'
;
import
{
ajaxGet
}
from
'
./lib/utils/common_utils
'
;
(
function
()
{
(
function
()
{
var
Dispatcher
;
var
Dispatcher
;
...
@@ -351,7 +352,7 @@ import initChangesDropdown from './init_changes_dropdown';
...
@@ -351,7 +352,7 @@ import initChangesDropdown from './init_changes_dropdown';
if
(
$
(
'
.blob-viewer
'
).
length
)
new
BlobViewer
();
if
(
$
(
'
.blob-viewer
'
).
length
)
new
BlobViewer
();
if
(
$
(
'
.project-show-activity
'
).
length
)
new
gl
.
Activities
();
if
(
$
(
'
.project-show-activity
'
).
length
)
new
gl
.
Activities
();
$
(
'
#tree-slider
'
).
waitForImages
(
function
()
{
$
(
'
#tree-slider
'
).
waitForImages
(
function
()
{
gl
.
utils
.
ajaxGet
(
document
.
querySelector
(
'
.js-tree-content
'
).
dataset
.
logsPath
);
ajaxGet
(
document
.
querySelector
(
'
.js-tree-content
'
).
dataset
.
logsPath
);
});
});
break
;
break
;
case
'
projects:edit
'
:
case
'
projects:edit
'
:
...
@@ -427,7 +428,7 @@ import initChangesDropdown from './init_changes_dropdown';
...
@@ -427,7 +428,7 @@ import initChangesDropdown from './init_changes_dropdown';
new
NewCommitForm
(
$
(
'
.js-create-dir-form
'
));
new
NewCommitForm
(
$
(
'
.js-create-dir-form
'
));
new
UserCallout
({
setCalloutPerProject
:
true
});
new
UserCallout
({
setCalloutPerProject
:
true
});
$
(
'
#tree-slider
'
).
waitForImages
(
function
()
{
$
(
'
#tree-slider
'
).
waitForImages
(
function
()
{
gl
.
utils
.
ajaxGet
(
document
.
querySelector
(
'
.js-tree-content
'
).
dataset
.
logsPath
);
ajaxGet
(
document
.
querySelector
(
'
.js-tree-content
'
).
dataset
.
logsPath
);
});
});
break
;
break
;
case
'
projects:find_file:show
'
:
case
'
projects:find_file:show
'
:
...
...
app/assets/javascripts/lib/utils/common_utils.js
View file @
6a1b84c7
/* eslint-disable func-names, space-before-function-paren, wrap-iife, no-var, no-unused-expressions, no-param-reassign, no-else-return, quotes, object-shorthand, comma-dangle, camelcase, one-var, vars-on-top, one-var-declaration-per-line, no-return-assign, consistent-return, max-len, prefer-template */
/* eslint-disable no-param-reassing */
(
function
()
{
(
function
(
w
)
{
export
const
getPagePath
=
(
index
=
0
)
=>
$
(
'
body
'
).
data
(
'
page
'
).
split
(
'
:
'
)[
index
];
var
base
;
window
.
gl
.
utils
.
getPagePath
=
getPagePath
;
const
faviconEl
=
document
.
getElementById
(
'
favicon
'
);
const
originalFavicon
=
faviconEl
?
faviconEl
.
getAttribute
(
'
href
'
)
:
null
;
export
const
isInGroupsPage
=
()
=>
getPagePath
()
===
'
groups
'
;
w
.
gl
||
(
w
.
gl
=
{});
window
.
gl
.
utils
.
isInGroupsPage
=
isInGroupsPage
;
(
base
=
w
.
gl
).
utils
||
(
base
.
utils
=
{});
w
.
gl
.
utils
.
isInGroupsPage
=
function
()
{
export
const
isInProjectPage
=
()
=>
getPagePath
()
===
'
projects
'
;
return
gl
.
utils
.
getPagePath
()
===
'
groups
'
;
window
.
gl
.
utils
.
isInProjectPage
=
isInProjectPage
;
};
w
.
gl
.
utils
.
isInProjectPage
=
function
()
{
export
const
getProjectSlug
=
()
=>
{
return
gl
.
utils
.
getPagePath
()
===
'
projects
'
;
if
(
isInProjectPage
())
{
};
return
$
(
'
body
'
).
data
(
'
project
'
);
w
.
gl
.
utils
.
getProjectSlug
=
function
()
{
}
if
(
this
.
isInProjectPage
())
{
return
null
;
return
$
(
'
body
'
).
data
(
'
project
'
);
};
}
else
{
window
.
gl
.
utils
.
getProjectSlug
=
getProjectSlug
;
return
null
;
}
export
const
getGroupSlug
=
()
=>
{
};
if
(
isInGroupsPage
())
{
w
.
gl
.
utils
.
getGroupSlug
=
function
()
{
return
$
(
'
body
'
).
data
(
'
group
'
);
if
(
this
.
isInGroupsPage
())
{
}
return
$
(
'
body
'
).
data
(
'
group
'
);
return
null
;
}
else
{
};
return
null
;
window
.
gl
.
utils
.
getGroupSlug
=
getGroupSlug
;
}
};
export
const
isInIssuePage
=
()
=>
{
const
page
=
getPagePath
(
1
);
w
.
gl
.
utils
.
isInIssuePage
=
()
=>
{
const
action
=
getPagePath
(
2
);
const
page
=
gl
.
utils
.
getPagePath
(
1
);
const
action
=
gl
.
utils
.
getPagePath
(
2
);
return
page
===
'
issues
'
&&
action
===
'
show
'
;
};
return
page
===
'
issues
'
&&
action
===
'
show
'
;
window
.
gl
.
utils
.
isInIssuePage
=
isInGroupsPage
;
};
window
.
gl
.
utils
.
ajaxGet
=
url
=>
$
.
ajax
({
w
.
gl
.
utils
.
ajaxGet
=
function
(
url
)
{
type
:
'
GET
'
,
return
$
.
ajax
({
url
,
type
:
"
GET
"
,
dataType
:
'
script
'
,
url
:
url
,
});
dataType
:
"
script
"
export
const
ajaxGet
=
window
.
gl
.
utils
.
ajaxGet
;
});
};
export
const
ajaxPost
=
(
url
,
data
)
=>
$
.
ajax
({
type
:
'
POST
'
,
w
.
gl
.
utils
.
ajaxPost
=
function
(
url
,
data
)
{
url
,
return
$
.
ajax
({
data
,
type
:
'
POST
'
,
});
url
:
url
,
window
.
gl
.
utils
.
ajaxPost
=
ajaxPost
;
data
:
data
,
});
// TODO: This function seems not to be used anywhere
};
window
.
gl
.
utils
.
extractLast
=
term
=>
this
.
split
(
term
).
pop
();
w
.
gl
.
utils
.
extractLast
=
function
(
term
)
{
export
const
rstrip
=
function
rstrip
(
val
)
{
return
this
.
split
(
term
).
pop
();
if
(
val
)
{
};
return
val
.
replace
(
/
\s
+$/
,
''
);
}
w
.
gl
.
utils
.
rstrip
=
function
rstrip
(
val
)
{
return
val
;
if
(
val
)
{
};
return
val
.
replace
(
/
\s
+$/
,
''
);
window
.
gl
.
utils
.
rstrip
=
rstrip
;
}
else
{
return
val
;
export
const
updateTooltipTitle
=
(
$tooltipEl
,
newTitle
)
=>
$tooltipEl
.
attr
(
'
title
'
,
newTitle
).
tooltip
(
'
fixTitle
'
);
}
window
.
gl
.
utils
.
updateTooltipTitle
=
updateTooltipTitle
;
};
export
const
disableButtonIfEmptyField
=
(
fieldSelector
,
buttonSelector
,
eventName
=
'
input
'
)
=>
{
gl
.
utils
.
updateTooltipTitle
=
function
(
$tooltipEl
,
newTitle
)
{
const
field
=
$
(
fieldSelector
);
return
$tooltipEl
.
attr
(
'
title
'
,
newTitle
).
tooltip
(
'
fixTitle
'
);
const
closestSubmit
=
field
.
closest
(
'
form
'
).
find
(
buttonSelector
);
};
if
(
rstrip
(
field
.
val
())
===
''
)
{
closestSubmit
.
disable
();
w
.
gl
.
utils
.
disableButtonIfEmptyField
=
function
(
field_selector
,
button_selector
,
event_name
)
{
}
event_name
=
event_name
||
'
input
'
;
return
field
.
on
(
eventName
,
()
=>
{
var
closest_submit
,
field
,
that
;
if
(
rstrip
(
$
(
this
).
val
())
===
''
)
{
that
=
this
;
return
closestSubmit
.
disable
();
field
=
$
(
field_selector
);
}
closest_submit
=
field
.
closest
(
'
form
'
).
find
(
button_selector
);
return
closestSubmit
.
enable
();
if
(
this
.
rstrip
(
field
.
val
())
===
""
)
{
});
closest_submit
.
disable
();
};
}
window
.
gl
.
utils
.
disableButtonIfEmptyField
=
disableButtonIfEmptyField
;
return
field
.
on
(
event_name
,
function
()
{
if
(
that
.
rstrip
(
$
(
this
).
val
())
===
""
)
{
// automatically adjust scroll position for hash urls taking the height of the navbar into account
return
closest_submit
.
disable
();
// https://github.com/twitter/bootstrap/issues/1768
}
else
{
export
const
handleLocationHash
=
()
=>
{
return
closest_submit
.
enable
();
let
hash
=
window
.
gl
.
utils
.
getLocationHash
();
}
if
(
!
hash
)
return
;
});
};
// This is required to handle non-unicode characters in hash
hash
=
decodeURIComponent
(
hash
);
// automatically adjust scroll position for hash urls taking the height of the navbar into account
// https://github.com/twitter/bootstrap/issues/1768
const
fixedTabs
=
document
.
querySelector
(
'
.js-tabs-affix
'
);
w
.
gl
.
utils
.
handleLocationHash
=
function
()
{
const
fixedDiffStats
=
document
.
querySelector
(
'
.js-diff-files-changed.is-stuck
'
);
var
hash
=
w
.
gl
.
utils
.
getLocationHash
();
const
fixedNav
=
document
.
querySelector
(
'
.navbar-gitlab
'
);
if
(
!
hash
)
return
;
let
adjustment
=
0
;
// This is required to handle non-unicode characters in hash
if
(
fixedNav
)
adjustment
-=
fixedNav
.
offsetHeight
;
hash
=
decodeURIComponent
(
hash
);
// scroll to user-generated markdown anchor if we cannot find a match
const
fixedTabs
=
document
.
querySelector
(
'
.js-tabs-affix
'
);
if
(
document
.
getElementById
(
hash
)
===
null
)
{
const
fixedDiffStats
=
document
.
querySelector
(
'
.js-diff-files-changed.is-stuck
'
);
const
target
=
document
.
getElementById
(
`user-content-
${
hash
}
`
);
const
fixedNav
=
document
.
querySelector
(
'
.navbar-gitlab
'
);
if
(
target
&&
target
.
scrollIntoView
)
{
target
.
scrollIntoView
(
true
);
var
adjustment
=
0
;
window
.
scrollBy
(
0
,
adjustment
);
if
(
fixedNav
)
adjustment
-=
fixedNav
.
offsetHeight
;
}
}
else
{
// scroll to user-generated markdown anchor if we cannot find a match
// only adjust for fixedTabs when not targeting user-generated content
if
(
document
.
getElementById
(
hash
)
===
null
)
{
if
(
fixedTabs
)
{
var
target
=
document
.
getElementById
(
'
user-content-
'
+
hash
);
adjustment
-=
fixedTabs
.
offsetHeight
;
if
(
target
&&
target
.
scrollIntoView
)
{
}
target
.
scrollIntoView
(
true
);
window
.
scrollBy
(
0
,
adjustment
);
if
(
fixedDiffStats
)
{
}
adjustment
-=
fixedDiffStats
.
offsetHeight
;
}
window
.
scrollBy
(
0
,
adjustment
);
}
};
window
.
gl
.
utils
.
handleLocationHash
=
handleLocationHash
;
// Check if element scrolled into viewport from above or below
// Courtesy http://stackoverflow.com/a/7557433/414749
export
const
isInViewport
=
(
el
)
=>
{
const
rect
=
el
.
getBoundingClientRect
();
return
(
rect
.
top
>=
0
&&
rect
.
left
>=
0
&&
rect
.
bottom
<=
window
.
innerHeight
&&
rect
.
right
<=
window
.
innerWidth
);
};
window
.
gl
.
utils
.
isInViewport
=
isInViewport
;
export
const
parseUrl
=
(
url
)
=>
{
const
parser
=
document
.
createElement
(
'
a
'
);
parser
.
href
=
url
;
return
parser
;
};
window
.
gl
.
utils
.
parseUrl
=
parseUrl
;
export
const
parseUrlPathname
=
(
url
)
=>
{
const
parsedUrl
=
parseUrl
(
url
);
// parsedUrl.pathname will return an absolute path for Firefox and a relative path for IE11
// We have to make sure we always have an absolute path.
return
parsedUrl
.
pathname
.
charAt
(
0
)
===
'
/
'
?
parsedUrl
.
pathname
:
`/
${
parsedUrl
.
pathname
}
`
;
};
window
.
gl
.
utils
.
parseUrlPathname
=
parseUrlPathname
;
// We can trust that each param has one & since values containing & will be encoded
// Remove the first character of search as it is always ?
window
.
gl
.
utils
.
getUrlParamsArray
=
()
=>
window
.
location
.
search
.
slice
(
1
).
split
(
'
&
'
).
map
((
param
)
=>
{
const
split
=
param
.
split
(
'
=
'
);
return
[
decodeURI
(
split
[
0
]),
split
[
1
]].
join
(
'
=
'
);
});
export
const
isMetaKey
=
e
=>
e
.
metaKey
||
e
.
ctrlKey
||
e
.
altKey
||
e
.
shiftKey
;
window
.
gl
.
utils
.
isMetaKey
=
isMetaKey
;
// Identify following special clicks
// 1) Cmd + Click on Mac (e.metaKey)
// 2) Ctrl + Click on PC (e.ctrlKey)
// 3) Middle-click or Mouse Wheel Click (e.which is 2)
export
const
isMetaClick
=
e
=>
e
.
metaKey
||
e
.
ctrlKey
||
e
.
which
===
2
;
window
.
gl
.
utils
.
isMetaClick
=
isMetaClick
;
export
const
scrollToElement
=
(
$el
)
=>
{
const
top
=
$el
.
offset
().
top
;
const
mrTabsHeight
=
$
(
'
.merge-request-tabs
'
).
height
()
||
0
;
const
headerHeight
=
$
(
'
.navbar-gitlab
'
).
height
()
||
0
;
return
$
(
'
body, html
'
).
animate
({
scrollTop
:
top
-
mrTabsHeight
-
headerHeight
,
},
200
);
};
window
.
gl
.
utils
.
scrollToElement
=
scrollToElement
;
/**
this will take in the `name` of the param you want to parse in the url
if the name does not exist this function will return `null`
otherwise it will return the value of the param key provided
*/
export
const
getParameterByName
=
(
name
,
urlToParse
)
=>
{
const
url
=
urlToParse
||
window
.
location
.
href
;
name
=
name
.
replace
(
/
[
[
\]]
/g
,
'
\\
$&
'
);
const
regex
=
new
RegExp
(
`[?&]
${
name
}
(=([^&#]*)|&|#|$)`
);
const
results
=
regex
.
exec
(
url
);
if
(
!
results
)
return
null
;
if
(
!
results
[
2
])
return
''
;
return
decodeURIComponent
(
results
[
2
].
replace
(
/
\+
/g
,
'
'
));
};
window
.
gl
.
utils
.
getParameterByName
=
getParameterByName
;
export
const
getSelectedFragment
=
()
=>
{
const
selection
=
window
.
getSelection
();
if
(
selection
.
rangeCount
===
0
)
return
null
;
const
documentFragment
=
document
.
createDocumentFragment
();
for
(
let
i
=
0
;
i
<
selection
.
rangeCount
;
i
+=
1
)
{
documentFragment
.
appendChild
(
selection
.
getRangeAt
(
i
).
cloneContents
());
}
if
(
documentFragment
.
textContent
.
length
===
0
)
return
null
;
return
documentFragment
;
};
window
.
gl
.
utils
.
getSelectedFragment
=
getSelectedFragment
;
export
const
insertText
=
(
target
,
text
)
=>
{
// Firefox doesn't support `document.execCommand('insertText', false, text)` on textareas
const
selectionStart
=
target
.
selectionStart
;
const
selectionEnd
=
target
.
selectionEnd
;
const
value
=
target
.
value
;
const
textBefore
=
value
.
substring
(
0
,
selectionStart
);
const
textAfter
=
value
.
substring
(
selectionEnd
,
value
.
length
);
const
insertedText
=
text
instanceof
Function
?
text
(
textBefore
,
textAfter
)
:
text
;
const
newText
=
textBefore
+
insertedText
+
textAfter
;
target
.
value
=
newText
;
target
.
selectionStart
=
target
.
selectionEnd
=
selectionStart
+
insertedText
.
length
;
// Trigger autosave
$
(
target
).
trigger
(
'
input
'
);
// Trigger autosize
const
event
=
document
.
createEvent
(
'
Event
'
);
event
.
initEvent
(
'
autosize:update
'
,
true
,
false
);
target
.
dispatchEvent
(
event
);
};
window
.
gl
.
utils
.
insertText
=
insertText
;
export
const
nodeMatchesSelector
=
(
node
,
selector
)
=>
{
const
matches
=
Element
.
prototype
.
matches
||
Element
.
prototype
.
matchesSelector
||
Element
.
prototype
.
mozMatchesSelector
||
Element
.
prototype
.
msMatchesSelector
||
Element
.
prototype
.
oMatchesSelector
||
Element
.
prototype
.
webkitMatchesSelector
;
if
(
matches
)
{
return
matches
.
call
(
node
,
selector
);
}
// IE11 doesn't support `node.matches(selector)`
let
parentNode
=
node
.
parentNode
;
if
(
!
parentNode
)
{
parentNode
=
document
.
createElement
(
'
div
'
);
node
=
node
.
cloneNode
(
true
);
parentNode
.
appendChild
(
node
);
}
const
matchingNodes
=
parentNode
.
querySelectorAll
(
selector
);
return
Array
.
prototype
.
indexOf
.
call
(
matchingNodes
,
node
)
!==
-
1
;
};
window
.
gl
.
utils
.
nodeMatchesSelector
=
nodeMatchesSelector
;
/**
this will take in the headers from an API response and normalize them
this way we don't run into production issues when nginx gives us lowercased header keys
*/
export
const
normalizeHeaders
=
(
headers
)
=>
{
const
upperCaseHeaders
=
{};
Object
.
keys
(
headers
).
forEach
((
e
)
=>
{
upperCaseHeaders
[
e
.
toUpperCase
()]
=
headers
[
e
];
});
return
upperCaseHeaders
;
};
window
.
gl
.
utils
.
normalizeHeaders
=
normalizeHeaders
;
/**
this will take in the getAllResponseHeaders result and normalize them
this way we don't run into production issues when nginx gives us lowercased header keys
*/
export
const
normalizeCRLFHeaders
=
(
headers
)
=>
{
const
headersObject
=
{};
const
headersArray
=
headers
.
split
(
'
\n
'
);
headersArray
.
forEach
((
header
)
=>
{
const
keyValue
=
header
.
split
(
'
:
'
);
headersObject
[
keyValue
[
0
]]
=
keyValue
[
1
];
});
return
normalizeHeaders
(
headersObject
);
};
window
.
gl
.
utils
.
normalizeCRLFHeaders
=
normalizeCRLFHeaders
;
/**
* Parses pagination object string values into numbers.
*
* @param {Object} paginationInformation
* @returns {Object}
*/
export
const
parseIntPagination
=
paginationInformation
=>
({
perPage
:
parseInt
(
paginationInformation
[
'
X-PER-PAGE
'
],
10
),
page
:
parseInt
(
paginationInformation
[
'
X-PAGE
'
],
10
),
total
:
parseInt
(
paginationInformation
[
'
X-TOTAL
'
],
10
),
totalPages
:
parseInt
(
paginationInformation
[
'
X-TOTAL-PAGES
'
],
10
),
nextPage
:
parseInt
(
paginationInformation
[
'
X-NEXT-PAGE
'
],
10
),
previousPage
:
parseInt
(
paginationInformation
[
'
X-PREV-PAGE
'
],
10
),
});
window
.
gl
.
utils
.
parseIntPagination
=
parseIntPagination
;
/**
* Updates the search parameter of a URL given the parameter and value provided.
*
* If no search params are present we'll add it.
* If param for page is already present, we'll update it
* If there are params but not for the given one, we'll add it at the end.
* Returns the new search parameters.
*
* @param {String} param
* @param {Number|String|Undefined|Null} value
* @return {String}
*/
export
const
setParamInURL
=
(
param
,
value
)
=>
{
let
search
;
const
locationSearch
=
window
.
location
.
search
;
if
(
locationSearch
.
length
)
{
const
parameters
=
locationSearch
.
substring
(
1
,
locationSearch
.
length
)
.
split
(
'
&
'
)
.
reduce
((
acc
,
element
)
=>
{
const
val
=
element
.
split
(
'
=
'
);
acc
[
val
[
0
]]
=
decodeURIComponent
(
val
[
1
]);
return
acc
;
},
{});
parameters
[
param
]
=
value
;
const
toString
=
Object
.
keys
(
parameters
)
.
map
(
val
=>
`
${
val
}
=
${
encodeURIComponent
(
parameters
[
val
])}
`
)
.
join
(
'
&
'
);
search
=
`?
${
toString
}
`
;
}
else
{
search
=
`?
${
param
}
=
${
value
}
`
;
}
return
search
;
};
window
.
gl
.
utils
.
setParamInURL
=
setParamInURL
;
/**
* Converts permission provided as strings to booleans.
*
* @param {String} string
* @returns {Boolean}
*/
export
const
convertPermissionToBoolean
=
permission
=>
permission
===
'
true
'
;
window
.
gl
.
utils
.
convertPermissionToBoolean
=
convertPermissionToBoolean
;
/**
* Back Off exponential algorithm
* backOff :: (Function<next, stop>, Number) -> Promise<Any, Error>
*
* @param {Function<next, stop>} fn function to be called
* @param {Number} timeout
* @return {Promise<Any, Error>}
* @example
* ```
* backOff(function (next, stop) {
* // Let's perform this function repeatedly for 60s or for the timeout provided.
*
* ourFunction()
* .then(function (result) {
* // continue if result is not what we need
* next();
*
* // when result is what we need let's stop with the repetions and jump out of the cycle
* stop(result);
* })
* .catch(function (error) {
* // if there is an error, we need to stop this with an error.
* stop(error);
* })
* }, 60000)
* .then(function (result) {})
* .catch(function (error) {
* // deal with errors passed to stop()
* })
* ```
*/
export
const
backOff
=
(
fn
,
timeout
=
60000
)
=>
{
const
maxInterval
=
32000
;
let
nextInterval
=
2000
;
let
timeElapsed
=
0
;
return
new
Promise
((
resolve
,
reject
)
=>
{
const
stop
=
arg
=>
((
arg
instanceof
Error
)
?
reject
(
arg
)
:
resolve
(
arg
));
const
next
=
()
=>
{
if
(
timeElapsed
<
timeout
)
{
setTimeout
(()
=>
fn
(
next
,
stop
),
nextInterval
);
timeElapsed
+=
nextInterval
;
nextInterval
=
Math
.
min
(
nextInterval
+
nextInterval
,
maxInterval
);
}
else
{
}
else
{
// only adjust for fixedTabs when not targeting user-generated content
reject
(
new
Error
(
'
BACKOFF_TIMEOUT
'
));
if
(
fixedTabs
)
{
adjustment
-=
fixedTabs
.
offsetHeight
;
}
if
(
fixedDiffStats
)
{
adjustment
-=
fixedDiffStats
.
offsetHeight
;
}
window
.
scrollBy
(
0
,
adjustment
);
}
};
// Check if element scrolled into viewport from above or below
// Courtesy http://stackoverflow.com/a/7557433/414749
w
.
gl
.
utils
.
isInViewport
=
function
(
el
)
{
var
rect
=
el
.
getBoundingClientRect
();
return
(
rect
.
top
>=
0
&&
rect
.
left
>=
0
&&
rect
.
bottom
<=
window
.
innerHeight
&&
rect
.
right
<=
window
.
innerWidth
);
};
gl
.
utils
.
getPagePath
=
function
(
index
)
{
index
=
index
||
0
;
return
$
(
'
body
'
).
data
(
'
page
'
).
split
(
'
:
'
)[
index
];
};
gl
.
utils
.
parseUrl
=
function
(
url
)
{
var
parser
=
document
.
createElement
(
'
a
'
);
parser
.
href
=
url
;
return
parser
;
};
gl
.
utils
.
parseUrlPathname
=
function
(
url
)
{
var
parsedUrl
=
gl
.
utils
.
parseUrl
(
url
);
// parsedUrl.pathname will return an absolute path for Firefox and a relative path for IE11
// We have to make sure we always have an absolute path.
return
parsedUrl
.
pathname
.
charAt
(
0
)
===
'
/
'
?
parsedUrl
.
pathname
:
'
/
'
+
parsedUrl
.
pathname
;
};
gl
.
utils
.
getUrlParamsArray
=
function
()
{
// We can trust that each param has one & since values containing & will be encoded
// Remove the first character of search as it is always ?
return
window
.
location
.
search
.
slice
(
1
).
split
(
'
&
'
).
map
((
param
)
=>
{
const
split
=
param
.
split
(
'
=
'
);
return
[
decodeURI
(
split
[
0
]),
split
[
1
]].
join
(
'
=
'
);
});
};
gl
.
utils
.
isMetaKey
=
function
(
e
)
{
return
e
.
metaKey
||
e
.
ctrlKey
||
e
.
altKey
||
e
.
shiftKey
;
};
gl
.
utils
.
isMetaClick
=
function
(
e
)
{
// Identify following special clicks
// 1) Cmd + Click on Mac (e.metaKey)
// 2) Ctrl + Click on PC (e.ctrlKey)
// 3) Middle-click or Mouse Wheel Click (e.which is 2)
return
e
.
metaKey
||
e
.
ctrlKey
||
e
.
which
===
2
;
};
gl
.
utils
.
scrollToElement
=
function
(
$el
)
{
const
top
=
$el
.
offset
().
top
;
const
mrTabsHeight
=
$
(
'
.merge-request-tabs
'
).
height
()
||
0
;
const
headerHeight
=
$
(
'
.navbar-gitlab
'
).
height
()
||
0
;
return
$
(
'
body, html
'
).
animate
({
scrollTop
:
top
-
mrTabsHeight
-
headerHeight
,
},
200
);
};
/**
this will take in the `name` of the param you want to parse in the url
if the name does not exist this function will return `null`
otherwise it will return the value of the param key provided
*/
w
.
gl
.
utils
.
getParameterByName
=
(
name
,
parseUrl
)
=>
{
const
url
=
parseUrl
||
window
.
location
.
href
;
name
=
name
.
replace
(
/
[
[
\]]
/g
,
'
\\
$&
'
);
const
regex
=
new
RegExp
(
`[?&]
${
name
}
(=([^&#]*)|&|#|$)`
);
const
results
=
regex
.
exec
(
url
);
if
(
!
results
)
return
null
;
if
(
!
results
[
2
])
return
''
;
return
decodeURIComponent
(
results
[
2
].
replace
(
/
\+
/g
,
'
'
));
};
w
.
gl
.
utils
.
getSelectedFragment
=
()
=>
{
const
selection
=
window
.
getSelection
();
if
(
selection
.
rangeCount
===
0
)
return
null
;
const
documentFragment
=
document
.
createDocumentFragment
();
for
(
let
i
=
0
;
i
<
selection
.
rangeCount
;
i
+=
1
)
{
documentFragment
.
appendChild
(
selection
.
getRangeAt
(
i
).
cloneContents
());
}
if
(
documentFragment
.
textContent
.
length
===
0
)
return
null
;
return
documentFragment
;
};
w
.
gl
.
utils
.
insertText
=
(
target
,
text
)
=>
{
// Firefox doesn't support `document.execCommand('insertText', false, text)` on textareas
const
selectionStart
=
target
.
selectionStart
;
const
selectionEnd
=
target
.
selectionEnd
;
const
value
=
target
.
value
;
const
textBefore
=
value
.
substring
(
0
,
selectionStart
);
const
textAfter
=
value
.
substring
(
selectionEnd
,
value
.
length
);
const
insertedText
=
text
instanceof
Function
?
text
(
textBefore
,
textAfter
)
:
text
;
const
newText
=
textBefore
+
insertedText
+
textAfter
;
target
.
value
=
newText
;
target
.
selectionStart
=
target
.
selectionEnd
=
selectionStart
+
insertedText
.
length
;
// Trigger autosave
$
(
target
).
trigger
(
'
input
'
);
// Trigger autosize
var
event
=
document
.
createEvent
(
'
Event
'
);
event
.
initEvent
(
'
autosize:update
'
,
true
,
false
);
target
.
dispatchEvent
(
event
);
};
w
.
gl
.
utils
.
nodeMatchesSelector
=
(
node
,
selector
)
=>
{
const
matches
=
Element
.
prototype
.
matches
||
Element
.
prototype
.
matchesSelector
||
Element
.
prototype
.
mozMatchesSelector
||
Element
.
prototype
.
msMatchesSelector
||
Element
.
prototype
.
oMatchesSelector
||
Element
.
prototype
.
webkitMatchesSelector
;
if
(
matches
)
{
return
matches
.
call
(
node
,
selector
);
}
// IE11 doesn't support `node.matches(selector)`
let
parentNode
=
node
.
parentNode
;
if
(
!
parentNode
)
{
parentNode
=
document
.
createElement
(
'
div
'
);
node
=
node
.
cloneNode
(
true
);
parentNode
.
appendChild
(
node
);
}
}
const
matchingNodes
=
parentNode
.
querySelectorAll
(
selector
);
return
Array
.
prototype
.
indexOf
.
call
(
matchingNodes
,
node
)
!==
-
1
;
};
/**
this will take in the headers from an API response and normalize them
this way we don't run into production issues when nginx gives us lowercased header keys
*/
w
.
gl
.
utils
.
normalizeHeaders
=
(
headers
)
=>
{
const
upperCaseHeaders
=
{};
Object
.
keys
(
headers
).
forEach
((
e
)
=>
{
upperCaseHeaders
[
e
.
toUpperCase
()]
=
headers
[
e
];
});
return
upperCaseHeaders
;
};
};
/**
fn
(
next
,
stop
);
this will take in the getAllResponseHeaders result and normalize them
});
this way we don't run into production issues when nginx gives us lowercased header keys
};
*/
window
.
gl
.
utils
.
backOff
=
backOff
;
w
.
gl
.
utils
.
normalizeCRLFHeaders
=
(
headers
)
=>
{
const
headersObject
=
{};
export
const
setFavicon
=
(
faviconPath
)
=>
{
const
headersArray
=
headers
.
split
(
'
\n
'
);
const
faviconEl
=
document
.
getElementById
(
'
favicon
'
);
if
(
faviconEl
&&
faviconPath
)
{
headersArray
.
forEach
((
header
)
=>
{
faviconEl
.
setAttribute
(
'
href
'
,
faviconPath
);
const
keyValue
=
header
.
split
(
'
:
'
);
}
headersObject
[
keyValue
[
0
]]
=
keyValue
[
1
];
};
});
window
.
gl
.
utils
.
setFavicon
=
setFavicon
;
return
w
.
gl
.
utils
.
normalizeHeaders
(
headersObject
);
export
const
resetFavicon
=
()
=>
{
};
const
faviconEl
=
document
.
getElementById
(
'
favicon
'
);
const
originalFavicon
=
faviconEl
?
faviconEl
.
getAttribute
(
'
href
'
)
:
null
;
/**
if
(
faviconEl
)
{
* Parses pagination object string values into numbers.
faviconEl
.
setAttribute
(
'
href
'
,
originalFavicon
);
*
}
* @param {Object} paginationInformation
};
* @returns {Object}
window
.
gl
.
utils
.
resetFavicon
=
resetFavicon
;
*/
w
.
gl
.
utils
.
parseIntPagination
=
paginationInformation
=>
({
export
const
setCiStatusFavicon
=
(
pageUrl
)
=>
{
perPage
:
parseInt
(
paginationInformation
[
'
X-PER-PAGE
'
],
10
),
$
.
ajax
({
page
:
parseInt
(
paginationInformation
[
'
X-PAGE
'
],
10
),
url
:
pageUrl
,
total
:
parseInt
(
paginationInformation
[
'
X-TOTAL
'
],
10
),
dataType
:
'
json
'
,
totalPages
:
parseInt
(
paginationInformation
[
'
X-TOTAL-PAGES
'
],
10
),
success
:
(
data
)
=>
{
nextPage
:
parseInt
(
paginationInformation
[
'
X-NEXT-PAGE
'
],
10
),
if
(
data
&&
data
.
favicon
)
{
previousPage
:
parseInt
(
paginationInformation
[
'
X-PREV-PAGE
'
],
10
),
gl
.
utils
.
setFavicon
(
data
.
favicon
);
});
/**
* Updates the search parameter of a URL given the parameter and value provided.
*
* If no search params are present we'll add it.
* If param for page is already present, we'll update it
* If there are params but not for the given one, we'll add it at the end.
* Returns the new search parameters.
*
* @param {String} param
* @param {Number|String|Undefined|Null} value
* @return {String}
*/
w
.
gl
.
utils
.
setParamInURL
=
(
param
,
value
)
=>
{
let
search
;
const
locationSearch
=
window
.
location
.
search
;
if
(
locationSearch
.
length
)
{
const
parameters
=
locationSearch
.
substring
(
1
,
locationSearch
.
length
)
.
split
(
'
&
'
)
.
reduce
((
acc
,
element
)
=>
{
const
val
=
element
.
split
(
'
=
'
);
acc
[
val
[
0
]]
=
decodeURIComponent
(
val
[
1
]);
return
acc
;
},
{});
parameters
[
param
]
=
value
;
const
toString
=
Object
.
keys
(
parameters
)
.
map
(
val
=>
`
${
val
}
=
${
encodeURIComponent
(
parameters
[
val
])}
`
)
.
join
(
'
&
'
);
search
=
`?
${
toString
}
`
;
}
else
{
}
else
{
search
=
`?
${
param
}
=
${
value
}
`
;
gl
.
utils
.
resetFavicon
();
}
return
search
;
};
/**
* Converts permission provided as strings to booleans.
*
* @param {String} string
* @returns {Boolean}
*/
w
.
gl
.
utils
.
convertPermissionToBoolean
=
permission
=>
permission
===
'
true
'
;
/**
* Back Off exponential algorithm
* backOff :: (Function<next, stop>, Number) -> Promise<Any, Error>
*
* @param {Function<next, stop>} fn function to be called
* @param {Number} timeout
* @return {Promise<Any, Error>}
* @example
* ```
* backOff(function (next, stop) {
* // Let's perform this function repeatedly for 60s or for the timeout provided.
*
* ourFunction()
* .then(function (result) {
* // continue if result is not what we need
* next();
*
* // when result is what we need let's stop with the repetions and jump out of the cycle
* stop(result);
* })
* .catch(function (error) {
* // if there is an error, we need to stop this with an error.
* stop(error);
* })
* }, 60000)
* .then(function (result) {})
* .catch(function (error) {
* // deal with errors passed to stop()
* })
* ```
*/
w
.
gl
.
utils
.
backOff
=
(
fn
,
timeout
=
60000
)
=>
{
const
maxInterval
=
32000
;
let
nextInterval
=
2000
;
let
timeElapsed
=
0
;
return
new
Promise
((
resolve
,
reject
)
=>
{
const
stop
=
arg
=>
((
arg
instanceof
Error
)
?
reject
(
arg
)
:
resolve
(
arg
));
const
next
=
()
=>
{
if
(
timeElapsed
<
timeout
)
{
setTimeout
(()
=>
fn
(
next
,
stop
),
nextInterval
);
timeElapsed
+=
nextInterval
;
nextInterval
=
Math
.
min
(
nextInterval
+
nextInterval
,
maxInterval
);
}
else
{
reject
(
new
Error
(
'
BACKOFF_TIMEOUT
'
));
}
};
fn
(
next
,
stop
);
});
};
w
.
gl
.
utils
.
setFavicon
=
(
faviconPath
)
=>
{
if
(
faviconEl
&&
faviconPath
)
{
faviconEl
.
setAttribute
(
'
href
'
,
faviconPath
);
}
}
};
},
error
:
()
=>
{
w
.
gl
.
utils
.
resetFavicon
=
()
=>
{
gl
.
utils
.
resetFavicon
();
if
(
faviconEl
)
{
},
faviconEl
.
setAttribute
(
'
href
'
,
originalFavicon
);
});
}
};
};
window
.
gl
.
utils
.
setCiStatusFavicon
=
setCiStatusFavicon
;
w
.
gl
.
utils
.
setCiStatusFavicon
=
(
pageUrl
)
=>
{
$
.
ajax
({
url
:
pageUrl
,
dataType
:
'
json
'
,
success
:
function
(
data
)
{
if
(
data
&&
data
.
favicon
)
{
gl
.
utils
.
setFavicon
(
data
.
favicon
);
}
else
{
gl
.
utils
.
resetFavicon
();
}
},
error
:
function
()
{
gl
.
utils
.
resetFavicon
();
}
});
};
})(
window
);
}).
call
(
window
);
app/assets/javascripts/merge_request_tabs.js
View file @
6a1b84c7
...
@@ -7,6 +7,7 @@ import './flash';
...
@@ -7,6 +7,7 @@ import './flash';
import
BlobForkSuggestion
from
'
./blob/blob_fork_suggestion
'
;
import
BlobForkSuggestion
from
'
./blob/blob_fork_suggestion
'
;
import
initChangesDropdown
from
'
./init_changes_dropdown
'
;
import
initChangesDropdown
from
'
./init_changes_dropdown
'
;
import
bp
from
'
./breakpoints
'
;
import
bp
from
'
./breakpoints
'
;
import
parseUrlPathname
from
'
./lib/utils/common_utils
'
;
/* eslint-disable max-len */
/* eslint-disable max-len */
// MergeRequestTabs
// MergeRequestTabs
...
@@ -260,7 +261,7 @@ import bp from './breakpoints';
...
@@ -260,7 +261,7 @@ import bp from './breakpoints';
// We extract pathname for the current Changes tab anchor href
// We extract pathname for the current Changes tab anchor href
// some pages like MergeRequestsController#new has query parameters on that anchor
// some pages like MergeRequestsController#new has query parameters on that anchor
const
urlPathname
=
gl
.
utils
.
parseUrlPathname
(
source
);
const
urlPathname
=
parseUrlPathname
(
source
);
this
.
ajaxGet
({
this
.
ajaxGet
({
url
:
`
${
urlPathname
}
.json
${
location
.
search
}
`
,
url
:
`
${
urlPathname
}
.json
${
location
.
search
}
`
,
...
...
app/assets/javascripts/monitoring/components/dashboard.vue
View file @
6a1b84c7
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
import
EmptyState
from
'
./empty_state.vue
'
;
import
EmptyState
from
'
./empty_state.vue
'
;
import
MonitoringStore
from
'
../stores/monitoring_store
'
;
import
MonitoringStore
from
'
../stores/monitoring_store
'
;
import
eventHub
from
'
../event_hub
'
;
import
eventHub
from
'
../event_hub
'
;
import
{
backOff
}
from
'
../../lib/utils/common_utils
'
;
export
default
{
export
default
{
...
@@ -41,7 +42,7 @@
...
@@ -41,7 +42,7 @@
getGraphsData
()
{
getGraphsData
()
{
const
maxNumberOfRequests
=
3
;
const
maxNumberOfRequests
=
3
;
this
.
state
=
'
loading
'
;
this
.
state
=
'
loading
'
;
gl
.
utils
.
backOff
((
next
,
stop
)
=>
{
backOff
((
next
,
stop
)
=>
{
this
.
service
.
get
().
then
((
resp
)
=>
{
this
.
service
.
get
().
then
((
resp
)
=>
{
if
(
resp
.
status
===
statusCodes
.
NO_CONTENT
)
{
if
(
resp
.
status
===
statusCodes
.
NO_CONTENT
)
{
this
.
backOffRequestCounter
=
this
.
backOffRequestCounter
+=
1
;
this
.
backOffRequestCounter
=
this
.
backOffRequestCounter
+=
1
;
...
...
app/assets/javascripts/notes.js
View file @
6a1b84c7
...
@@ -23,6 +23,7 @@ import loadAwardsHandler from './awards_handler';
...
@@ -23,6 +23,7 @@ import loadAwardsHandler from './awards_handler';
import
'
./autosave
'
;
import
'
./autosave
'
;
import
'
./dropzone_input
'
;
import
'
./dropzone_input
'
;
import
TaskList
from
'
./task_list
'
;
import
TaskList
from
'
./task_list
'
;
import
{
ajaxPost
,
isInViewport
,
getPagePath
}
from
'
./lib/utils/common_utils
'
;
window
.
autosize
=
autosize
;
window
.
autosize
=
autosize
;
window
.
Dropzone
=
Dropzone
;
window
.
Dropzone
=
Dropzone
;
...
@@ -81,7 +82,7 @@ export default class Notes {
...
@@ -81,7 +82,7 @@ export default class Notes {
this
.
setViewType
(
view
);
this
.
setViewType
(
view
);
// We are in the Merge Requests page so we need another edit form for Changes tab
// We are in the Merge Requests page so we need another edit form for Changes tab
if
(
g
l
.
utils
.
g
etPagePath
(
1
)
===
'
merge_requests
'
)
{
if
(
getPagePath
(
1
)
===
'
merge_requests
'
)
{
$
(
'
.note-edit-form
'
).
clone
()
$
(
'
.note-edit-form
'
).
clone
()
.
addClass
(
'
mr-note-edit-form
'
).
insertAfter
(
'
.note-edit-form
'
);
.
addClass
(
'
mr-note-edit-form
'
).
insertAfter
(
'
.note-edit-form
'
);
}
}
...
@@ -644,10 +645,10 @@ export default class Notes {
...
@@ -644,10 +645,10 @@ export default class Notes {
}
}
else
{
else
{
var
$buttons
=
$el
.
find
(
'
.note-form-actions
'
);
var
$buttons
=
$el
.
find
(
'
.note-form-actions
'
);
var
isWidgetVisible
=
gl
.
utils
.
isInViewport
(
$el
.
get
(
0
));
var
isWidgetVisible
=
isInViewport
(
$el
.
get
(
0
));
if
(
!
isWidgetVisible
)
{
if
(
!
isWidgetVisible
)
{
gl
.
utils
.
scrollToElement
(
$el
);
scrollToElement
(
$el
);
}
}
$el
.
find
(
'
.js-finish-edit-warning
'
).
show
();
$el
.
find
(
'
.js-finish-edit-warning
'
).
show
();
...
@@ -1188,7 +1189,7 @@ export default class Notes {
...
@@ -1188,7 +1189,7 @@ export default class Notes {
}
}
static
checkMergeRequestStatus
()
{
static
checkMergeRequestStatus
()
{
if
(
g
l
.
utils
.
g
etPagePath
(
1
)
===
'
merge_requests
'
)
{
if
(
getPagePath
(
1
)
===
'
merge_requests
'
)
{
gl
.
mrWidget
.
checkStatus
();
gl
.
mrWidget
.
checkStatus
();
}
}
}
}
...
@@ -1326,7 +1327,7 @@ export default class Notes {
...
@@ -1326,7 +1327,7 @@ export default class Notes {
* 2) Identify comment type; a) Main thread b) Discussion thread c) Discussion resolve
* 2) Identify comment type; a) Main thread b) Discussion thread c) Discussion resolve
* 3) Build temporary placeholder element (using `createPlaceholderNote`)
* 3) Build temporary placeholder element (using `createPlaceholderNote`)
* 4) Show placeholder note on UI
* 4) Show placeholder note on UI
* 5) Perform network request to submit the note using `
gl.utils.
ajaxPost`
* 5) Perform network request to submit the note using `ajaxPost`
* a) If request is successfully completed
* a) If request is successfully completed
* 1. Remove placeholder element
* 1. Remove placeholder element
* 2. Show submitted Note element
* 2. Show submitted Note element
...
@@ -1408,7 +1409,7 @@ export default class Notes {
...
@@ -1408,7 +1409,7 @@ export default class Notes {
/* eslint-disable promise/catch-or-return */
/* eslint-disable promise/catch-or-return */
// Make request to submit comment on server
// Make request to submit comment on server
gl
.
utils
.
ajaxPost
(
formAction
,
formData
)
ajaxPost
(
formAction
,
formData
)
.
then
((
note
)
=>
{
.
then
((
note
)
=>
{
// Submission successful! remove placeholder
// Submission successful! remove placeholder
$notesContainer
.
find
(
`#
${
noteUniqueId
}
`
).
remove
();
$notesContainer
.
find
(
`#
${
noteUniqueId
}
`
).
remove
();
...
@@ -1510,7 +1511,7 @@ export default class Notes {
...
@@ -1510,7 +1511,7 @@ export default class Notes {
/* eslint-disable promise/catch-or-return */
/* eslint-disable promise/catch-or-return */
// Make request to update comment on server
// Make request to update comment on server
gl
.
utils
.
ajaxPost
(
formAction
,
formData
)
ajaxPost
(
formAction
,
formData
)
.
then
((
note
)
=>
{
.
then
((
note
)
=>
{
// Submission successful! render final note element
// Submission successful! render final note element
this
.
updateNote
(
note
,
$editingNote
);
this
.
updateNote
(
note
,
$editingNote
);
...
...
app/assets/javascripts/notes/stores/actions.js
View file @
6a1b84c7
...
@@ -7,6 +7,7 @@ import * as constants from '../constants';
...
@@ -7,6 +7,7 @@ import * as constants from '../constants';
import
service
from
'
../services/issue_notes_service
'
;
import
service
from
'
../services/issue_notes_service
'
;
import
loadAwardsHandler
from
'
../../awards_handler
'
;
import
loadAwardsHandler
from
'
../../awards_handler
'
;
import
sidebarTimeTrackingEventHub
from
'
../../sidebar/event_hub
'
;
import
sidebarTimeTrackingEventHub
from
'
../../sidebar/event_hub
'
;
import
{
isInViewport
,
scrollToElement
}
from
'
../../lib/utils/common_utils
'
;
let
eTagPoll
;
let
eTagPoll
;
...
@@ -211,7 +212,7 @@ export const toggleAwardRequest = ({ commit, getters, dispatch }, data) => {
...
@@ -211,7 +212,7 @@ export const toggleAwardRequest = ({ commit, getters, dispatch }, data) => {
};
};
export
const
scrollToNoteIfNeeded
=
(
context
,
el
)
=>
{
export
const
scrollToNoteIfNeeded
=
(
context
,
el
)
=>
{
if
(
!
gl
.
utils
.
isInViewport
(
el
[
0
]))
{
if
(
!
isInViewport
(
el
[
0
]))
{
gl
.
utils
.
scrollToElement
(
el
);
scrollToElement
(
el
);
}
}
};
};
app/assets/javascripts/profile/profile.js
View file @
6a1b84c7
/* eslint-disable comma-dangle, no-unused-vars, class-methods-use-this, quotes, consistent-return, func-names, prefer-arrow-callback, space-before-function-paren, max-len */
/* eslint-disable comma-dangle, no-unused-vars, class-methods-use-this, quotes, consistent-return, func-names, prefer-arrow-callback, space-before-function-paren, max-len */
/* global Flash */
/* global Flash */
import
{
getPagePath
}
from
'
../lib/utils/common_utils
'
;
((
global
)
=>
{
((
global
)
=>
{
class
Profile
{
class
Profile
{
...
@@ -93,7 +94,7 @@
...
@@ -93,7 +94,7 @@
return
$title
.
val
(
comment
[
1
]).
change
();
return
$title
.
val
(
comment
[
1
]).
change
();
}
}
});
});
if
(
g
lobal
.
utils
.
g
etPagePath
()
===
'
profiles
'
)
{
if
(
getPagePath
()
===
'
profiles
'
)
{
return
new
Profile
();
return
new
Profile
();
}
}
});
});
...
...
app/assets/javascripts/prometheus_metrics/prometheus_metrics.js
View file @
6a1b84c7
import
PANEL_STATE
from
'
./constants
'
;
import
PANEL_STATE
from
'
./constants
'
;
import
{
backOff
}
from
'
../lib/utils/common_utils
'
;
export
default
class
PrometheusMetrics
{
export
default
class
PrometheusMetrics
{
constructor
(
wrapperSelector
)
{
constructor
(
wrapperSelector
)
{
...
@@ -79,7 +80,7 @@ export default class PrometheusMetrics {
...
@@ -79,7 +80,7 @@ export default class PrometheusMetrics {
loadActiveMetrics
()
{
loadActiveMetrics
()
{
this
.
showMonitoringMetricsPanelState
(
PANEL_STATE
.
LOADING
);
this
.
showMonitoringMetricsPanelState
(
PANEL_STATE
.
LOADING
);
gl
.
utils
.
backOff
((
next
,
stop
)
=>
{
backOff
((
next
,
stop
)
=>
{
$
.
getJSON
(
this
.
activeMetricsEndpoint
)
$
.
getJSON
(
this
.
activeMetricsEndpoint
)
.
done
((
res
)
=>
{
.
done
((
res
)
=>
{
if
(
res
&&
res
.
success
)
{
if
(
res
&&
res
.
success
)
{
...
...
app/assets/javascripts/search_autocomplete.js
View file @
6a1b84c7
/* eslint-disable comma-dangle, no-return-assign, one-var, no-var, no-underscore-dangle, one-var-declaration-per-line, no-unused-vars, no-cond-assign, consistent-return, object-shorthand, prefer-arrow-callback, func-names, space-before-function-paren, prefer-template, quotes, class-methods-use-this, no-unused-expressions, no-sequences, wrap-iife, no-lonely-if, no-else-return, no-param-reassign, vars-on-top, max-len */
/* eslint-disable comma-dangle, no-return-assign, one-var, no-var, no-underscore-dangle, one-var-declaration-per-line, no-unused-vars, no-cond-assign, consistent-return, object-shorthand, prefer-arrow-callback, func-names, space-before-function-paren, prefer-template, quotes, class-methods-use-this, no-unused-expressions, no-sequences, wrap-iife, no-lonely-if, no-else-return, no-param-reassign, vars-on-top, max-len */
import
{
isInGroupsPage
,
isInProjectPage
,
getGroupSlug
,
getProjectSlug
}
from
'
./lib/utils/common_utils
'
;
((
global
)
=>
{
((
global
)
=>
{
const
KEYCODE
=
{
const
KEYCODE
=
{
...
@@ -146,14 +147,14 @@
...
@@ -146,14 +147,14 @@
}
}
getCategoryContents
()
{
getCategoryContents
()
{
var
dashboardOptions
,
groupOptions
,
issuesPath
,
items
,
mrPath
,
name
,
options
,
projectOptions
,
userId
,
userName
,
utils
;
var
dashboardOptions
,
groupOptions
,
issuesPath
,
items
,
mrPath
,
name
,
options
,
projectOptions
,
userId
,
userName
;
userId
=
gon
.
current_user_id
;
userId
=
gon
.
current_user_id
;
userName
=
gon
.
current_username
;
userName
=
gon
.
current_username
;
utils
=
gl
.
utils
,
projectOptions
=
gl
.
projectOptions
,
groupOptions
=
gl
.
groupOptions
,
dashboardOptions
=
gl
.
dashboardOptions
;
projectOptions
=
gl
.
projectOptions
,
groupOptions
=
gl
.
groupOptions
,
dashboardOptions
=
gl
.
dashboardOptions
;
if
(
utils
.
isInGroupsPage
()
&&
groupOptions
)
{
if
(
isInGroupsPage
()
&&
groupOptions
)
{
options
=
groupOptions
[
utils
.
getGroupSlug
()];
options
=
groupOptions
[
getGroupSlug
()];
}
else
if
(
utils
.
isInProjectPage
()
&&
projectOptions
)
{
}
else
if
(
isInProjectPage
()
&&
projectOptions
)
{
options
=
projectOptions
[
utils
.
getProjectSlug
()];
options
=
projectOptions
[
getProjectSlug
()];
}
else
if
(
dashboardOptions
)
{
}
else
if
(
dashboardOptions
)
{
options
=
dashboardOptions
;
options
=
dashboardOptions
;
}
}
...
...
app/assets/javascripts/vue_merge_request_widget/components/mr_widget_memory_usage.js
View file @
6a1b84c7
import
statusCodes
from
'
../../lib/utils/http_status
'
;
import
statusCodes
from
'
../../lib/utils/http_status
'
;
import
{
bytesToMiB
}
from
'
../../lib/utils/number_utils
'
;
import
{
bytesToMiB
}
from
'
../../lib/utils/number_utils
'
;
import
{
backOff
}
from
'
../../lib/utils/common_utils
'
;
import
MemoryGraph
from
'
../../vue_shared/components/memory_graph
'
;
import
MemoryGraph
from
'
../../vue_shared/components/memory_graph
'
;
import
MRWidgetService
from
'
../services/mr_widget_service
'
;
import
MRWidgetService
from
'
../services/mr_widget_service
'
;
...
@@ -84,7 +84,7 @@ export default {
...
@@ -84,7 +84,7 @@ export default {
}
}
},
},
loadMetrics
()
{
loadMetrics
()
{
gl
.
utils
.
backOff
((
next
,
stop
)
=>
{
backOff
((
next
,
stop
)
=>
{
MRWidgetService
.
fetchMetrics
(
this
.
metricsUrl
)
MRWidgetService
.
fetchMetrics
(
this
.
metricsUrl
)
.
then
((
res
)
=>
{
.
then
((
res
)
=>
{
if
(
res
.
status
===
statusCodes
.
NO_CONTENT
)
{
if
(
res
.
status
===
statusCodes
.
NO_CONTENT
)
{
...
...
spec/javascripts/lib/utils/common_utils_spec.js
View file @
6a1b84c7
/* eslint-disable promise/catch-or-return */
/* eslint-disable promise/catch-or-return */
import
'
~/lib/utils/common_utils
'
;
import
*
as
commonUtils
from
'
~/lib/utils/common_utils
'
;
(()
=>
{
describe
(
'
common_utils
'
,
()
=>
{
describe
(
'
common_utils
'
,
()
=>
{
describe
(
'
parseUrl
'
,
()
=>
{
describe
(
'
gl.utils.parseUrl
'
,
()
=>
{
it
(
'
returns an anchor tag with url
'
,
()
=>
{
it
(
'
returns an anchor tag with url
'
,
()
=>
{
expect
(
commonUtils
.
parseUrl
(
'
/some/absolute/url
'
).
pathname
).
toContain
(
'
some/absolute/url
'
);
expect
(
gl
.
utils
.
parseUrl
(
'
/some/absolute/url
'
).
pathname
).
toContain
(
'
some/absolute/url
'
);
});
});
it
(
'
url is escaped
'
,
()
=>
{
it
(
'
url is escaped
'
,
()
=>
{
// IE11 will return a relative pathname while other browsers will return a full pathname.
// IE11 will return a relative pathname while other browsers will return a full pathname.
// parseUrl uses an anchor element for parsing an url. With relative urls, the anchor
// parseUrl uses an anchor element for parsing an url. With relative urls, the anchor
// element will create an absolute url relative to the current execution context.
// element will create an absolute url relative to the current execution context.
// The JavaScript test suite is executed at '/' which will lead to an absolute url
// The JavaScript test suite is executed at '/' which will lead to an absolute url
// starting with '/'.
// starting with '/'.
expect
(
commonUtils
.
parseUrl
(
'
" test="asf"
'
).
pathname
).
toContain
(
'
/%22%20test=%22asf%22
'
);
expect
(
gl
.
utils
.
parseUrl
(
'
" test="asf"
'
).
pathname
).
toContain
(
'
/%22%20test=%22asf%22
'
);
});
});
});
});
describe
(
'
gl.utils.parseUrlPathname
'
,
()
=>
{
describe
(
'
parseUrlPathname
'
,
()
=>
{
beforeEach
(()
=>
{
beforeEach
(()
=>
{
spyOn
(
gl
.
utils
,
'
parseUrl
'
).
and
.
callFake
(
url
=>
({
spyOn
(
gl
.
utils
,
'
parseUrl
'
).
and
.
callFake
(
url
=>
({
pathname
:
url
,
pathname
:
url
,
}));
}));
});
});
it
(
'
returns an absolute url when given an absolute url
'
,
()
=>
{
it
(
'
returns an absolute url when given an absolute url
'
,
()
=>
{
expect
(
gl
.
utils
.
parseUrlPathname
(
'
/some/absolute/url
'
)).
toEqual
(
'
/some/absolute/url
'
);
expect
(
commonUtils
.
parseUrlPathname
(
'
/some/absolute/url
'
)).
toEqual
(
'
/some/absolute/url
'
);
});
});
it
(
'
returns an absolute url when given a relative url
'
,
()
=>
{
it
(
'
returns an absolute url when given a relative url
'
,
()
=>
{
expect
(
gl
.
utils
.
parseUrlPathname
(
'
some/relative/url
'
)).
toEqual
(
'
/some/relative/url
'
);
expect
(
commonUtils
.
parseUrlPathname
(
'
some/relative/url
'
)).
toEqual
(
'
/some/relative/url
'
);
});
});
});
});
describe
(
'
gl.utils.getUrlParamsArray
'
,
()
=>
{
describe
(
'
gl.utils.getUrlParamsArray
'
,
()
=>
{
it
(
'
should return params array
'
,
()
=>
{
it
(
'
should return params array
'
,
()
=>
{
expect
(
gl
.
utils
.
getUrlParamsArray
()
instanceof
Array
).
toBe
(
true
);
expect
(
gl
.
utils
.
getUrlParamsArray
()
instanceof
Array
).
toBe
(
true
);
});
});
it
(
'
should remove the question mark from the search params
'
,
()
=>
{
it
(
'
should remove the question mark from the search params
'
,
()
=>
{
const
paramsArray
=
gl
.
utils
.
getUrlParamsArray
();
const
paramsArray
=
gl
.
utils
.
getUrlParamsArray
();
expect
(
paramsArray
[
0
][
0
]
!==
'
?
'
).
toBe
(
true
);
expect
(
paramsArray
[
0
][
0
]
!==
'
?
'
).
toBe
(
true
);
});
});
it
(
'
should decode params
'
,
()
=>
{
it
(
'
should decode params
'
,
()
=>
{
history
.
pushState
(
''
,
''
,
'
?label_name%5B%5D=test
'
);
history
.
pushState
(
''
,
''
,
'
?label_name%5B%5D=test
'
);
expect
(
expect
(
gl
.
utils
.
getUrlParamsArray
()[
0
],
gl
.
utils
.
getUrlParamsArray
()[
0
],
).
toBe
(
'
label_name[]=test
'
);
).
toBe
(
'
label_name[]=test
'
);
history
.
pushState
(
''
,
''
,
'
?
'
);
history
.
pushState
(
''
,
''
,
'
?
'
);
});
});
});
});
describe
(
'
gl.utils.
handleLocationHash
'
,
()
=>
{
describe
(
'
handleLocationHash
'
,
()
=>
{
beforeEach
(()
=>
{
beforeEach
(()
=>
{
spyOn
(
window
.
document
,
'
getElementById
'
).
and
.
callThrough
();
spyOn
(
window
.
document
,
'
getElementById
'
).
and
.
callThrough
();
});
});
afterEach
(()
=>
{
afterEach
(()
=>
{
window
.
history
.
pushState
({},
null
,
''
);
window
.
history
.
pushState
({},
null
,
''
);
});
});
function
expectGetElementIdToHaveBeenCalledWith
(
elementId
)
{
function
expectGetElementIdToHaveBeenCalledWith
(
elementId
)
{
expect
(
window
.
document
.
getElementById
).
toHaveBeenCalledWith
(
elementId
);
expect
(
window
.
document
.
getElementById
).
toHaveBeenCalledWith
(
elementId
);
}
}
it
(
'
decodes hash parameter
'
,
()
=>
{
it
(
'
decodes hash parameter
'
,
()
=>
{
window
.
history
.
pushState
({},
null
,
'
#random-hash
'
);
window
.
history
.
pushState
({},
null
,
'
#random-hash
'
);
gl
.
u
tils
.
handleLocationHash
();
commonU
tils
.
handleLocationHash
();
expectGetElementIdToHaveBeenCalledWith
(
'
random-hash
'
);
expectGetElementIdToHaveBeenCalledWith
(
'
random-hash
'
);
expectGetElementIdToHaveBeenCalledWith
(
'
user-content-random-hash
'
);
expectGetElementIdToHaveBeenCalledWith
(
'
user-content-random-hash
'
);
});
});
it
(
'
decodes cyrillic hash parameter
'
,
()
=>
{
it
(
'
decodes cyrillic hash parameter
'
,
()
=>
{
window
.
history
.
pushState
({},
null
,
'
#definição
'
);
window
.
history
.
pushState
({},
null
,
'
#definição
'
);
gl
.
u
tils
.
handleLocationHash
();
commonU
tils
.
handleLocationHash
();
expectGetElementIdToHaveBeenCalledWith
(
'
definição
'
);
expectGetElementIdToHaveBeenCalledWith
(
'
definição
'
);
expectGetElementIdToHaveBeenCalledWith
(
'
user-content-definição
'
);
expectGetElementIdToHaveBeenCalledWith
(
'
user-content-definição
'
);
});
});
it
(
'
decodes encoded cyrillic hash parameter
'
,
()
=>
{
it
(
'
decodes encoded cyrillic hash parameter
'
,
()
=>
{
window
.
history
.
pushState
({},
null
,
'
#defini%C3%A7%C3%A3o
'
);
window
.
history
.
pushState
({},
null
,
'
#defini%C3%A7%C3%A3o
'
);
gl
.
u
tils
.
handleLocationHash
();
commonU
tils
.
handleLocationHash
();
expectGetElementIdToHaveBeenCalledWith
(
'
definição
'
);
expectGetElementIdToHaveBeenCalledWith
(
'
definição
'
);
expectGetElementIdToHaveBeenCalledWith
(
'
user-content-definição
'
);
expectGetElementIdToHaveBeenCalledWith
(
'
user-content-definição
'
);
});
});
});
});
describe
(
'
gl.utils.setParamInURL
'
,
()
=>
{
describe
(
'
gl.utils.setParamInURL
'
,
()
=>
{
afterEach
(()
=>
{
afterEach
(()
=>
{
window
.
history
.
pushState
({},
null
,
''
);
window
.
history
.
pushState
({},
null
,
''
);
});
});
it
(
'
should return the parameter
'
,
()
=>
{
it
(
'
should return the parameter
'
,
()
=>
{
window
.
history
.
replaceState
({},
null
,
''
);
window
.
history
.
replaceState
({},
null
,
''
);
expect
(
gl
.
utils
.
setParamInURL
(
'
page
'
,
156
)).
toBe
(
'
?page=156
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
page
'
,
156
)).
toBe
(
'
?page=156
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
page
'
,
'
156
'
)).
toBe
(
'
?page=156
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
page
'
,
'
156
'
)).
toBe
(
'
?page=156
'
);
});
});
it
(
'
should update the existing parameter when its a number
'
,
()
=>
{
it
(
'
should update the existing parameter when its a number
'
,
()
=>
{
window
.
history
.
pushState
({},
null
,
'
?page=15
'
);
window
.
history
.
pushState
({},
null
,
'
?page=15
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
page
'
,
16
)).
toBe
(
'
?page=16
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
page
'
,
16
)).
toBe
(
'
?page=16
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
page
'
,
'
16
'
)).
toBe
(
'
?page=16
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
page
'
,
'
16
'
)).
toBe
(
'
?page=16
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
page
'
,
true
)).
toBe
(
'
?page=true
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
page
'
,
true
)).
toBe
(
'
?page=true
'
);
});
});
it
(
'
should update the existing parameter when its a string
'
,
()
=>
{
it
(
'
should update the existing parameter when its a string
'
,
()
=>
{
window
.
history
.
pushState
({},
null
,
'
?scope=all
'
);
window
.
history
.
pushState
({},
null
,
'
?scope=all
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
scope
'
,
'
finished
'
)).
toBe
(
'
?scope=finished
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
scope
'
,
'
finished
'
)).
toBe
(
'
?scope=finished
'
);
});
});
it
(
'
should update the existing parameter when more than one parameter exists
'
,
()
=>
{
it
(
'
should update the existing parameter when more than one parameter exists
'
,
()
=>
{
window
.
history
.
pushState
({},
null
,
'
?scope=all&page=15
'
);
window
.
history
.
pushState
({},
null
,
'
?scope=all&page=15
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
scope
'
,
'
finished
'
)).
toBe
(
'
?scope=finished&page=15
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
scope
'
,
'
finished
'
)).
toBe
(
'
?scope=finished&page=15
'
);
});
});
it
(
'
should add a new parameter to the end of the existing ones
'
,
()
=>
{
it
(
'
should add a new parameter to the end of the existing ones
'
,
()
=>
{
window
.
history
.
pushState
({},
null
,
'
?scope=all
'
);
window
.
history
.
pushState
({},
null
,
'
?scope=all
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
page
'
,
16
)).
toBe
(
'
?scope=all&page=16
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
page
'
,
16
)).
toBe
(
'
?scope=all&page=16
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
page
'
,
'
16
'
)).
toBe
(
'
?scope=all&page=16
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
page
'
,
'
16
'
)).
toBe
(
'
?scope=all&page=16
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
page
'
,
true
)).
toBe
(
'
?scope=all&page=true
'
);
expect
(
gl
.
utils
.
setParamInURL
(
'
page
'
,
true
)).
toBe
(
'
?scope=all&page=true
'
);
});
});
});
});
describe
(
'
gl.utils.getParameterByName
'
,
()
=>
{
describe
(
'
gl.utils.getParameterByName
'
,
()
=>
{
beforeEach
(()
=>
{
beforeEach
(()
=>
{
window
.
history
.
pushState
({},
null
,
'
?scope=all&p=2
'
);
window
.
history
.
pushState
({},
null
,
'
?scope=all&p=2
'
);
});
});
afterEach
(()
=>
{
afterEach
(()
=>
{
window
.
history
.
replaceState
({},
null
,
null
);
window
.
history
.
replaceState
({},
null
,
null
);
});
});
it
(
'
should return valid parameter
'
,
()
=>
{
it
(
'
should return valid parameter
'
,
()
=>
{
const
value
=
gl
.
utils
.
getParameterByName
(
'
scope
'
);
const
value
=
gl
.
utils
.
getParameterByName
(
'
scope
'
);
expect
(
gl
.
utils
.
getParameterByName
(
'
p
'
)).
toEqual
(
'
2
'
);
expect
(
gl
.
utils
.
getParameterByName
(
'
p
'
)).
toEqual
(
'
2
'
);
expect
(
value
).
toBe
(
'
all
'
);
expect
(
value
).
toBe
(
'
all
'
);
});
});
it
(
'
should return invalid parameter
'
,
()
=>
{
it
(
'
should return invalid parameter
'
,
()
=>
{
const
value
=
gl
.
utils
.
getParameterByName
(
'
fakeParameter
'
);
const
value
=
gl
.
utils
.
getParameterByName
(
'
fakeParameter
'
);
expect
(
value
).
toBe
(
null
);
expect
(
value
).
toBe
(
null
);
});
});
it
(
'
should return valid paramentes if URL is provided
'
,
()
=>
{
it
(
'
should return valid paramentes if URL is provided
'
,
()
=>
{
let
value
=
gl
.
utils
.
getParameterByName
(
'
foo
'
,
'
http://cocteau.twins/?foo=bar
'
);
let
value
=
gl
.
utils
.
getParameterByName
(
'
foo
'
,
'
http://cocteau.twins/?foo=bar
'
);
expect
(
value
).
toBe
(
'
bar
'
);
expect
(
value
).
toBe
(
'
bar
'
);
value
=
gl
.
utils
.
getParameterByName
(
'
manan
'
,
'
http://cocteau.twins/?foo=bar&manan=canchu
'
);
value
=
gl
.
utils
.
getParameterByName
(
'
manan
'
,
'
http://cocteau.twins/?foo=bar&manan=canchu
'
);
expect
(
value
).
toBe
(
'
canchu
'
);
expect
(
value
).
toBe
(
'
canchu
'
);
});
});
});
});
describe
(
'
gl.utils.normalizedHeaders
'
,
()
=>
{
describe
(
'
gl.utils.normalizedHeaders
'
,
()
=>
{
it
(
'
should upperCase all the header keys to keep them consistent
'
,
()
=>
{
it
(
'
should upperCase all the header keys to keep them consistent
'
,
()
=>
{
const
apiHeaders
=
{
const
apiHeaders
=
{
'
X-Something-Workhorse
'
:
{
workhorse
:
'
ok
'
},
'
X-Something-Workhorse
'
:
{
workhorse
:
'
ok
'
},
'
x-something-nginx
'
:
{
nginx
:
'
ok
'
},
'
x-something-nginx
'
:
{
nginx
:
'
ok
'
},
};
};
const
normalized
=
gl
.
utils
.
normalizeHeaders
(
apiHeaders
);
const
normalized
=
gl
.
utils
.
normalizeHeaders
(
apiHeaders
);
const
WORKHORSE
=
'
X-SOMETHING-WORKHORSE
'
;
const
WORKHORSE
=
'
X-SOMETHING-WORKHORSE
'
;
const
NGINX
=
'
X-SOMETHING-NGINX
'
;
const
NGINX
=
'
X-SOMETHING-NGINX
'
;
expect
(
normalized
[
WORKHORSE
].
workhorse
).
toBe
(
'
ok
'
);
expect
(
normalized
[
WORKHORSE
].
workhorse
).
toBe
(
'
ok
'
);
expect
(
normalized
[
NGINX
].
nginx
).
toBe
(
'
ok
'
);
expect
(
normalized
[
NGINX
].
nginx
).
toBe
(
'
ok
'
);
});
});
});
});
describe
(
'
gl.utils.normalizeCRLFHeaders
'
,
()
=>
{
describe
(
'
gl.utils.normalizeCRLFHeaders
'
,
()
=>
{
beforeEach
(
function
()
{
beforeEach
(
function
()
{
this
.
CLRFHeaders
=
'
a-header: a-value
\n
Another-Header: ANOTHER-VALUE
\n
LaSt-HeAdEr: last-VALUE
'
;
this
.
CLRFHeaders
=
'
a-header: a-value
\n
Another-Header: ANOTHER-VALUE
\n
LaSt-HeAdEr: last-VALUE
'
;
spyOn
(
String
.
prototype
,
'
split
'
).
and
.
callThrough
();
spyOn
(
String
.
prototype
,
'
split
'
).
and
.
callThrough
();
spyOn
(
gl
.
utils
,
'
normalizeHeaders
'
).
and
.
callThrough
();
spyOn
(
gl
.
utils
,
'
normalizeHeaders
'
).
and
.
callThrough
();
this
.
normalizeCRLFHeaders
=
gl
.
utils
.
normalizeCRLFHeaders
(
this
.
CLRFHeaders
);
this
.
normalizeCRLFHeaders
=
gl
.
utils
.
normalizeCRLFHeaders
(
this
.
CLRFHeaders
);
});
});
it
(
'
should split by newline
'
,
function
()
{
it
(
'
should split by newline
'
,
function
()
{
expect
(
String
.
prototype
.
split
).
toHaveBeenCalledWith
(
'
\n
'
);
expect
(
String
.
prototype
.
split
).
toHaveBeenCalledWith
(
'
\n
'
);
});
});
it
(
'
should split by colon+space for each header
'
,
function
()
{
it
(
'
should split by colon+space for each header
'
,
function
()
{
expect
(
String
.
prototype
.
split
.
calls
.
allArgs
().
filter
(
args
=>
args
[
0
]
===
'
:
'
).
length
).
toBe
(
3
);
expect
(
String
.
prototype
.
split
.
calls
.
allArgs
().
filter
(
args
=>
args
[
0
]
===
'
:
'
).
length
).
toBe
(
3
);
});
});
it
(
'
should call gl.utils.normalizeHeaders with a parsed headers object
'
,
function
()
{
it
(
'
should call gl.utils.normalizeHeaders with a parsed headers object
'
,
function
()
{
expect
(
gl
.
utils
.
normalizeHeaders
).
toHaveBeenCalledWith
(
jasmine
.
any
(
Object
));
expect
(
gl
.
utils
.
normalizeHeaders
).
toHaveBeenCalledWith
(
jasmine
.
any
(
Object
));
});
});
it
(
'
should return a normalized headers object
'
,
function
()
{
it
(
'
should return a normalized headers object
'
,
function
()
{
expect
(
this
.
normalizeCRLFHeaders
).
toEqual
({
expect
(
this
.
normalizeCRLFHeaders
).
toEqual
({
'
A-HEADER
'
:
'
a-value
'
,
'
A-HEADER
'
:
'
a-value
'
,
'
ANOTHER-HEADER
'
:
'
ANOTHER-VALUE
'
,
'
ANOTHER-HEADER
'
:
'
ANOTHER-VALUE
'
,
'
LAST-HEADER
'
:
'
last-VALUE
'
,
'
LAST-HEADER
'
:
'
last-VALUE
'
,
});
});
});
});
});
});
describe
(
'
gl.utils.parseIntPagination
'
,
()
=>
{
describe
(
'
gl.utils.parseIntPagination
'
,
()
=>
{
it
(
'
should parse to integers all string values and return pagination object
'
,
()
=>
{
it
(
'
should parse to integers all string values and return pagination object
'
,
()
=>
{
const
pagination
=
{
const
pagination
=
{
'
X-PER-PAGE
'
:
10
,
'
X-PER-PAGE
'
:
10
,
'
X-PAGE
'
:
2
,
'
X-PAGE
'
:
2
,
'
X-TOTAL
'
:
30
,
'
X-TOTAL
'
:
30
,
'
X-TOTAL-PAGES
'
:
3
,
'
X-TOTAL-PAGES
'
:
3
,
'
X-NEXT-PAGE
'
:
3
,
'
X-NEXT-PAGE
'
:
3
,
'
X-PREV-PAGE
'
:
1
,
'
X-PREV-PAGE
'
:
1
,
};
};
const
expectedPagination
=
{
const
expectedPagination
=
{
perPage
:
10
,
perPage
:
10
,
page
:
2
,
page
:
2
,
total
:
30
,
total
:
30
,
totalPages
:
3
,
totalPages
:
3
,
nextPage
:
3
,
nextPage
:
3
,
previousPage
:
1
,
previousPage
:
1
,
};
};
expect
(
gl
.
utils
.
parseIntPagination
(
pagination
)).
toEqual
(
expectedPagination
);
expect
(
gl
.
utils
.
parseIntPagination
(
pagination
)).
toEqual
(
expectedPagination
);
});
});
});
});
describe
(
'
gl.utils.isMetaClick
'
,
()
=>
{
describe
(
'
gl.utils.isMetaClick
'
,
()
=>
{
it
(
'
should identify meta click on Windows/Linux
'
,
()
=>
{
it
(
'
should identify meta click on Windows/Linux
'
,
()
=>
{
const
e
=
{
const
e
=
{
metaKey
:
false
,
metaKey
:
false
,
ctrlKey
:
true
,
ctrlKey
:
true
,
which
:
1
,
which
:
1
,
};
};
expect
(
gl
.
utils
.
isMetaClick
(
e
)).
toBe
(
true
);
expect
(
gl
.
utils
.
isMetaClick
(
e
)).
toBe
(
true
);
});
});
it
(
'
should identify meta click on macOS
'
,
()
=>
{
it
(
'
should identify meta click on macOS
'
,
()
=>
{
const
e
=
{
const
e
=
{
metaKey
:
true
,
metaKey
:
true
,
ctrlKey
:
false
,
ctrlKey
:
false
,
which
:
1
,
which
:
1
,
};
};
expect
(
gl
.
utils
.
isMetaClick
(
e
)).
toBe
(
true
);
expect
(
gl
.
utils
.
isMetaClick
(
e
)).
toBe
(
true
);
});
});
it
(
'
should identify as meta click on middle-click or Mouse-wheel click
'
,
()
=>
{
it
(
'
should identify as meta click on middle-click or Mouse-wheel click
'
,
()
=>
{
const
e
=
{
const
e
=
{
metaKey
:
false
,
metaKey
:
false
,
ctrlKey
:
false
,
ctrlKey
:
false
,
which
:
2
,
which
:
2
,
};
};
expect
(
gl
.
utils
.
isMetaClick
(
e
)).
toBe
(
true
);
expect
(
gl
.
utils
.
isMetaClick
(
e
)).
toBe
(
true
);
});
});
});
describe
(
'
backOff
'
,
()
=>
{
beforeEach
(()
=>
{
// shortcut our timeouts otherwise these tests will take a long time to finish
const
origSetTimeout
=
window
.
setTimeout
;
spyOn
(
window
,
'
setTimeout
'
).
and
.
callFake
(
cb
=>
origSetTimeout
(
cb
,
0
));
});
});
describe
(
'
gl.utils.backOff
'
,
()
=>
{
it
(
'
solves the promise from the callback
'
,
(
done
)
=>
{
beforeEach
(()
=>
{
const
expectedResponseValue
=
'
Success!
'
;
// shortcut our timeouts otherwise these tests will take a long time to finish
commonUtils
.
backOff
((
next
,
stop
)
=>
(
const
origSetTimeout
=
window
.
setTimeout
;
new
Promise
((
resolve
)
=>
{
spyOn
(
window
,
'
setTimeout
'
).
and
.
callFake
(
cb
=>
origSetTimeout
(
cb
,
0
));
resolve
(
expectedResponseValue
);
}).
then
((
resp
)
=>
{
stop
(
resp
);
})
)).
then
((
respBackoff
)
=>
{
expect
(
respBackoff
).
toBe
(
expectedResponseValue
);
done
();
});
});
});
it
(
'
solves the promise from the callback
'
,
(
done
)
=>
{
it
(
'
catches the rejected promise from the callback
'
,
(
done
)
=>
{
const
expectedResponseValue
=
'
Success
!
'
;
const
errorMessage
=
'
Mistakes were made
!
'
;
gl
.
utils
.
backOff
((
next
,
stop
)
=>
(
commonUtils
.
backOff
((
next
,
stop
)
=>
{
new
Promise
((
resolve
)
=>
{
new
Promise
((
resolve
,
reject
)
=>
{
resolve
(
expectedResponseValue
);
reject
(
new
Error
(
errorMessage
)
);
}).
then
((
resp
)
=>
{
}).
then
((
resp
)
=>
{
stop
(
resp
);
stop
(
resp
);
})
}).
catch
(
err
=>
stop
(
err
));
)).
then
((
respBackoff
)
=>
{
}).
catch
((
errBackoffResp
)
=>
{
expect
(
respBackoff
).
toBe
(
expectedResponseVal
ue
);
expect
(
errBackoffResp
instanceof
Error
).
toBe
(
tr
ue
);
done
(
);
expect
(
errBackoffResp
.
message
).
toBe
(
errorMessage
);
}
);
done
(
);
});
});
});
it
(
'
catches the rejected promise from the callback
'
,
(
done
)
=>
{
it
(
'
solves the promise correctly after retrying a third time
'
,
(
done
)
=>
{
const
errorMessage
=
'
Mistakes were made!
'
;
let
numberOfCalls
=
1
;
gl
.
utils
.
backOff
((
next
,
stop
)
=>
{
const
expectedResponseValue
=
'
Success!
'
;
new
Promise
((
resolve
,
reject
)
=>
{
commonUtils
.
backOff
((
next
,
stop
)
=>
(
reject
(
new
Error
(
errorMessage
));
Promise
.
resolve
(
expectedResponseValue
)
}).
then
((
resp
)
=>
{
.
then
((
resp
)
=>
{
stop
(
resp
);
if
(
numberOfCalls
<
3
)
{
}).
catch
(
err
=>
stop
(
err
));
numberOfCalls
+=
1
;
}).
catch
((
errBackoffResp
)
=>
{
next
();
expect
(
errBackoffResp
instanceof
Error
).
toBe
(
true
);
}
else
{
expect
(
errBackoffResp
.
message
).
toBe
(
errorMessage
);
stop
(
resp
);
done
();
}
});
})
)).
then
((
respBackoff
)
=>
{
const
timeouts
=
window
.
setTimeout
.
calls
.
allArgs
().
map
(([,
timeout
])
=>
timeout
);
expect
(
timeouts
).
toEqual
([
2000
,
4000
]);
expect
(
respBackoff
).
toBe
(
expectedResponseValue
);
done
();
});
});
});
it
(
'
solves the promise correctly after retrying a third time
'
,
(
done
)
=>
{
it
(
'
rejects the backOff promise after timing out
'
,
(
done
)
=>
{
let
numberOfCalls
=
1
;
commonUtils
.
backOff
(
next
=>
next
(),
64000
)
const
expectedResponseValue
=
'
Success!
'
;
.
catch
((
errBackoffResp
)
=>
{
gl
.
utils
.
backOff
((
next
,
stop
)
=>
(
Promise
.
resolve
(
expectedResponseValue
)
.
then
((
resp
)
=>
{
if
(
numberOfCalls
<
3
)
{
numberOfCalls
+=
1
;
next
();
}
else
{
stop
(
resp
);
}
})
)).
then
((
respBackoff
)
=>
{
const
timeouts
=
window
.
setTimeout
.
calls
.
allArgs
().
map
(([,
timeout
])
=>
timeout
);
const
timeouts
=
window
.
setTimeout
.
calls
.
allArgs
().
map
(([,
timeout
])
=>
timeout
);
expect
(
timeouts
).
toEqual
([
2000
,
4000
]);
expect
(
timeouts
).
toEqual
([
2000
,
4000
,
8000
,
16000
,
32000
,
32000
]);
expect
(
respBackoff
).
toBe
(
expectedResponseValue
);
expect
(
errBackoffResp
instanceof
Error
).
toBe
(
true
);
expect
(
errBackoffResp
.
message
).
toBe
(
'
BACKOFF_TIMEOUT
'
);
done
();
done
();
});
});
});
it
(
'
rejects the backOff promise after timing out
'
,
(
done
)
=>
{
gl
.
utils
.
backOff
(
next
=>
next
(),
64000
)
.
catch
((
errBackoffResp
)
=>
{
const
timeouts
=
window
.
setTimeout
.
calls
.
allArgs
().
map
(([,
timeout
])
=>
timeout
);
expect
(
timeouts
).
toEqual
([
2000
,
4000
,
8000
,
16000
,
32000
,
32000
]);
expect
(
errBackoffResp
instanceof
Error
).
toBe
(
true
);
expect
(
errBackoffResp
.
message
).
toBe
(
'
BACKOFF_TIMEOUT
'
);
done
();
});
});
});
});
});
describe
(
'
gl.utils.setFavicon
'
,
()
=>
{
describe
(
'
gl.utils.setFavicon
'
,
()
=>
{
it
(
'
should set page favicon to provided favicon
'
,
()
=>
{
it
(
'
should set page favicon to provided favicon
'
,
()
=>
{
const
faviconPath
=
'
//custom_favicon
'
;
const
faviconPath
=
'
//custom_favicon
'
;
const
fakeLink
=
{
const
fakeLink
=
{
setAttribute
()
{},
setAttribute
()
{},
};
};
spyOn
(
window
.
document
,
'
getElementById
'
).
and
.
callFake
(()
=>
fakeLink
);
spyOn
(
window
.
document
,
'
getElementById
'
).
and
.
callFake
(()
=>
fakeLink
);
spyOn
(
fakeLink
,
'
setAttribute
'
).
and
.
callFake
((
attr
,
val
)
=>
{
spyOn
(
fakeLink
,
'
setAttribute
'
).
and
.
callFake
((
attr
,
val
)
=>
{
expect
(
attr
).
toEqual
(
'
href
'
);
expect
(
attr
).
toEqual
(
'
href
'
);
expect
(
val
.
indexOf
(
faviconPath
)
>
-
1
).
toBe
(
true
);
expect
(
val
.
indexOf
(
faviconPath
)
>
-
1
).
toBe
(
true
);
});
gl
.
utils
.
setFavicon
(
faviconPath
);
});
});
gl
.
utils
.
setFavicon
(
faviconPath
);
});
});
});
describe
(
'
gl.utils.resetFavicon
'
,
()
=>
{
describe
(
'
gl.utils.resetFavicon
'
,
()
=>
{
it
(
'
should reset page favicon to tanuki
'
,
()
=>
{
it
(
'
should reset page favicon to tanuki
'
,
()
=>
{
const
fakeLink
=
{
const
fakeLink
=
{
setAttribute
()
{},
setAttribute
()
{},
};
};
spyOn
(
window
.
document
,
'
getElementById
'
).
and
.
callFake
(()
=>
fakeLink
);
spyOn
(
window
.
document
,
'
getElementById
'
).
and
.
callFake
(()
=>
fakeLink
);
spyOn
(
fakeLink
,
'
setAttribute
'
).
and
.
callFake
((
attr
,
val
)
=>
{
spyOn
(
fakeLink
,
'
setAttribute
'
).
and
.
callFake
((
attr
,
val
)
=>
{
expect
(
attr
).
toEqual
(
'
href
'
);
expect
(
attr
).
toEqual
(
'
href
'
);
expect
(
val
).
toMatch
(
/favicon/
);
expect
(
val
).
toMatch
(
/favicon/
);
});
gl
.
utils
.
resetFavicon
();
});
});
gl
.
utils
.
resetFavicon
();
});
});
});
describe
(
'
gl.utils.setCiStatusFavicon
'
,
()
=>
{
describe
(
'
gl.utils.setCiStatusFavicon
'
,
()
=>
{
it
(
'
should set page favicon to CI status favicon based on provided status
'
,
()
=>
{
it
(
'
should set page favicon to CI status favicon based on provided status
'
,
()
=>
{
const
BUILD_URL
=
`
${
gl
.
TEST_HOST
}
/frontend-fixtures/builds-project/-/jobs/1/status.json`
;
const
BUILD_URL
=
`
${
gl
.
TEST_HOST
}
/frontend-fixtures/builds-project/-/jobs/1/status.json`
;
const
FAVICON_PATH
=
'
//icon_status_success
'
;
const
FAVICON_PATH
=
'
//icon_status_success
'
;
const
spySetFavicon
=
spyOn
(
gl
.
utils
,
'
setFavicon
'
).
and
.
stub
();
const
spySetFavicon
=
spyOn
(
gl
.
utils
,
'
setFavicon
'
).
and
.
stub
();
const
spyResetFavicon
=
spyOn
(
gl
.
utils
,
'
resetFavicon
'
).
and
.
stub
();
const
spyResetFavicon
=
spyOn
(
gl
.
utils
,
'
resetFavicon
'
).
and
.
stub
();
spyOn
(
$
,
'
ajax
'
).
and
.
callFake
(
function
(
options
)
{
spyOn
(
$
,
'
ajax
'
).
and
.
callFake
(
function
(
options
)
{
options
.
success
({
favicon
:
FAVICON_PATH
});
options
.
success
({
favicon
:
FAVICON_PATH
});
expect
(
spySetFavicon
).
toHaveBeenCalledWith
(
FAVICON_PATH
);
expect
(
spySetFavicon
).
toHaveBeenCalledWith
(
FAVICON_PATH
);
options
.
success
();
options
.
success
();
expect
(
spyResetFavicon
).
toHaveBeenCalled
();
expect
(
spyResetFavicon
).
toHaveBeenCalled
();
options
.
error
();
options
.
error
();
expect
(
spyResetFavicon
).
toHaveBeenCalled
();
expect
(
spyResetFavicon
).
toHaveBeenCalled
();
});
});
gl
.
utils
.
setCiStatusFavicon
(
BUILD_URL
);
gl
.
utils
.
setCiStatusFavicon
(
BUILD_URL
);
});
});
});
});
describe
(
'
gl.utils.
ajaxPost
'
,
()
=>
{
describe
(
'
ajaxPost
'
,
()
=>
{
it
(
'
should perform `$.ajax` call and do `POST` request
'
,
()
=>
{
it
(
'
should perform `$.ajax` call and do `POST` request
'
,
()
=>
{
const
requestURL
=
'
/some/random/api
'
;
const
requestURL
=
'
/some/random/api
'
;
const
data
=
{
keyname
:
'
value
'
};
const
data
=
{
keyname
:
'
value
'
};
const
ajaxSpy
=
spyOn
(
$
,
'
ajax
'
).
and
.
callFake
(()
=>
{});
const
ajaxSpy
=
spyOn
(
$
,
'
ajax
'
).
and
.
callFake
(()
=>
{});
gl
.
utils
.
ajaxPost
(
requestURL
,
data
);
commonUtils
.
ajaxPost
(
requestURL
,
data
);
expect
(
ajaxSpy
.
calls
.
allArgs
()[
0
][
0
].
type
).
toEqual
(
'
POST
'
);
expect
(
ajaxSpy
.
calls
.
allArgs
()[
0
][
0
].
type
).
toEqual
(
'
POST
'
);
});
});
});
});
});
})
()
;
});
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