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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
06376254
Commit
06376254
authored
Oct 26, 2017
by
Winnie Hellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make NamespaceSelect a module
parent
3ddffec0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
81 deletions
+59
-81
app/assets/javascripts/dispatcher.js
app/assets/javascripts/dispatcher.js
+3
-2
app/assets/javascripts/namespace_select.js
app/assets/javascripts/namespace_select.js
+56
-79
No files found.
app/assets/javascripts/dispatcher.js
View file @
06376254
...
...
@@ -16,7 +16,7 @@ import CILintEditor from './ci_lint_editor';
/* global GroupsSelect */
/* global Search */
/* global Admin */
/* global NamespaceSelects */
import
NamespaceSelect
from
'
./namespace_select
'
;
/* global NewCommitForm */
/* global NewBranchForm */
/* global Project */
...
...
@@ -571,7 +571,8 @@ import Diff from './diff';
new
UsersSelect
();
break
;
case
'
projects
'
:
new
NamespaceSelects
();
document
.
querySelectorAll
(
'
.js-namespace-select
'
)
.
forEach
(
dropdown
=>
new
NamespaceSelect
({
dropdown
}));
break
;
case
'
labels
'
:
switch
(
path
[
2
])
{
...
...
app/assets/javascripts/namespace_select.js
View file @
06376254
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, one-var, vars-on-top, one-var-declaration-per-line, comma-dangle, object-shorthand, no-else-return, prefer-template, quotes, prefer-arrow-callback, no-param-reassign, no-cond-assign, max-len */
import
Api
from
'
./api
'
;
(
function
()
{
window
.
NamespaceSelect
=
(
function
()
{
function
NamespaceSelect
(
opts
)
{
this
.
onSelectItem
=
this
.
onSelectItem
.
bind
(
this
);
var
fieldName
,
showAny
;
this
.
dropdown
=
opts
.
dropdown
;
showAny
=
true
;
fieldName
=
'
namespace_id
'
;
if
(
this
.
dropdown
.
attr
(
'
data-field-name
'
))
{
fieldName
=
this
.
dropdown
.
data
(
'
fieldName
'
);
}
if
(
this
.
dropdown
.
attr
(
'
data-show-any
'
))
{
showAny
=
this
.
dropdown
.
data
(
'
showAny
'
);
}
this
.
dropdown
.
glDropdown
({
filterable
:
true
,
selectable
:
true
,
filterRemote
:
true
,
search
:
{
fields
:
[
'
path
'
]
},
fieldName
:
fieldName
,
toggleLabel
:
function
(
selected
)
{
if
(
selected
.
id
==
null
)
{
return
selected
.
text
;
}
else
{
return
selected
.
kind
+
"
:
"
+
selected
.
full_path
;
}
},
data
:
function
(
term
,
dataCallback
)
{
return
Api
.
namespaces
(
term
,
function
(
namespaces
)
{
var
anyNamespace
;
if
(
showAny
)
{
anyNamespace
=
{
text
:
'
Any namespace
'
,
id
:
null
};
namespaces
.
unshift
(
anyNamespace
);
namespaces
.
splice
(
1
,
0
,
'
divider
'
);
}
return
dataCallback
(
namespaces
);
});
},
text
:
function
(
namespace
)
{
if
(
namespace
.
id
==
null
)
{
return
namespace
.
text
;
}
else
{
return
namespace
.
kind
+
"
:
"
+
namespace
.
full_path
;
}
},
renderRow
:
this
.
renderRow
,
clicked
:
this
.
onSelectItem
});
export
default
class
NamespaceSelect
{
constructor
(
opts
)
{
this
.
onSelectItem
=
this
.
onSelectItem
.
bind
(
this
);
var
fieldName
,
showAny
;
this
.
dropdown
=
$
(
opts
.
dropdown
);
showAny
=
true
;
fieldName
=
'
namespace_id
'
;
if
(
this
.
dropdown
.
attr
(
'
data-field-name
'
))
{
fieldName
=
this
.
dropdown
.
data
(
'
fieldName
'
);
}
NamespaceSelect
.
prototype
.
onSelectItem
=
function
(
options
)
{
const
{
e
}
=
options
;
return
e
.
preventDefault
();
};
return
NamespaceSelect
;
})();
window
.
NamespaceSelects
=
(
function
()
{
function
NamespaceSelects
(
opts
)
{
var
ref
;
if
(
opts
==
null
)
{
opts
=
{};
}
this
.
$dropdowns
=
(
ref
=
opts
.
$dropdowns
)
!=
null
?
ref
:
$
(
'
.js-namespace-select
'
);
this
.
$dropdowns
.
each
(
function
(
i
,
dropdown
)
{
var
$dropdown
;
$dropdown
=
$
(
dropdown
);
return
new
window
.
NamespaceSelect
({
dropdown
:
$dropdown
});
});
if
(
this
.
dropdown
.
attr
(
'
data-show-any
'
))
{
showAny
=
this
.
dropdown
.
data
(
'
showAny
'
);
}
this
.
dropdown
.
glDropdown
({
filterable
:
true
,
selectable
:
true
,
filterRemote
:
true
,
search
:
{
fields
:
[
'
path
'
]
},
fieldName
:
fieldName
,
toggleLabel
:
function
(
selected
)
{
if
(
selected
.
id
==
null
)
{
return
selected
.
text
;
}
else
{
return
selected
.
kind
+
"
:
"
+
selected
.
full_path
;
}
},
data
:
function
(
term
,
dataCallback
)
{
return
Api
.
namespaces
(
term
,
function
(
namespaces
)
{
var
anyNamespace
;
if
(
showAny
)
{
anyNamespace
=
{
text
:
'
Any namespace
'
,
id
:
null
};
namespaces
.
unshift
(
anyNamespace
);
namespaces
.
splice
(
1
,
0
,
'
divider
'
);
}
return
dataCallback
(
namespaces
);
});
},
text
:
function
(
namespace
)
{
if
(
namespace
.
id
==
null
)
{
return
namespace
.
text
;
}
else
{
return
namespace
.
kind
+
"
:
"
+
namespace
.
full_path
;
}
},
renderRow
:
this
.
renderRow
,
clicked
:
this
.
onSelectItem
});
}
return
NamespaceSelects
;
})();
}).
call
(
window
);
onSelectItem
(
options
)
{
const
{
e
}
=
options
;
return
e
.
preventDefault
();
}
}
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