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
29e0cb4b
Commit
29e0cb4b
authored
Mar 13, 2017
by
Mike Greiling
Committed by
Alfredo Sumaran
Mar 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Organize our polyfills and standardize on core-js
parent
88206d67
Changes
36
Show whitespace changes
Inline
Side-by-side
Showing
36 changed files
with
125 additions
and
218 deletions
+125
-218
app/assets/javascripts/behaviors/quick_submit.js
app/assets/javascripts/behaviors/quick_submit.js
+1
-1
app/assets/javascripts/behaviors/requires_input.js
app/assets/javascripts/behaviors/requires_input.js
+1
-1
app/assets/javascripts/commons/bootstrap.js
app/assets/javascripts/commons/bootstrap.js
+7
-1
app/assets/javascripts/commons/index.js
app/assets/javascripts/commons/index.js
+1
-0
app/assets/javascripts/commons/polyfills.js
app/assets/javascripts/commons/polyfills.js
+10
-0
app/assets/javascripts/commons/polyfills/custom_event.js
app/assets/javascripts/commons/polyfills/custom_event.js
+9
-0
app/assets/javascripts/commons/polyfills/element.js
app/assets/javascripts/commons/polyfills/element.js
+20
-0
app/assets/javascripts/droplab/droplab_ajax.js
app/assets/javascripts/droplab/droplab_ajax.js
+3
-0
app/assets/javascripts/droplab/droplab_ajax_filter.js
app/assets/javascripts/droplab/droplab_ajax_filter.js
+3
-0
app/assets/javascripts/extensions/array.js
app/assets/javascripts/extensions/array.js
+6
-22
app/assets/javascripts/extensions/custom_event.js
app/assets/javascripts/extensions/custom_event.js
+0
-12
app/assets/javascripts/extensions/jquery.js
app/assets/javascripts/extensions/jquery.js
+0
-16
app/assets/javascripts/extensions/object.js
app/assets/javascripts/extensions/object.js
+0
-26
app/assets/javascripts/extensions/string.js
app/assets/javascripts/extensions/string.js
+0
-2
app/assets/javascripts/filtered_search/filtered_search_dropdown_manager.js
...ripts/filtered_search/filtered_search_dropdown_manager.js
+4
-0
app/assets/javascripts/filtered_search/filtered_search_manager.js
...ts/javascripts/filtered_search/filtered_search_manager.js
+3
-2
app/assets/javascripts/main.js
app/assets/javascripts/main.js
+0
-8
app/assets/javascripts/monitoring/prometheus_graph.js
app/assets/javascripts/monitoring/prometheus_graph.js
+4
-2
changelogs/unreleased/use-corejs-polyfills.yml
changelogs/unreleased/use-corejs-polyfills.yml
+4
-0
package.json
package.json
+1
-3
spec/javascripts/awards_handler_spec.js
spec/javascripts/awards_handler_spec.js
+0
-3
spec/javascripts/blob/create_branch_dropdown_spec.js
spec/javascripts/blob/create_branch_dropdown_spec.js
+0
-2
spec/javascripts/blob/target_branch_dropdown_spec.js
spec/javascripts/blob/target_branch_dropdown_spec.js
+0
-2
spec/javascripts/boards/board_new_issue_spec.js
spec/javascripts/boards/board_new_issue_spec.js
+0
-1
spec/javascripts/boards/boards_store_spec.js
spec/javascripts/boards/boards_store_spec.js
+0
-1
spec/javascripts/bootstrap_jquery_spec.js
spec/javascripts/bootstrap_jquery_spec.js
+2
-2
spec/javascripts/extensions/array_spec.js
spec/javascripts/extensions/array_spec.js
+0
-23
spec/javascripts/extensions/element_spec.js
spec/javascripts/extensions/element_spec.js
+0
-38
spec/javascripts/extensions/object_spec.js
spec/javascripts/extensions/object_spec.js
+0
-25
spec/javascripts/filtered_search/filtered_search_manager_spec.js
...vascripts/filtered_search/filtered_search_manager_spec.js
+4
-1
spec/javascripts/gl_emoji_spec.js
spec/javascripts/gl_emoji_spec.js
+0
-3
spec/javascripts/monitoring/prometheus_graph_spec.js
spec/javascripts/monitoring/prometheus_graph_spec.js
+0
-3
spec/javascripts/polyfills/element_spec.js
spec/javascripts/polyfills/element_spec.js
+36
-0
spec/javascripts/right_sidebar_spec.js
spec/javascripts/right_sidebar_spec.js
+2
-2
spec/javascripts/shortcuts_issuable_spec.js
spec/javascripts/shortcuts_issuable_spec.js
+2
-6
yarn.lock
yarn.lock
+2
-10
No files found.
app/assets/javascripts/behaviors/quick_submit.js
View file @
29e0cb4b
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
// "Meta+Enter" (Mac) or "Ctrl+Enter" (Linux/Windows) key combination, the form
// "Meta+Enter" (Mac) or "Ctrl+Enter" (Linux/Windows) key combination, the form
// is submitted.
// is submitted.
//
//
require
(
'
../extensions/jquery
'
)
;
import
'
../commons/bootstrap
'
;
//
//
// ### Example Markup
// ### Example Markup
...
...
app/assets/javascripts/behaviors/requires_input.js
View file @
29e0cb4b
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
// When called on a form with input fields with the `required` attribute, the
// When called on a form with input fields with the `required` attribute, the
// form's submit button will be disabled until all required fields have values.
// form's submit button will be disabled until all required fields have values.
//
//
require
(
'
../extensions/jquery
'
)
;
import
'
../commons/bootstrap
'
;
//
//
// ### Example Markup
// ### Example Markup
...
...
app/assets/javascripts/commons/bootstrap.js
View file @
29e0cb4b
import
'
jquery
'
;
import
$
from
'
jquery
'
;
// bootstrap jQuery plugins
// bootstrap jQuery plugins
import
'
bootstrap-sass/assets/javascripts/bootstrap/affix
'
;
import
'
bootstrap-sass/assets/javascripts/bootstrap/affix
'
;
...
@@ -8,3 +8,9 @@ import 'bootstrap-sass/assets/javascripts/bootstrap/modal';
...
@@ -8,3 +8,9 @@ import 'bootstrap-sass/assets/javascripts/bootstrap/modal';
import
'
bootstrap-sass/assets/javascripts/bootstrap/tab
'
;
import
'
bootstrap-sass/assets/javascripts/bootstrap/tab
'
;
import
'
bootstrap-sass/assets/javascripts/bootstrap/transition
'
;
import
'
bootstrap-sass/assets/javascripts/bootstrap/transition
'
;
import
'
bootstrap-sass/assets/javascripts/bootstrap/tooltip
'
;
import
'
bootstrap-sass/assets/javascripts/bootstrap/tooltip
'
;
// custom jQuery functions
$
.
fn
.
extend
({
disable
()
{
return
$
(
this
).
attr
(
'
disabled
'
,
'
disabled
'
).
addClass
(
'
disabled
'
);
},
enable
()
{
return
$
(
this
).
removeAttr
(
'
disabled
'
).
removeClass
(
'
disabled
'
);
},
});
app/assets/javascripts/commons/index.js
View file @
29e0cb4b
import
'
./polyfills
'
;
import
'
./jquery
'
;
import
'
./jquery
'
;
import
'
./bootstrap
'
;
import
'
./bootstrap
'
;
app/assets/javascripts/commons/polyfills.js
0 → 100644
View file @
29e0cb4b
// ECMAScript polyfills
import
'
core-js/fn/array/find
'
;
import
'
core-js/fn/object/assign
'
;
import
'
core-js/fn/promise
'
;
import
'
core-js/fn/string/code-point-at
'
;
import
'
core-js/fn/string/from-code-point
'
;
// Browser polyfills
import
'
./polyfills/custom_event
'
;
import
'
./polyfills/element
'
;
app/assets/javascripts/commons/polyfills/custom_event.js
0 → 100644
View file @
29e0cb4b
if
(
typeof
window
.
CustomEvent
!==
'
function
'
)
{
window
.
CustomEvent
=
function
CustomEvent
(
event
,
params
)
{
const
evt
=
document
.
createEvent
(
'
CustomEvent
'
);
const
evtParams
=
params
||
{
bubbles
:
false
,
cancelable
:
false
,
detail
:
undefined
};
evt
.
initCustomEvent
(
event
,
evtParams
.
bubbles
,
evtParams
.
cancelable
,
evtParams
.
detail
);
return
evt
;
};
window
.
CustomEvent
.
prototype
=
Event
;
}
app/assets/javascripts/
extension
s/element.js
→
app/assets/javascripts/
commons/polyfill
s/element.js
View file @
29e0cb4b
/* global Element */
Element
.
prototype
.
closest
=
Element
.
prototype
.
closest
||
/* eslint-disable consistent-return, max-len, no-empty, func-names */
function
closest
(
selector
,
selectedElement
=
this
)
{
if
(
!
selectedElement
)
return
null
;
Element
.
prototype
.
closest
=
Element
.
prototype
.
closest
||
function
closest
(
selector
,
selectedElement
=
this
)
{
return
selectedElement
.
matches
(
selector
)
?
if
(
!
selectedElement
)
return
;
selectedElement
:
return
selectedElement
.
matches
(
selector
)
?
selectedElement
:
Element
.
prototype
.
closest
(
selector
,
selectedElement
.
parentElement
);
Element
.
prototype
.
closest
(
selector
,
selectedElement
.
parentElement
);
};
};
Element
.
prototype
.
matches
=
Element
.
prototype
.
matches
||
Element
.
prototype
.
matches
=
Element
.
prototype
.
matches
||
Element
.
prototype
.
matchesSelector
||
Element
.
prototype
.
matchesSelector
||
...
@@ -12,9 +12,9 @@ Element.prototype.matches = Element.prototype.matches ||
...
@@ -12,9 +12,9 @@ Element.prototype.matches = Element.prototype.matches ||
Element
.
prototype
.
msMatchesSelector
||
Element
.
prototype
.
msMatchesSelector
||
Element
.
prototype
.
oMatchesSelector
||
Element
.
prototype
.
oMatchesSelector
||
Element
.
prototype
.
webkitMatchesSelector
||
Element
.
prototype
.
webkitMatchesSelector
||
function
(
s
)
{
function
matches
(
selector
)
{
const
matches
=
(
this
.
document
||
this
.
ownerDocument
).
querySelectorAll
(
s
);
const
elms
=
(
this
.
document
||
this
.
ownerDocument
).
querySelectorAll
(
selector
);
let
i
=
matche
s
.
length
-
1
;
let
i
=
elm
s
.
length
-
1
;
while
(
i
>=
0
&&
matche
s
.
item
(
i
)
!==
this
)
{
i
-=
1
;
}
while
(
i
>=
0
&&
elm
s
.
item
(
i
)
!==
this
)
{
i
-=
1
;
}
return
i
>
-
1
;
return
i
>
-
1
;
};
};
app/assets/javascripts/droplab/droplab_ajax.js
View file @
29e0cb4b
...
@@ -74,6 +74,9 @@ require('../window')(function(w){
...
@@ -74,6 +74,9 @@ require('../window')(function(w){
this
.
_loadUrlData
(
config
.
endpoint
)
this
.
_loadUrlData
(
config
.
endpoint
)
.
then
(
function
(
d
)
{
.
then
(
function
(
d
)
{
self
.
_loadData
(
d
,
config
,
self
);
self
.
_loadData
(
d
,
config
,
self
);
},
function
(
xhrError
)
{
// TODO: properly handle errors due to XHR cancellation
return
;
}).
catch
(
function
(
e
)
{
}).
catch
(
function
(
e
)
{
throw
new
droplabAjaxException
(
e
.
message
||
e
);
throw
new
droplabAjaxException
(
e
.
message
||
e
);
});
});
...
...
app/assets/javascripts/droplab/droplab_ajax_filter.js
View file @
29e0cb4b
...
@@ -82,6 +82,9 @@ require('../window')(function(w){
...
@@ -82,6 +82,9 @@ require('../window')(function(w){
this
.
_loadUrlData
(
url
)
this
.
_loadUrlData
(
url
)
.
then
(
function
(
data
)
{
.
then
(
function
(
data
)
{
self
.
_loadData
(
data
,
config
,
self
);
self
.
_loadData
(
data
,
config
,
self
);
},
function
(
xhrError
)
{
// TODO: properly handle errors due to XHR cancellation
return
;
});
});
}
}
},
},
...
...
app/assets/javascripts/extensions/array.js
View file @
29e0cb4b
/
* eslint-disable no-extend-native, func-names, space-before-function-paren, space-infix-ops, strict, max-len */
/
/ TODO: remove this
'
use strict
'
;
// eslint-disable-next-line no-extend-native
Array
.
prototype
.
first
=
function
first
()
{
Array
.
prototype
.
first
=
function
()
{
return
this
[
0
];
return
this
[
0
];
};
};
Array
.
prototype
.
last
=
function
()
{
// eslint-disable-next-line no-extend-native
return
this
[
this
.
length
-
1
];
Array
.
prototype
.
last
=
function
last
()
{
};
return
this
[
this
.
length
-
1
];
Array
.
prototype
.
find
=
Array
.
prototype
.
find
||
function
(
predicate
,
...
args
)
{
if
(
!
this
)
throw
new
TypeError
(
'
Array.prototype.find called on null or undefined
'
);
if
(
typeof
predicate
!==
'
function
'
)
throw
new
TypeError
(
'
predicate must be a function
'
);
const
list
=
Object
(
this
);
const
thisArg
=
args
[
1
];
let
value
=
{};
for
(
let
i
=
0
;
i
<
list
.
length
;
i
+=
1
)
{
value
=
list
[
i
];
if
(
predicate
.
call
(
thisArg
,
value
,
i
,
list
))
return
value
;
}
return
undefined
;
};
};
app/assets/javascripts/extensions/custom_event.js
deleted
100644 → 0
View file @
88206d67
/* global CustomEvent */
/* eslint-disable no-global-assign */
// Custom event support for IE
CustomEvent
=
function
CustomEvent
(
event
,
parameters
)
{
const
params
=
parameters
||
{
bubbles
:
false
,
cancelable
:
false
,
detail
:
undefined
};
const
evt
=
document
.
createEvent
(
'
CustomEvent
'
);
evt
.
initCustomEvent
(
event
,
params
.
bubbles
,
params
.
cancelable
,
params
.
detail
);
return
evt
;
};
CustomEvent
.
prototype
=
window
.
Event
.
prototype
;
app/assets/javascripts/extensions/jquery.js
deleted
100644 → 0
View file @
88206d67
/* eslint-disable func-names, space-before-function-paren, object-shorthand, comma-dangle, max-len */
// Disable an element and add the 'disabled' Bootstrap class
(
function
()
{
$
.
fn
.
extend
({
disable
:
function
()
{
return
$
(
this
).
attr
(
'
disabled
'
,
'
disabled
'
).
addClass
(
'
disabled
'
);
}
});
// Enable an element and remove the 'disabled' Bootstrap class
$
.
fn
.
extend
({
enable
:
function
()
{
return
$
(
this
).
removeAttr
(
'
disabled
'
).
removeClass
(
'
disabled
'
);
}
});
}).
call
(
window
);
app/assets/javascripts/extensions/object.js
deleted
100644 → 0
View file @
88206d67
/* eslint-disable no-restricted-syntax */
// Adapted from https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Object/assign#Polyfill
if
(
typeof
Object
.
assign
!==
'
function
'
)
{
Object
.
assign
=
function
assign
(
target
,
...
args
)
{
if
(
target
==
null
)
{
// TypeError if undefined or null
throw
new
TypeError
(
'
Cannot convert undefined or null to object
'
);
}
const
to
=
Object
(
target
);
for
(
let
index
=
0
;
index
<
args
.
length
;
index
+=
1
)
{
const
nextSource
=
args
[
index
];
if
(
nextSource
!=
null
)
{
// Skip over if undefined or null
for
(
const
nextKey
in
nextSource
)
{
// Avoid bugs when hasOwnProperty is shadowed
if
(
Object
.
prototype
.
hasOwnProperty
.
call
(
nextSource
,
nextKey
))
{
to
[
nextKey
]
=
nextSource
[
nextKey
];
}
}
}
}
return
to
;
};
}
app/assets/javascripts/extensions/string.js
deleted
100644 → 0
View file @
88206d67
import
'
string.prototype.codepointat
'
;
import
'
string.fromcodepoint
'
;
app/assets/javascripts/filtered_search/filtered_search_dropdown_manager.js
View file @
29e0cb4b
...
@@ -162,6 +162,10 @@
...
@@ -162,6 +162,10 @@
}
}
resetDropdowns
()
{
resetDropdowns
()
{
if
(
!
this
.
currentDropdown
)
{
return
;
}
// Force current dropdown to hide
// Force current dropdown to hide
this
.
mapping
[
this
.
currentDropdown
].
reference
.
hideDropdown
();
this
.
mapping
[
this
.
currentDropdown
].
reference
.
hideDropdown
();
...
...
app/assets/javascripts/filtered_search/filtered_search_manager.js
View file @
29e0cb4b
...
@@ -38,7 +38,8 @@
...
@@ -38,7 +38,8 @@
this
.
editTokenWrapper
=
this
.
editToken
.
bind
(
this
);
this
.
editTokenWrapper
=
this
.
editToken
.
bind
(
this
);
this
.
tokenChange
=
this
.
tokenChange
.
bind
(
this
);
this
.
tokenChange
=
this
.
tokenChange
.
bind
(
this
);
this
.
filteredSearchInput
.
form
.
addEventListener
(
'
submit
'
,
this
.
handleFormSubmit
);
this
.
filteredSearchInputForm
=
this
.
filteredSearchInput
.
form
;
this
.
filteredSearchInputForm
.
addEventListener
(
'
submit
'
,
this
.
handleFormSubmit
);
this
.
filteredSearchInput
.
addEventListener
(
'
input
'
,
this
.
setDropdownWrapper
);
this
.
filteredSearchInput
.
addEventListener
(
'
input
'
,
this
.
setDropdownWrapper
);
this
.
filteredSearchInput
.
addEventListener
(
'
input
'
,
this
.
toggleClearSearchButtonWrapper
);
this
.
filteredSearchInput
.
addEventListener
(
'
input
'
,
this
.
toggleClearSearchButtonWrapper
);
this
.
filteredSearchInput
.
addEventListener
(
'
input
'
,
this
.
handleInputPlaceholderWrapper
);
this
.
filteredSearchInput
.
addEventListener
(
'
input
'
,
this
.
handleInputPlaceholderWrapper
);
...
@@ -56,7 +57,7 @@
...
@@ -56,7 +57,7 @@
}
}
unbindEvents
()
{
unbindEvents
()
{
this
.
filteredSearchInput
.
f
orm
.
removeEventListener
(
'
submit
'
,
this
.
handleFormSubmit
);
this
.
filteredSearchInput
F
orm
.
removeEventListener
(
'
submit
'
,
this
.
handleFormSubmit
);
this
.
filteredSearchInput
.
removeEventListener
(
'
input
'
,
this
.
setDropdownWrapper
);
this
.
filteredSearchInput
.
removeEventListener
(
'
input
'
,
this
.
setDropdownWrapper
);
this
.
filteredSearchInput
.
removeEventListener
(
'
input
'
,
this
.
toggleClearSearchButtonWrapper
);
this
.
filteredSearchInput
.
removeEventListener
(
'
input
'
,
this
.
toggleClearSearchButtonWrapper
);
this
.
filteredSearchInput
.
removeEventListener
(
'
input
'
,
this
.
handleInputPlaceholderWrapper
);
this
.
filteredSearchInput
.
removeEventListener
(
'
input
'
,
this
.
handleInputPlaceholderWrapper
);
...
...
app/assets/javascripts/main.js
View file @
29e0cb4b
...
@@ -16,17 +16,9 @@ import Sortable from 'vendor/Sortable';
...
@@ -16,17 +16,9 @@ import Sortable from 'vendor/Sortable';
import
'
mousetrap
'
;
import
'
mousetrap
'
;
import
'
mousetrap/plugins/pause/mousetrap-pause
'
;
import
'
mousetrap/plugins/pause/mousetrap-pause
'
;
import
'
vendor/fuzzaldrin-plus
'
;
import
'
vendor/fuzzaldrin-plus
'
;
import
promisePolyfill
from
'
es6-promise
'
;
// extensions
// extensions
import
'
./extensions/string
'
;
import
'
./extensions/array
'
;
import
'
./extensions/array
'
;
import
'
./extensions/custom_event
'
;
import
'
./extensions/element
'
;
import
'
./extensions/jquery
'
;
import
'
./extensions/object
'
;
promisePolyfill
.
polyfill
();
// expose common libraries as globals (TODO: remove these)
// expose common libraries as globals (TODO: remove these)
window
.
jQuery
=
jQuery
;
window
.
jQuery
=
jQuery
;
...
...
app/assets/javascripts/monitoring/prometheus_graph.js
View file @
29e0cb4b
/* eslint-disable no-new*/
/* eslint-disable no-new */
/* global Flash */
import
d3
from
'
d3
'
;
import
d3
from
'
d3
'
;
import
_
from
'
underscore
'
;
import
_
from
'
underscore
'
;
import
statusCodes
from
'
~/lib/utils/http_status
'
;
import
statusCodes
from
'
~/lib/utils/http_status
'
;
import
'
~/lib/utils/common_utils
'
;
import
'
~/lib/utils/common_utils
'
;
import
Flash
from
'
~/flash
'
;
import
'
~/flash
'
;
const
prometheusGraphsContainer
=
'
.prometheus-graph
'
;
const
prometheusGraphsContainer
=
'
.prometheus-graph
'
;
const
metricsEndpoint
=
'
metrics.json
'
;
const
metricsEndpoint
=
'
metrics.json
'
;
...
...
changelogs/unreleased/use-corejs-polyfills.yml
0 → 100644
View file @
29e0cb4b
---
title
:
Standardize on core-js for es2015 polyfills
merge_request
:
9749
author
:
package.json
View file @
29e0cb4b
...
@@ -17,11 +17,11 @@
...
@@ -17,11 +17,11 @@
"
babel-preset-stage-2
"
:
"
^6.22.0
"
,
"
babel-preset-stage-2
"
:
"
^6.22.0
"
,
"
bootstrap-sass
"
:
"
^3.3.6
"
,
"
bootstrap-sass
"
:
"
^3.3.6
"
,
"
compression-webpack-plugin
"
:
"
^0.3.2
"
,
"
compression-webpack-plugin
"
:
"
^0.3.2
"
,
"
core-js
"
:
"
^2.4.1
"
,
"
d3
"
:
"
^3.5.11
"
,
"
d3
"
:
"
^3.5.11
"
,
"
document-register-element
"
:
"
^1.3.0
"
,
"
document-register-element
"
:
"
^1.3.0
"
,
"
dropzone
"
:
"
^4.2.0
"
,
"
dropzone
"
:
"
^4.2.0
"
,
"
emoji-unicode-version
"
:
"
^0.2.1
"
,
"
emoji-unicode-version
"
:
"
^0.2.1
"
,
"
es6-promise
"
:
"
^4.0.5
"
,
"
jquery
"
:
"
^2.2.1
"
,
"
jquery
"
:
"
^2.2.1
"
,
"
jquery-ujs
"
:
"
^1.2.1
"
,
"
jquery-ujs
"
:
"
^1.2.1
"
,
"
js-cookie
"
:
"
^2.1.3
"
,
"
js-cookie
"
:
"
^2.1.3
"
,
...
@@ -31,8 +31,6 @@
...
@@ -31,8 +31,6 @@
"
raw-loader
"
:
"
^0.5.1
"
,
"
raw-loader
"
:
"
^0.5.1
"
,
"
select2
"
:
"
3.5.2-browserify
"
,
"
select2
"
:
"
3.5.2-browserify
"
,
"
stats-webpack-plugin
"
:
"
^0.4.3
"
,
"
stats-webpack-plugin
"
:
"
^0.4.3
"
,
"
string.fromcodepoint
"
:
"
^0.2.1
"
,
"
string.prototype.codepointat
"
:
"
^0.2.0
"
,
"
timeago.js
"
:
"
^2.0.5
"
,
"
timeago.js
"
:
"
^2.0.5
"
,
"
underscore
"
:
"
^1.8.3
"
,
"
underscore
"
:
"
^1.8.3
"
,
"
vue
"
:
"
^2.1.10
"
,
"
vue
"
:
"
^2.1.10
"
,
...
...
spec/javascripts/awards_handler_spec.js
View file @
29e0cb4b
/* eslint-disable space-before-function-paren, no-var, one-var, one-var-declaration-per-line, no-unused-expressions, comma-dangle, new-parens, no-unused-vars, quotes, jasmine/no-spec-dupes, prefer-template, max-len */
/* eslint-disable space-before-function-paren, no-var, one-var, one-var-declaration-per-line, no-unused-expressions, comma-dangle, new-parens, no-unused-vars, quotes, jasmine/no-spec-dupes, prefer-template, max-len */
import
promisePolyfill
from
'
es6-promise
'
;
import
Cookies
from
'
js-cookie
'
;
import
Cookies
from
'
js-cookie
'
;
import
AwardsHandler
from
'
~/awards_handler
'
;
import
AwardsHandler
from
'
~/awards_handler
'
;
promisePolyfill
.
polyfill
();
(
function
()
{
(
function
()
{
var
awardsHandler
,
lazyAssert
,
urlRoot
,
openAndWaitForEmojiMenu
;
var
awardsHandler
,
lazyAssert
,
urlRoot
,
openAndWaitForEmojiMenu
;
...
...
spec/javascripts/blob/create_branch_dropdown_spec.js
View file @
29e0cb4b
require
(
'
jquery
'
);
require
(
'
~/extensions/jquery.js
'
);
require
(
'
~/gl_dropdown
'
);
require
(
'
~/gl_dropdown
'
);
require
(
'
~/lib/utils/type_utility
'
);
require
(
'
~/lib/utils/type_utility
'
);
require
(
'
~/blob/create_branch_dropdown
'
);
require
(
'
~/blob/create_branch_dropdown
'
);
...
...
spec/javascripts/blob/target_branch_dropdown_spec.js
View file @
29e0cb4b
require
(
'
jquery
'
);
require
(
'
~/extensions/jquery.js
'
);
require
(
'
~/gl_dropdown
'
);
require
(
'
~/gl_dropdown
'
);
require
(
'
~/lib/utils/type_utility
'
);
require
(
'
~/lib/utils/type_utility
'
);
require
(
'
~/blob/create_branch_dropdown
'
);
require
(
'
~/blob/create_branch_dropdown
'
);
...
...
spec/javascripts/boards/board_new_issue_spec.js
View file @
29e0cb4b
...
@@ -8,7 +8,6 @@ import boardNewIssue from '~/boards/components/board_new_issue';
...
@@ -8,7 +8,6 @@ import boardNewIssue from '~/boards/components/board_new_issue';
require
(
'
~/boards/models/list
'
);
require
(
'
~/boards/models/list
'
);
require
(
'
./mock_data
'
);
require
(
'
./mock_data
'
);
require
(
'
es6-promise
'
).
polyfill
();
describe
(
'
Issue boards new issue form
'
,
()
=>
{
describe
(
'
Issue boards new issue form
'
,
()
=>
{
let
vm
;
let
vm
;
...
...
spec/javascripts/boards/boards_store_spec.js
View file @
29e0cb4b
...
@@ -15,7 +15,6 @@ require('~/boards/models/user');
...
@@ -15,7 +15,6 @@ require('~/boards/models/user');
require
(
'
~/boards/services/board_service
'
);
require
(
'
~/boards/services/board_service
'
);
require
(
'
~/boards/stores/boards_store
'
);
require
(
'
~/boards/stores/boards_store
'
);
require
(
'
./mock_data
'
);
require
(
'
./mock_data
'
);
require
(
'
es6-promise
'
).
polyfill
();
describe
(
'
Store
'
,
()
=>
{
describe
(
'
Store
'
,
()
=>
{
beforeEach
(()
=>
{
beforeEach
(()
=>
{
...
...
spec/javascripts/
extensions/
jquery_spec.js
→
spec/javascripts/
bootstrap_
jquery_spec.js
View file @
29e0cb4b
/* eslint-disable space-before-function-paren, no-var */
/* eslint-disable space-before-function-paren, no-var */
require
(
'
~/extensions/jquery
'
)
;
import
'
~/commons/bootstrap
'
;
(
function
()
{
(
function
()
{
describe
(
'
jQuery extensions
'
,
function
()
{
describe
(
'
Bootstrap
jQuery extensions
'
,
function
()
{
describe
(
'
disable
'
,
function
()
{
describe
(
'
disable
'
,
function
()
{
beforeEach
(
function
()
{
beforeEach
(
function
()
{
return
setFixtures
(
'
<input type="text" />
'
);
return
setFixtures
(
'
<input type="text" />
'
);
...
...
spec/javascripts/extensions/array_spec.js
View file @
29e0cb4b
...
@@ -18,28 +18,5 @@ require('~/extensions/array');
...
@@ -18,28 +18,5 @@ require('~/extensions/array');
return
expect
(
arr
.
last
()).
toBe
(
5
);
return
expect
(
arr
.
last
()).
toBe
(
5
);
});
});
});
});
describe
(
'
find
'
,
function
()
{
beforeEach
(()
=>
{
this
.
arr
=
[
0
,
1
,
2
,
3
,
4
,
5
];
});
it
(
'
returns the item that first passes the predicate function
'
,
()
=>
{
expect
(
this
.
arr
.
find
(
item
=>
item
===
2
)).
toBe
(
2
);
});
it
(
'
returns undefined if no items pass the predicate function
'
,
()
=>
{
expect
(
this
.
arr
.
find
(
item
=>
item
===
6
)).
not
.
toBeDefined
();
});
it
(
'
error when called on undefined or null
'
,
()
=>
{
expect
(
Array
.
prototype
.
find
.
bind
(
undefined
,
item
=>
item
===
1
)).
toThrow
();
expect
(
Array
.
prototype
.
find
.
bind
(
null
,
item
=>
item
===
1
)).
toThrow
();
});
it
(
'
error when predicate is not a function
'
,
()
=>
{
expect
(
Array
.
prototype
.
find
.
bind
(
this
.
arr
,
1
)).
toThrow
();
});
});
});
});
}).
call
(
window
);
}).
call
(
window
);
spec/javascripts/extensions/element_spec.js
deleted
100644 → 0
View file @
88206d67
require
(
'
~/extensions/element
'
);
(()
=>
{
describe
(
'
Element extensions
'
,
function
()
{
beforeEach
(()
=>
{
this
.
element
=
document
.
createElement
(
'
ul
'
);
});
describe
(
'
matches
'
,
()
=>
{
it
(
'
returns true if element matches the selector
'
,
()
=>
{
expect
(
this
.
element
.
matches
(
'
ul
'
)).
toBeTruthy
();
});
it
(
"
returns false if element doesn't match the selector
"
,
()
=>
{
expect
(
this
.
element
.
matches
(
'
.not-an-element
'
)).
toBeFalsy
();
});
});
describe
(
'
closest
'
,
()
=>
{
beforeEach
(()
=>
{
this
.
childElement
=
document
.
createElement
(
'
li
'
);
this
.
element
.
appendChild
(
this
.
childElement
);
});
it
(
'
returns the closest parent that matches the selector
'
,
()
=>
{
expect
(
this
.
childElement
.
closest
(
'
ul
'
).
toString
()).
toBe
(
this
.
element
.
toString
());
});
it
(
'
returns itself if it matches the selector
'
,
()
=>
{
expect
(
this
.
childElement
.
closest
(
'
li
'
).
toString
()).
toBe
(
this
.
childElement
.
toString
());
});
it
(
'
returns undefined if nothing matches the selector
'
,
()
=>
{
expect
(
this
.
childElement
.
closest
(
'
.no-an-element
'
)).
toBeFalsy
();
});
});
});
})();
spec/javascripts/extensions/object_spec.js
deleted
100644 → 0
View file @
88206d67
require
(
'
~/extensions/object
'
);
describe
(
'
Object extensions
'
,
()
=>
{
describe
(
'
assign
'
,
()
=>
{
it
(
'
merges source object into target object
'
,
()
=>
{
const
targetObj
=
{};
const
sourceObj
=
{
foo
:
'
bar
'
,
};
Object
.
assign
(
targetObj
,
sourceObj
);
expect
(
targetObj
.
foo
).
toBe
(
'
bar
'
);
});
it
(
'
merges object with the same properties
'
,
()
=>
{
const
targetObj
=
{
foo
:
'
bar
'
,
};
const
sourceObj
=
{
foo
:
'
baz
'
,
};
Object
.
assign
(
targetObj
,
sourceObj
);
expect
(
targetObj
.
foo
).
toBe
(
'
baz
'
);
});
});
});
spec/javascripts/filtered_search/filtered_search_manager_spec.js
View file @
29e0cb4b
...
@@ -41,7 +41,6 @@ const FilteredSearchSpecHelper = require('../helpers/filtered_search_spec_helper
...
@@ -41,7 +41,6 @@ const FilteredSearchSpecHelper = require('../helpers/filtered_search_spec_helper
</div>
</div>
`
);
`
);
spyOn
(
gl
.
FilteredSearchManager
.
prototype
,
'
cleanup
'
).
and
.
callFake
(()
=>
{});
spyOn
(
gl
.
FilteredSearchManager
.
prototype
,
'
loadSearchParamsFromURL
'
).
and
.
callFake
(()
=>
{});
spyOn
(
gl
.
FilteredSearchManager
.
prototype
,
'
loadSearchParamsFromURL
'
).
and
.
callFake
(()
=>
{});
spyOn
(
gl
.
FilteredSearchManager
.
prototype
,
'
tokenChange
'
).
and
.
callFake
(()
=>
{});
spyOn
(
gl
.
FilteredSearchManager
.
prototype
,
'
tokenChange
'
).
and
.
callFake
(()
=>
{});
spyOn
(
gl
.
FilteredSearchDropdownManager
.
prototype
,
'
setDropdown
'
).
and
.
callFake
(()
=>
{});
spyOn
(
gl
.
FilteredSearchDropdownManager
.
prototype
,
'
setDropdown
'
).
and
.
callFake
(()
=>
{});
...
@@ -54,6 +53,10 @@ const FilteredSearchSpecHelper = require('../helpers/filtered_search_spec_helper
...
@@ -54,6 +53,10 @@ const FilteredSearchSpecHelper = require('../helpers/filtered_search_spec_helper
manager
=
new
gl
.
FilteredSearchManager
();
manager
=
new
gl
.
FilteredSearchManager
();
});
});
afterEach
(()
=>
{
manager
.
cleanup
();
});
describe
(
'
search
'
,
()
=>
{
describe
(
'
search
'
,
()
=>
{
const
defaultParams
=
'
?scope=all&utf8=✓&state=opened
'
;
const
defaultParams
=
'
?scope=all&utf8=✓&state=opened
'
;
...
...
spec/javascripts/gl_emoji_spec.js
View file @
29e0cb4b
import
'
~/extensions/string
'
;
import
'
~/extensions/array
'
;
import
{
glEmojiTag
}
from
'
~/behaviors/gl_emoji
'
;
import
{
glEmojiTag
}
from
'
~/behaviors/gl_emoji
'
;
import
{
import
{
isEmojiUnicodeSupported
,
isEmojiUnicodeSupported
,
...
...
spec/javascripts/monitoring/prometheus_graph_spec.js
View file @
29e0cb4b
import
'
jquery
'
;
import
'
jquery
'
;
import
es6Promise
from
'
es6-promise
'
;
import
'
~/lib/utils/common_utils
'
;
import
'
~/lib/utils/common_utils
'
;
import
PrometheusGraph
from
'
~/monitoring/prometheus_graph
'
;
import
PrometheusGraph
from
'
~/monitoring/prometheus_graph
'
;
import
{
prometheusMockData
}
from
'
./prometheus_mock_data
'
;
import
{
prometheusMockData
}
from
'
./prometheus_mock_data
'
;
es6Promise
.
polyfill
();
describe
(
'
PrometheusGraph
'
,
()
=>
{
describe
(
'
PrometheusGraph
'
,
()
=>
{
const
fixtureName
=
'
static/environments/metrics.html.raw
'
;
const
fixtureName
=
'
static/environments/metrics.html.raw
'
;
const
prometheusGraphContainer
=
'
.prometheus-graph
'
;
const
prometheusGraphContainer
=
'
.prometheus-graph
'
;
...
...
spec/javascripts/polyfills/element_spec.js
0 → 100644
View file @
29e0cb4b
import
'
~/commons/polyfills/element
'
;
describe
(
'
Element polyfills
'
,
function
()
{
beforeEach
(()
=>
{
this
.
element
=
document
.
createElement
(
'
ul
'
);
});
describe
(
'
matches
'
,
()
=>
{
it
(
'
returns true if element matches the selector
'
,
()
=>
{
expect
(
this
.
element
.
matches
(
'
ul
'
)).
toBeTruthy
();
});
it
(
"
returns false if element doesn't match the selector
"
,
()
=>
{
expect
(
this
.
element
.
matches
(
'
.not-an-element
'
)).
toBeFalsy
();
});
});
describe
(
'
closest
'
,
()
=>
{
beforeEach
(()
=>
{
this
.
childElement
=
document
.
createElement
(
'
li
'
);
this
.
element
.
appendChild
(
this
.
childElement
);
});
it
(
'
returns the closest parent that matches the selector
'
,
()
=>
{
expect
(
this
.
childElement
.
closest
(
'
ul
'
).
toString
()).
toBe
(
this
.
element
.
toString
());
});
it
(
'
returns itself if it matches the selector
'
,
()
=>
{
expect
(
this
.
childElement
.
closest
(
'
li
'
).
toString
()).
toBe
(
this
.
childElement
.
toString
());
});
it
(
'
returns undefined if nothing matches the selector
'
,
()
=>
{
expect
(
this
.
childElement
.
closest
(
'
.no-an-element
'
)).
toBeFalsy
();
});
});
});
spec/javascripts/right_sidebar_spec.js
View file @
29e0cb4b
/* eslint-disable space-before-function-paren, no-var, one-var, one-var-declaration-per-line, new-parens, no-return-assign, new-cap, vars-on-top, max-len */
/* eslint-disable space-before-function-paren, no-var, one-var, one-var-declaration-per-line, new-parens, no-return-assign, new-cap, vars-on-top, max-len */
/* global Sidebar */
/* global Sidebar */
require
(
'
~/right_sidebar
'
)
;
import
'
~/commons/bootstrap
'
;
require
(
'
~/extensions/jquery.js
'
)
;
import
'
~/right_sidebar
'
;
(
function
()
{
(
function
()
{
var
$aside
,
$icon
,
$labelsIcon
,
$page
,
$toggle
,
assertSidebarState
;
var
$aside
,
$icon
,
$labelsIcon
,
$page
,
$toggle
,
assertSidebarState
;
...
...
spec/javascripts/shortcuts_issuable_spec.js
View file @
29e0cb4b
...
@@ -31,13 +31,9 @@ require('~/shortcuts_issuable');
...
@@ -31,13 +31,9 @@ require('~/shortcuts_issuable');
this
.
shortcut
.
replyWithSelectedText
();
this
.
shortcut
.
replyWithSelectedText
();
expect
(
$
(
this
.
selector
).
val
()).
toBe
(
''
);
expect
(
$
(
this
.
selector
).
val
()).
toBe
(
''
);
});
});
it
(
'
triggers `input`
'
,
function
()
{
it
(
'
triggers `focus`
'
,
function
()
{
var
focused
=
false
;
$
(
this
.
selector
).
on
(
'
focus
'
,
function
()
{
focused
=
true
;
});
this
.
shortcut
.
replyWithSelectedText
();
this
.
shortcut
.
replyWithSelectedText
();
expect
(
focused
).
toBe
(
true
);
expect
(
document
.
activeElement
).
toBe
(
document
.
querySelector
(
this
.
selector
)
);
});
});
});
});
describe
(
'
with any selection
'
,
function
()
{
describe
(
'
with any selection
'
,
function
()
{
...
...
yarn.lock
View file @
29e0cb4b
...
@@ -1213,7 +1213,7 @@ cookie@0.3.1:
...
@@ -1213,7 +1213,7 @@ cookie@0.3.1:
version "0.3.1"
version "0.3.1"
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
core-js@^2.2.0, core-js@^2.4.0:
core-js@^2.2.0, core-js@^2.4.0
, core-js@^2.4.1
:
version "2.4.1"
version "2.4.1"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
...
@@ -1553,7 +1553,7 @@ es6-map@^0.1.3:
...
@@ -1553,7 +1553,7 @@ es6-map@^0.1.3:
es6-symbol "~3.1.0"
es6-symbol "~3.1.0"
event-emitter "~0.3.4"
event-emitter "~0.3.4"
es6-promise@
^4.0.5, es6-promise@
~4.0.3:
es6-promise@~4.0.3:
version "4.0.5"
version "4.0.5"
resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.0.5.tgz#7882f30adde5b240ccfa7f7d78c548330951ae42"
resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.0.5.tgz#7882f30adde5b240ccfa7f7d78c548330951ae42"
...
@@ -4123,14 +4123,6 @@ string-width@^2.0.0:
...
@@ -4123,14 +4123,6 @@ string-width@^2.0.0:
is-fullwidth-code-point "^2.0.0"
is-fullwidth-code-point "^2.0.0"
strip-ansi "^3.0.0"
strip-ansi "^3.0.0"
string.fromcodepoint@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/string.fromcodepoint/-/string.fromcodepoint-0.2.1.tgz#8d978333c0bc92538f50f383e4888f3e5619d653"
string.prototype.codepointat@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/string.prototype.codepointat/-/string.prototype.codepointat-0.2.0.tgz#6b26e9bd3afcaa7be3b4269b526de1b82000ac78"
string_decoder@^0.10.25, string_decoder@~0.10.x:
string_decoder@^0.10.25, string_decoder@~0.10.x:
version "0.10.31"
version "0.10.31"
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
...
...
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