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
Léo-Paul Géneau
gitlab-ce
Commits
6e7e9e80
Commit
6e7e9e80
authored
Feb 21, 2017
by
Simon Knox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prevent filtering Issues by multiple milestones, authors, or assignees
parent
7867b992
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
53 additions
and
16 deletions
+53
-16
app/assets/javascripts/filtered_search/dropdown_hint.js
app/assets/javascripts/filtered_search/dropdown_hint.js
+8
-6
app/assets/javascripts/filtered_search/dropdown_utils.js
app/assets/javascripts/filtered_search/dropdown_utils.js
+11
-7
app/views/shared/issuable/_search_bar.html.haml
app/views/shared/issuable/_search_bar.html.haml
+1
-1
changelogs/unreleased/27174-filter-filters.yml
changelogs/unreleased/27174-filter-filters.yml
+4
-0
spec/javascripts/filtered_search/dropdown_utils_spec.js
spec/javascripts/filtered_search/dropdown_utils_spec.js
+29
-2
No files found.
app/assets/javascripts/filtered_search/dropdown_hint.js
View file @
6e7e9e80
...
...
@@ -57,13 +57,15 @@ require('./filtered_search_dropdown');
const
dropdownData
=
[];
[].
forEach
.
call
(
this
.
input
.
closest
(
'
.filtered-search-input-container
'
).
querySelectorAll
(
'
.dropdown-menu
'
),
(
dropdownMenu
)
=>
{
const
{
icon
,
hint
,
tag
}
=
dropdownMenu
.
dataset
;
const
{
icon
,
hint
,
tag
,
type
}
=
dropdownMenu
.
dataset
;
if
(
icon
&&
hint
&&
tag
)
{
dropdownData
.
push
({
icon
:
`fa-
${
icon
}
`
,
hint
,
tag
:
`<
${
tag
}
>`
,
});
dropdownData
.
push
(
Object
.
assign
({
icon
:
`fa-
${
icon
}
`
,
hint
,
tag
:
`<
${
tag
}
>`
,
},
type
&&
{
type
}),
);
}
});
...
...
app/assets/javascripts/filtered_search/dropdown_utils.js
View file @
6e7e9e80
...
...
@@ -51,14 +51,18 @@
static
filterHint
(
input
,
item
)
{
const
updatedItem
=
item
;
const
searchInput
=
gl
.
DropdownUtils
.
getSearchInput
(
input
);
let
{
lastToken
}
=
gl
.
FilteredSearchTokenizer
.
processTokens
(
searchInput
);
lastToken
=
lastToken
.
key
||
lastToken
||
''
;
if
(
!
lastToken
||
searchInput
.
split
(
''
).
last
()
===
'
'
)
{
const
searchInput
=
gl
.
DropdownUtils
.
getSearchQuery
(
input
);
const
{
lastToken
,
tokens
}
=
gl
.
FilteredSearchTokenizer
.
processTokens
(
searchInput
);
const
lastKey
=
lastToken
.
key
||
lastToken
||
''
;
const
allowMultiple
=
item
.
type
===
'
array
'
;
const
itemInExistingTokens
=
tokens
.
some
(
t
=>
t
.
key
===
item
.
hint
);
if
(
!
allowMultiple
&&
itemInExistingTokens
)
{
updatedItem
.
droplab_hidden
=
true
;
}
else
if
(
!
lastKey
||
searchInput
.
split
(
''
).
last
()
===
'
'
)
{
updatedItem
.
droplab_hidden
=
false
;
}
else
if
(
last
Token
)
{
const
split
=
last
Token
.
split
(
'
:
'
);
}
else
if
(
last
Key
)
{
const
split
=
last
Key
.
split
(
'
:
'
);
const
tokenName
=
split
[
0
].
split
(
'
'
).
last
();
const
match
=
updatedItem
.
hint
.
indexOf
(
tokenName
.
toLowerCase
())
===
-
1
;
...
...
app/views/shared/issuable/_search_bar.html.haml
View file @
6e7e9e80
...
...
@@ -73,7 +73,7 @@
%li
.filter-dropdown-item
%button
.btn.btn-link.js-data-value
{{title}}
#js-dropdown-label
.dropdown-menu
{
data:
{
icon:
'tag'
,
hint:
'label'
,
tag:
'~label'
}
}
#js-dropdown-label
.dropdown-menu
{
data:
{
icon:
'tag'
,
hint:
'label'
,
tag:
'~label'
,
type:
'array'
}
}
%ul
{
data:
{
dropdown:
true
}
}
%li
.filter-dropdown-item
{
data:
{
value:
'none'
}
}
%button
.btn.btn-link
...
...
changelogs/unreleased/27174-filter-filters.yml
0 → 100644
View file @
6e7e9e80
---
title
:
Prevent filtering issues by multiple Milestones or Authors
merge_request
:
author
:
spec/javascripts/filtered_search/dropdown_utils_spec.js
View file @
6e7e9e80
...
...
@@ -126,7 +126,11 @@ require('~/filtered_search/filtered_search_dropdown_manager');
beforeEach
(()
=>
{
setFixtures
(
`
<input type="text" id="test" />
<ul class="tokens-container">
<li class="input-token">
<input class="filtered-search" type="text" id="test" />
</li>
</ul>
`
);
input
=
document
.
getElementById
(
'
test
'
);
...
...
@@ -142,7 +146,7 @@ require('~/filtered_search/filtered_search_dropdown_manager');
input
.
value
=
'
o
'
;
updatedItem
=
gl
.
DropdownUtils
.
filterHint
(
input
,
{
hint
:
'
label
'
,
}
,
'
o
'
);
});
expect
(
updatedItem
.
droplab_hidden
).
toBe
(
true
);
});
...
...
@@ -150,6 +154,29 @@ require('~/filtered_search/filtered_search_dropdown_manager');
const
updatedItem
=
gl
.
DropdownUtils
.
filterHint
(
input
,
{},
''
);
expect
(
updatedItem
.
droplab_hidden
).
toBe
(
false
);
});
it
(
'
should allow multiple if item.type is array
'
,
()
=>
{
input
.
value
=
'
label:~first la
'
;
const
updatedItem
=
gl
.
DropdownUtils
.
filterHint
(
input
,
{
hint
:
'
label
'
,
type
:
'
array
'
,
});
expect
(
updatedItem
.
droplab_hidden
).
toBe
(
false
);
});
it
(
'
should prevent multiple if item.type is not array
'
,
()
=>
{
input
.
value
=
'
milestone:~first mile
'
;
let
updatedItem
=
gl
.
DropdownUtils
.
filterHint
(
input
,
{
hint
:
'
milestone
'
,
});
expect
(
updatedItem
.
droplab_hidden
).
toBe
(
true
);
updatedItem
=
gl
.
DropdownUtils
.
filterHint
(
input
,
{
hint
:
'
milestone
'
,
type
:
'
string
'
,
});
expect
(
updatedItem
.
droplab_hidden
).
toBe
(
true
);
});
});
describe
(
'
setDataValueIfSelected
'
,
()
=>
{
...
...
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