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
57214375
Commit
57214375
authored
Sep 15, 2020
by
Tim Zallmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved project.js and select2 loading
We check now if select2 dropdowns are actually on the screen
parent
8c871ce3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
146 additions
and
126 deletions
+146
-126
app/assets/javascripts/groups_select.js
app/assets/javascripts/groups_select.js
+7
-4
app/assets/javascripts/pages/projects/project.js
app/assets/javascripts/pages/projects/project.js
+45
-38
app/assets/javascripts/project_select.js
app/assets/javascripts/project_select.js
+7
-4
app/assets/javascripts/users_select/index.js
app/assets/javascripts/users_select/index.js
+87
-80
No files found.
app/assets/javascripts/groups_select.js
View file @
57214375
...
...
@@ -97,7 +97,10 @@ const groupsSelect = () => {
});
};
export
default
()
=>
import
(
/* webpackChunkName: 'select2' */
'
select2/select2
'
)
.
then
(
groupsSelect
)
.
catch
(()
=>
{});
export
default
()
=>
{
if
(
$
(
'
.ajax-groups-select
'
).
length
)
{
import
(
/* webpackChunkName: 'select2' */
'
select2/select2
'
)
.
then
(
groupsSelect
)
.
catch
(()
=>
{});
}
};
app/assets/javascripts/pages/projects/project.js
View file @
57214375
...
...
@@ -13,48 +13,54 @@ import initDeprecatedJQueryDropdown from '~/deprecated_jquery_dropdown';
export
default
class
Project
{
constructor
()
{
const
$cloneOptions
=
$
(
'
ul.clone-options-dropdown
'
);
const
$projectCloneField
=
$
(
'
#project_clone
'
);
const
$cloneBtnLabel
=
$
(
'
.js-git-clone-holder .js-clone-dropdown-label
'
);
const
mobileCloneField
=
document
.
querySelector
(
'
.js-mobile-git-clone .js-clone-dropdown-label
'
,
);
const
selectedCloneOption
=
$cloneBtnLabel
.
text
().
trim
();
if
(
selectedCloneOption
.
length
>
0
)
{
$
(
`a:contains('
${
selectedCloneOption
}
')`
,
$cloneOptions
).
addClass
(
'
is-active
'
);
}
if
(
$cloneOptions
.
length
)
{
const
$projectCloneField
=
$
(
'
#project_clone
'
);
const
$cloneBtnLabel
=
$
(
'
.js-git-clone-holder .js-clone-dropdown-label
'
);
const
mobileCloneField
=
document
.
querySelector
(
'
.js-mobile-git-clone .js-clone-dropdown-label
'
,
);
const
selectedCloneOption
=
$cloneBtnLabel
.
text
().
trim
();
if
(
selectedCloneOption
.
length
>
0
)
{
$
(
`a:contains('
${
selectedCloneOption
}
')`
,
$cloneOptions
).
addClass
(
'
is-active
'
);
}
$
(
'
a
'
,
$cloneOptions
).
on
(
'
click
'
,
e
=>
{
e
.
preventDefault
();
const
$this
=
$
(
e
.
currentTarget
);
const
url
=
$this
.
attr
(
'
href
'
);
const
cloneType
=
$this
.
data
(
'
cloneType
'
);
$
(
'
.is-active
'
,
$cloneOptions
).
removeClass
(
'
is-active
'
);
$
(
`a[data-clone-type="
${
cloneType
}
"]`
).
each
(
function
()
{
const
$el
=
$
(
this
);
const
activeText
=
$el
.
find
(
'
.dropdown-menu-inner-title
'
).
text
();
const
$container
=
$el
.
closest
(
'
.project-clone-holder
'
);
const
$label
=
$container
.
find
(
'
.js-clone-dropdown-label
'
);
$el
.
toggleClass
(
'
is-active
'
);
$label
.
text
(
activeText
);
$
(
'
a
'
,
$cloneOptions
).
on
(
'
click
'
,
e
=>
{
e
.
preventDefault
();
const
$this
=
$
(
e
.
currentTarget
);
const
url
=
$this
.
attr
(
'
href
'
);
const
cloneType
=
$this
.
data
(
'
cloneType
'
);
$
(
'
.is-active
'
,
$cloneOptions
).
removeClass
(
'
is-active
'
);
$
(
`a[data-clone-type="
${
cloneType
}
"]`
).
each
(
function
()
{
const
$el
=
$
(
this
);
const
activeText
=
$el
.
find
(
'
.dropdown-menu-inner-title
'
).
text
();
const
$container
=
$el
.
closest
(
'
.project-clone-holder
'
);
const
$label
=
$container
.
find
(
'
.js-clone-dropdown-label
'
);
$el
.
toggleClass
(
'
is-active
'
);
$label
.
text
(
activeText
);
});
if
(
mobileCloneField
)
{
mobileCloneField
.
dataset
.
clipboardText
=
url
;
}
else
{
$projectCloneField
.
val
(
url
);
}
$
(
'
.js-git-empty .js-clone
'
).
text
(
url
);
});
}
if
(
mobileCloneField
)
{
mobileCloneField
.
dataset
.
clipboardText
=
url
;
}
else
{
$projectCloneField
.
val
(
url
);
}
$
(
'
.js-git-empty .js-clone
'
).
text
(
url
);
});
// Ref switcher
Project
.
initRefSwitcher
();
$
(
'
.project-refs-select
'
).
on
(
'
change
'
,
function
()
{
return
$
(
this
)
.
parents
(
'
form
'
)
.
submit
();
});
if
(
document
.
querySelector
(
'
.js-project-refs-dropdown
'
))
{
Project
.
initRefSwitcher
();
$
(
'
.project-refs-select
'
).
on
(
'
change
'
,
function
()
{
return
$
(
this
)
.
parents
(
'
form
'
)
.
submit
();
});
}
$
(
'
.hide-no-ssh-message
'
).
on
(
'
click
'
,
function
(
e
)
{
Cookies
.
set
(
'
hide_no_ssh_message
'
,
'
false
'
);
$
(
this
)
...
...
@@ -78,6 +84,7 @@ export default class Project {
.
remove
();
return
e
.
preventDefault
();
});
Project
.
projectSelectDropdown
();
}
...
...
app/assets/javascripts/project_select.js
View file @
57214375
...
...
@@ -110,7 +110,10 @@ const projectSelect = () => {
});
};
export
default
()
=>
import
(
/* webpackChunkName: 'select2' */
'
select2/select2
'
)
.
then
(
projectSelect
)
.
catch
(()
=>
{});
export
default
()
=>
{
if
(
$
(
'
.ajax-project-select
'
).
length
)
{
import
(
/* webpackChunkName: 'select2' */
'
select2/select2
'
)
.
then
(
projectSelect
)
.
catch
(()
=>
{});
}
};
app/assets/javascripts/users_select/index.js
View file @
57214375
...
...
@@ -561,92 +561,99 @@ function UsersSelect(currentUser, els, options = {}) {
},
});
});
import
(
/* webpackChunkName: 'select2' */
'
select2/select2
'
)
.
then
(()
=>
{
$
(
'
.ajax-users-select
'
).
each
((
i
,
select
)
=>
{
const
options
=
getAjaxUsersSelectOptions
(
$
(
select
),
AJAX_USERS_SELECT_OPTIONS_MAP
);
options
.
skipLdap
=
$
(
select
).
hasClass
(
'
skip_ldap
'
);
const
showNullUser
=
$
(
select
).
data
(
'
nullUser
'
);
const
showAnyUser
=
$
(
select
).
data
(
'
anyUser
'
);
const
showEmailUser
=
$
(
select
).
data
(
'
emailUser
'
);
const
firstUser
=
$
(
select
).
data
(
'
firstUser
'
);
return
$
(
select
).
select2
({
placeholder
:
__
(
'
Search for a user
'
),
multiple
:
$
(
select
).
hasClass
(
'
multiselect
'
),
minimumInputLength
:
0
,
query
(
query
)
{
return
userSelect
.
users
(
query
.
term
,
options
,
users
=>
{
let
name
;
const
data
=
{
results
:
users
,
};
if
(
query
.
term
.
length
===
0
)
{
if
(
firstUser
)
{
// Move current user to the front of the list
const
ref
=
data
.
results
;
for
(
let
index
=
0
,
len
=
ref
.
length
;
index
<
len
;
index
+=
1
)
{
const
obj
=
ref
[
index
];
if
(
obj
.
username
===
firstUser
)
{
data
.
results
.
splice
(
index
,
1
);
data
.
results
.
unshift
(
obj
);
break
;
if
(
$
(
'
.ajax-users-select
'
).
length
)
{
import
(
/* webpackChunkName: 'select2' */
'
select2/select2
'
)
.
then
(()
=>
{
$
(
'
.ajax-users-select
'
).
each
((
i
,
select
)
=>
{
const
options
=
getAjaxUsersSelectOptions
(
$
(
select
),
AJAX_USERS_SELECT_OPTIONS_MAP
);
options
.
skipLdap
=
$
(
select
).
hasClass
(
'
skip_ldap
'
);
const
showNullUser
=
$
(
select
).
data
(
'
nullUser
'
);
const
showAnyUser
=
$
(
select
).
data
(
'
anyUser
'
);
const
showEmailUser
=
$
(
select
).
data
(
'
emailUser
'
);
const
firstUser
=
$
(
select
).
data
(
'
firstUser
'
);
return
$
(
select
).
select2
({
placeholder
:
__
(
'
Search for a user
'
),
multiple
:
$
(
select
).
hasClass
(
'
multiselect
'
),
minimumInputLength
:
0
,
query
(
query
)
{
return
userSelect
.
users
(
query
.
term
,
options
,
users
=>
{
let
name
;
const
data
=
{
results
:
users
,
};
if
(
query
.
term
.
length
===
0
)
{
if
(
firstUser
)
{
// Move current user to the front of the list
const
ref
=
data
.
results
;
for
(
let
index
=
0
,
len
=
ref
.
length
;
index
<
len
;
index
+=
1
)
{
const
obj
=
ref
[
index
];
if
(
obj
.
username
===
firstUser
)
{
data
.
results
.
splice
(
index
,
1
);
data
.
results
.
unshift
(
obj
);
break
;
}
}
}
}
if
(
showNullUser
)
{
const
nullUser
=
{
name
:
s__
(
'
UsersSelect|Unassigned
'
),
id
:
0
,
};
data
.
results
.
unshift
(
nullUser
);
}
if
(
showAnyUser
)
{
name
=
showAnyUser
;
if
(
name
===
true
)
{
name
=
s__
(
'
UsersSelect|Any User
'
);
if
(
showNullUser
)
{
const
nullUser
=
{
name
:
s__
(
'
UsersSelect|Unassigned
'
),
id
:
0
,
};
data
.
results
.
unshift
(
nullUser
);
}
if
(
showAnyUser
)
{
name
=
showAnyUser
;
if
(
name
===
true
)
{
name
=
s__
(
'
UsersSelect|Any User
'
);
}
const
anyUser
=
{
name
,
id
:
null
,
};
data
.
results
.
unshift
(
anyUser
);
}
const
anyUser
=
{
name
,
id
:
null
,
}
if
(
showEmailUser
&&
data
.
results
.
length
===
0
&&
query
.
term
.
match
(
/^
[^
@
]
+@
[^
@
]
+$/
)
)
{
const
trimmed
=
query
.
term
.
trim
();
const
emailUser
=
{
name
:
sprintf
(
__
(
'
Invite "%{trimmed}" by email
'
),
{
trimmed
}),
username
:
trimmed
,
id
:
trimmed
,
invite
:
true
,
};
data
.
results
.
unshift
(
any
User
);
data
.
results
.
unshift
(
email
User
);
}
}
if
(
showEmailUser
&&
data
.
results
.
length
===
0
&&
query
.
term
.
match
(
/^
[^
@
]
+@
[^
@
]
+$/
))
{
const
trimmed
=
query
.
term
.
trim
();
const
emailUser
=
{
name
:
sprintf
(
__
(
'
Invite "%{trimmed}" by email
'
),
{
trimmed
}),
username
:
trimmed
,
id
:
trimmed
,
invite
:
true
,
};
data
.
results
.
unshift
(
emailUser
);
}
return
query
.
callback
(
data
);
});
},
initSelection
()
{
const
args
=
1
<=
arguments
.
length
?
[].
slice
.
call
(
arguments
,
0
)
:
[];
return
userSelect
.
initSelection
.
apply
(
userSelect
,
args
);
},
formatResult
()
{
const
args
=
1
<=
arguments
.
length
?
[].
slice
.
call
(
arguments
,
0
)
:
[];
return
userSelect
.
formatResult
.
apply
(
userSelect
,
args
);
},
formatSelection
()
{
const
args
=
1
<=
arguments
.
length
?
[].
slice
.
call
(
arguments
,
0
)
:
[];
return
userSelect
.
formatSelection
.
apply
(
userSelect
,
args
);
},
dropdownCssClass
:
'
ajax-users-dropdown
'
,
// we do not want to escape markup since we are displaying html in results
escapeMarkup
(
m
)
{
return
m
;
},
return
query
.
callback
(
data
);
});
},
initSelection
()
{
const
args
=
1
<=
arguments
.
length
?
[].
slice
.
call
(
arguments
,
0
)
:
[];
return
userSelect
.
initSelection
.
apply
(
userSelect
,
args
);
},
formatResult
()
{
const
args
=
1
<=
arguments
.
length
?
[].
slice
.
call
(
arguments
,
0
)
:
[];
return
userSelect
.
formatResult
.
apply
(
userSelect
,
args
);
},
formatSelection
()
{
const
args
=
1
<=
arguments
.
length
?
[].
slice
.
call
(
arguments
,
0
)
:
[];
return
userSelect
.
formatSelection
.
apply
(
userSelect
,
args
);
},
dropdownCssClass
:
'
ajax-users-dropdown
'
,
// we do not want to escape markup since we are displaying html in results
escapeMarkup
(
m
)
{
return
m
;
},
});
});
})
;
})
.
catch
(()
=>
{});
})
.
catch
(()
=>
{});
}
}
UsersSelect
.
prototype
.
initSelection
=
function
(
element
,
callback
)
{
...
...
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