BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
94e53df0
Commit
94e53df0
authored
Feb 12, 2018
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'groups-select-axios' into 'master'
Convert groups_select ajax to use axios See merge request gitlab-org/gitlab-ce!17041
parents
80c1626b
118619ea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
groups_select.js
app/assets/javascripts/groups_select.js
+11
-11
No files found.
app/assets/javascripts/groups_select.js
View file @
94e53df0
import
axios
from
'./lib/utils/axios_utils'
;
import
Api
from
'./api'
;
import
{
normalize
CRLF
Headers
}
from
'./lib/utils/common_utils'
;
import
{
normalizeHeaders
}
from
'./lib/utils/common_utils'
;
export
default
function
groupsSelect
()
{
// Needs to be accessible in rspec
...
...
@@ -17,24 +18,23 @@ export default function groupsSelect() {
dataType
:
'json'
,
quietMillis
:
250
,
transport
(
params
)
{
return
$
.
ajax
(
params
)
.
then
((
data
,
status
,
xhr
)
=>
{
const
results
=
data
||
[];
const
headers
=
normalizeCRLFHeaders
(
xhr
.
getAllResponseHeaders
());
axios
[
params
.
type
.
toLowerCase
()](
params
.
url
,
{
params
:
params
.
data
,
})
.
then
((
res
)
=>
{
const
results
=
res
.
data
||
[];
const
headers
=
normalizeHeaders
(
res
.
headers
);
const
currentPage
=
parseInt
(
headers
[
'X-PAGE'
],
10
)
||
0
;
const
totalPages
=
parseInt
(
headers
[
'X-TOTAL-PAGES'
],
10
)
||
0
;
const
more
=
currentPage
<
totalPages
;
return
{
params
.
success
(
{
results
,
pagination
:
{
more
,
},
};
})
.
then
(
params
.
success
)
.
fail
(
params
.
error
);
});
}).
catch
(
params
.
error
);
},
data
(
search
,
page
)
{
return
{
...
...
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