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
021b781a
Commit
021b781a
authored
Mar 07, 2017
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Port of issue-boards-new-search-bar to EE
parent
b1e567ff
Changes
18
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
182 additions
and
192 deletions
+182
-192
app/assets/javascripts/boards/boards_bundle.js
app/assets/javascripts/boards/boards_bundle.js
+5
-1
app/assets/javascripts/boards/components/board.js
app/assets/javascripts/boards/components/board.js
+4
-4
app/assets/javascripts/boards/components/issue_card_inner.js
app/assets/javascripts/boards/components/issue_card_inner.js
+8
-15
app/assets/javascripts/boards/filtered_search_boards.js
app/assets/javascripts/boards/filtered_search_boards.js
+31
-0
app/assets/javascripts/boards/models/list.js
app/assets/javascripts/boards/models/list.js
+18
-4
app/assets/javascripts/boards/stores/boards_store.js
app/assets/javascripts/boards/stores/boards_store.js
+5
-8
app/assets/javascripts/filtered_search/filtered_search_manager.js
...ts/javascripts/filtered_search/filtered_search_manager.js
+18
-3
app/assets/javascripts/labels_select.js
app/assets/javascripts/labels_select.js
+2
-16
app/assets/javascripts/milestone_select.js
app/assets/javascripts/milestone_select.js
+1
-7
app/assets/javascripts/users_select.js
app/assets/javascripts/users_select.js
+0
-5
app/assets/stylesheets/framework/filters.scss
app/assets/stylesheets/framework/filters.scss
+5
-1
app/views/projects/boards/_show.html.haml
app/views/projects/boards/_show.html.haml
+3
-1
app/views/shared/issuable/_filter.html.haml
app/views/shared/issuable/_filter.html.haml
+2
-16
app/views/shared/issuable/_search_bar.html.haml
app/views/shared/issuable/_search_bar.html.haml
+14
-2
changelogs/unreleased/issue-boards-new-search-bar.yml
changelogs/unreleased/issue-boards-new-search-bar.yml
+4
-0
spec/features/boards/add_issues_modal_spec.rb
spec/features/boards/add_issues_modal_spec.rb
+1
-1
spec/features/boards/boards_spec.rb
spec/features/boards/boards_spec.rb
+60
-107
spec/features/issuables/default_sort_order_spec.rb
spec/features/issuables/default_sort_order_spec.rb
+1
-1
No files found.
app/assets/javascripts/boards/boards_bundle.js
View file @
021b781a
...
...
@@ -2,6 +2,8 @@
/* global Vue */
/* global BoardService */
import
FilteredSearchBoards
from
'
./filtered_search_boards
'
;
window
.
Vue
=
require
(
'
vue
'
);
window
.
Vue
.
use
(
require
(
'
vue-resource
'
));
require
(
'
./models/issue
'
);
...
...
@@ -65,6 +67,8 @@ $(() => {
}
gl
.
boardService
=
new
BoardService
(
this
.
endpoint
,
this
.
bulkUpdatePath
,
this
.
boardId
);
gl
.
boardsFilterManager
=
new
FilteredSearchBoards
(
Store
.
filter
,
true
);
},
mounted
()
{
Store
.
disabled
=
this
.
disabled
;
...
...
@@ -87,7 +91,7 @@ $(() => {
});
gl
.
IssueBoardsSearch
=
new
Vue
({
el
:
document
.
getElementById
(
'
js-
boards-search
'
),
el
:
document
.
getElementById
(
'
js-
add-list
'
),
data
:
{
filters
:
Store
.
state
.
filters
,
milestoneTitle
:
$boardApp
.
dataset
.
boardMilestoneTitle
,
...
...
app/assets/javascripts/boards/components/board.js
View file @
021b781a
...
...
@@ -28,16 +28,16 @@ require('./board_list');
data
()
{
return
{
detailIssue
:
Store
.
detail
,
filter
s
:
Store
.
state
.
filters
,
filter
:
Store
.
filter
,
};
},
watch
:
{
filter
s
:
{
handler
()
{
filter
:
{
handler
()
{
this
.
list
.
page
=
1
;
this
.
list
.
getIssues
(
true
);
},
deep
:
true
deep
:
true
,
},
detailIssue
:
{
handler
()
{
...
...
app/assets/javascripts/boards/components/issue_card_inner.js
View file @
021b781a
...
...
@@ -31,29 +31,22 @@
return
!
this
.
list
.
label
||
label
.
id
!==
this
.
list
.
label
.
id
;
},
filterByLabel
(
label
,
e
)
{
let
labelToggleText
=
label
.
title
;
const
labelIndex
=
Store
.
state
.
filters
.
label_name
.
indexOf
(
label
.
title
);
const
filterPath
=
gl
.
issueBoards
.
BoardsStore
.
filter
.
path
.
split
(
'
&
'
);
const
labelTitle
=
encodeURIComponent
(
label
.
title
);
const
param
=
`label_name[]=
${
labelTitle
}
`
;
const
labelIndex
=
filterPath
.
indexOf
(
param
);
$
(
e
.
currentTarget
).
tooltip
(
'
hide
'
);
if
(
labelIndex
===
-
1
)
{
Store
.
state
.
filters
.
label_name
.
push
(
label
.
title
);
$
(
'
.labels-filter
'
).
prepend
(
`<input type="hidden" name="label_name[]" value="
${
label
.
title
}
" />`
);
filterPath
.
push
(
param
);
}
else
{
Store
.
state
.
filters
.
label_name
.
splice
(
labelIndex
,
1
);
labelToggleText
=
Store
.
state
.
filters
.
label_name
[
0
];
$
(
`.labels-filter input[name="label_name[]"][value="
${
label
.
title
}
"]`
).
remove
();
filterPath
.
splice
(
labelIndex
,
1
);
}
const
selectedLabels
=
Store
.
state
.
filters
.
label_name
;
if
(
selectedLabels
.
length
===
0
)
{
labelToggleText
=
'
Label
'
;
}
else
if
(
selectedLabels
.
length
>
1
)
{
labelToggleText
=
`
${
selectedLabels
[
0
]}
+
${
selectedLabels
.
length
-
1
}
more`
;
}
$
(
'
.labels-filter .dropdown-toggle-text
'
).
text
(
labelToggleText
);
gl
.
issueBoards
.
BoardsStore
.
filter
.
path
=
filterPath
.
join
(
'
&
'
);
Store
.
updateFiltersUrl
();
gl
.
boardsFilterManager
.
updateTokens
();
},
labelStyle
(
label
)
{
return
{
...
...
app/assets/javascripts/boards/filtered_search_boards.js
0 → 100644
View file @
021b781a
export
default
class
FilteredSearchBoards
extends
gl
.
FilteredSearchManager
{
constructor
(
store
,
updateUrl
=
false
)
{
super
(
'
boards
'
);
this
.
store
=
store
;
this
.
updateUrl
=
updateUrl
;
this
.
isHandledAsync
=
true
;
}
updateObject
(
path
)
{
this
.
store
.
path
=
path
.
substr
(
1
);
if
(
this
.
updateUrl
)
{
gl
.
issueBoards
.
BoardsStore
.
updateFiltersUrl
();
}
}
updateTokens
()
{
const
tokens
=
document
.
querySelectorAll
(
'
.js-visual-token
'
);
// Remove all the tokens as they will be replaced by the search manager
[].
forEach
.
call
(
tokens
,
(
el
)
=>
{
el
.
parentNode
.
removeChild
(
el
);
});
this
.
loadSearchParamsFromURL
();
// Get the placeholder back if search is empty
this
.
filteredSearchInput
.
dispatchEvent
(
new
Event
(
'
input
'
));
}
}
app/assets/javascripts/boards/models/list.js
View file @
021b781a
...
...
@@ -10,7 +10,6 @@ class List {
this
.
title
=
obj
.
title
;
this
.
type
=
obj
.
list_type
;
this
.
preset
=
[
'
done
'
,
'
blank
'
].
indexOf
(
this
.
type
)
>
-
1
;
this
.
filters
=
gl
.
issueBoards
.
BoardsStore
.
state
.
filters
;
this
.
page
=
1
;
this
.
loading
=
true
;
this
.
loadingMore
=
false
;
...
...
@@ -65,12 +64,27 @@ class List {
}
getIssues
(
emptyIssues
=
true
)
{
const
filters
=
this
.
filters
;
const
data
=
{
page
:
this
.
page
};
gl
.
issueBoards
.
BoardsStore
.
filter
.
path
.
split
(
'
&
'
).
forEach
((
filterParam
)
=>
{
if
(
filterParam
===
''
)
return
;
const
paramSplit
=
filterParam
.
split
(
'
=
'
);
const
paramKeyNormalized
=
paramSplit
[
0
].
replace
(
'
[]
'
,
''
);
const
isArray
=
paramSplit
[
0
].
indexOf
(
'
[]
'
);
let
value
=
decodeURIComponent
(
paramSplit
[
1
]);
value
=
value
.
replace
(
/
\+
/g
,
'
'
);
if
(
isArray
>=
0
)
{
if
(
!
data
[
paramKeyNormalized
])
{
data
[
paramKeyNormalized
]
=
[];
}
Object
.
keys
(
filters
).
forEach
((
key
)
=>
{
data
[
key
]
=
filters
[
key
];
});
data
[
paramKeyNormalized
].
push
(
value
);
}
else
{
data
[
paramKeyNormalized
]
=
value
;
}
});
if
(
this
.
label
)
{
if
(
this
.
label
&&
data
.
label_name
)
{
data
.
label_name
=
data
.
label_name
.
filter
(
label
=>
label
!==
this
.
label
.
title
);
}
...
...
app/assets/javascripts/boards/stores/boards_store.js
View file @
021b781a
...
...
@@ -8,6 +8,9 @@
gl
.
issueBoards
.
BoardsStore
=
{
disabled
:
false
,
filter
:
{
path
:
''
,
},
state
:
{},
detail
:
{
issue
:
{}
...
...
@@ -18,13 +21,7 @@
},
create
()
{
this
.
state
.
lists
=
[];
this
.
state
.
filters
=
{
author_id
:
gl
.
utils
.
getParameterValues
(
'
author_id
'
)[
0
],
assignee_id
:
gl
.
utils
.
getParameterValues
(
'
assignee_id
'
)[
0
],
milestone_title
:
gl
.
utils
.
getParameterValues
(
'
milestone_title
'
)[
0
],
label_name
:
gl
.
utils
.
getParameterValues
(
'
label_name[]
'
),
search
:
''
};
this
.
filter
.
path
=
gl
.
utils
.
getUrlParamsArray
().
join
(
'
&
'
);
},
createNewListDropdownData
()
{
this
.
state
.
currentBoard
=
{};
...
...
@@ -128,7 +125,7 @@
})[
0
];
},
updateFiltersUrl
()
{
history
.
pushState
(
null
,
null
,
`?
${
$
.
param
(
this
.
state
.
filters
)
}
`
);
history
.
pushState
(
null
,
null
,
`?
${
this
.
filter
.
path
}
`
);
}
};
})();
app/assets/javascripts/filtered_search/filtered_search_manager.js
View file @
021b781a
...
...
@@ -109,8 +109,15 @@
e
.
preventDefault
();
if
(
!
activeElements
.
length
)
{
// Prevent droplab from opening dropdown
this
.
dropdownManager
.
destroyDroplab
();
if
(
this
.
isHandledAsync
)
{
e
.
stopImmediatePropagation
();
this
.
filteredSearchInput
.
blur
();
this
.
dropdownManager
.
resetDropdowns
();
}
else
{
// Prevent droplab from opening dropdown
this
.
dropdownManager
.
destroyDroplab
();
}
this
.
search
();
}
...
...
@@ -203,6 +210,10 @@
this
.
handleInputPlaceholder
();
this
.
dropdownManager
.
resetDropdowns
();
if
(
this
.
isHandledAsync
)
{
this
.
search
();
}
}
handleInputVisualToken
()
{
...
...
@@ -349,7 +360,11 @@
const
parameterizedUrl
=
`?scope=all&utf8=✓&
${
paths
.
join
(
'
&
'
)}
`
;
gl
.
utils
.
visitUrl
(
parameterizedUrl
);
if
(
this
.
updateObject
)
{
this
.
updateObject
(
parameterizedUrl
);
}
else
{
gl
.
utils
.
visitUrl
(
parameterizedUrl
);
}
}
getUsernameParams
()
{
...
...
app/assets/javascripts/labels_select.js
View file @
021b781a
...
...
@@ -353,31 +353,17 @@
return
;
}
if
(
$
(
'
html
'
).
hasClass
(
'
issue-boards-page
'
)
&&
!
$dropdown
.
hasClass
(
'
js-issue-board-sidebar
'
)
&&
!
$dropdown
.
closest
(
'
.add-issues-modal
'
).
length
)
{
boardsModel
=
gl
.
issueBoards
.
BoardsStore
.
state
.
filters
;
}
else
if
(
$dropdown
.
closest
(
'
.add-issues-modal
'
).
length
)
{
if
(
$dropdown
.
closest
(
'
.add-issues-modal
'
).
length
)
{
boardsModel
=
gl
.
issueBoards
.
ModalStore
.
store
.
filter
;
}
if
(
boardsModel
)
{
if
(
label
.
isAny
)
{
boardsModel
[
'
label_name
'
]
=
[];
}
else
if
(
$el
.
hasClass
(
'
is-active
'
))
{
}
else
if
(
$el
.
hasClass
(
'
is-active
'
))
{
boardsModel
[
'
label_name
'
].
push
(
label
.
title
);
}
else
{
var
filters
=
boardsModel
[
'
label_name
'
];
filters
=
filters
.
filter
(
function
(
filteredLabel
)
{
return
filteredLabel
!==
label
.
title
;
});
boardsModel
[
'
label_name
'
]
=
filters
;
}
if
(
!
$dropdown
.
closest
(
'
.add-issues-modal
'
).
length
)
{
gl
.
issueBoards
.
BoardsStore
.
updateFiltersUrl
();
}
e
.
preventDefault
();
return
;
}
...
...
app/assets/javascripts/milestone_select.js
View file @
021b781a
...
...
@@ -146,18 +146,12 @@
return
;
}
if
(
$
(
'
html
'
).
hasClass
(
'
issue-boards-page
'
)
&&
!
$dropdown
.
hasClass
(
'
js-issue-board-sidebar
'
)
&&
!
$dropdown
.
closest
(
'
.add-issues-modal
'
).
length
)
{
boardsStore
=
gl
.
issueBoards
.
BoardsStore
.
state
.
filters
;
}
else
if
(
$dropdown
.
closest
(
'
.add-issues-modal
'
).
length
)
{
if
(
$dropdown
.
closest
(
'
.add-issues-modal
'
).
length
)
{
boardsStore
=
gl
.
issueBoards
.
ModalStore
.
store
.
filter
;
}
if
(
boardsStore
)
{
boardsStore
[
$dropdown
.
data
(
'
field-name
'
)]
=
selected
.
name
;
if
(
!
$dropdown
.
closest
(
'
.add-issues-modal
'
).
length
)
{
gl
.
issueBoards
.
BoardsStore
.
updateFiltersUrl
();
}
e
.
preventDefault
();
}
else
if
(
$dropdown
.
hasClass
(
'
js-filter-submit
'
)
&&
(
isIssueIndex
||
isMRIndex
))
{
if
(
selected
.
name
!=
null
)
{
...
...
app/assets/javascripts/users_select.js
View file @
021b781a
...
...
@@ -217,11 +217,6 @@
}
if
(
$el
.
closest
(
'
.add-issues-modal
'
).
length
)
{
gl
.
issueBoards
.
ModalStore
.
store
.
filter
[
$dropdown
.
data
(
'
field-name
'
)]
=
user
.
id
;
}
else
if
(
$
(
'
html
'
).
hasClass
(
'
issue-boards-page
'
)
&&
!
$dropdown
.
hasClass
(
'
js-issue-board-sidebar
'
))
{
selectedId
=
user
.
id
;
gl
.
issueBoards
.
BoardsStore
.
state
.
filters
[
$dropdown
.
data
(
'
field-name
'
)]
=
user
.
id
;
gl
.
issueBoards
.
BoardsStore
.
updateFiltersUrl
();
e
.
preventDefault
();
}
else
if
(
$dropdown
.
hasClass
(
'
js-filter-submit
'
)
&&
(
isIssueIndex
||
isMRIndex
))
{
selectedId
=
user
.
id
;
return
Issuable
.
filterResults
(
$dropdown
.
closest
(
'
form
'
));
...
...
app/assets/stylesheets/framework/filters.scss
View file @
021b781a
...
...
@@ -156,7 +156,6 @@
width
:
100%
;
border
:
1px
solid
$border-color
;
background-color
:
$white-light
;
max-width
:
87%
;
@media
(
max-width
:
$screen-xs-min
)
{
-webkit-flex
:
1
1
100%
;
...
...
@@ -219,6 +218,11 @@
}
}
.filter-dropdown-container
{
display
:
-
webkit-flex
;
display
:
flex
;
}
.dropdown-menu
.filter-dropdown-item
{
padding
:
0
;
}
...
...
app/views/projects/boards/_show.html.haml
View file @
021b781a
...
...
@@ -5,6 +5,7 @@
-
content_for
:page_specific_javascripts
do
=
page_specific_javascript_bundle_tag
(
'common_vue'
)
=
page_specific_javascript_bundle_tag
(
'filtered_search'
)
=
page_specific_javascript_bundle_tag
(
'boards'
)
=
page_specific_javascript_bundle_tag
(
'simulate_drag'
)
if
Rails
.
env
.
test?
...
...
@@ -13,7 +14,8 @@
=
render
"projects/issues/head"
=
render
'shared/issuable/filter'
,
type: :boards
,
board:
board
.hidden-xs.hidden-sm
=
render
'shared/issuable/search_bar'
,
type: :boards
,
board:
board
#board-app
.boards-app
{
"v-cloak"
=>
true
,
data:
board_data
}
.boards-list
{
":class"
=>
"{ 'is-compact': detailIssueVisible }"
}
...
...
app/views/shared/issuable/_filter.html.haml
View file @
021b781a
-
finder
=
controller
.
controller_name
==
'issues'
||
controller
.
controller_name
==
'boards'
?
issues_finder
:
merge_requests_finder
-
finder
=
controller
.
controller_name
==
'issues'
?
issues_finder
:
merge_requests_finder
-
boards_page
=
controller
.
controller_name
==
'boards'
-
board
=
local_assigns
[
:board
]
...
...
@@ -38,21 +38,7 @@
%a
{
href:
page_filter_path
(
without:
issuable_filter_params
)
}
Reset filters
.pull-right
-
if
boards_page
#js-boards-search
.issue-boards-search
%input
.pull-left.form-control
{
type:
"search"
,
placeholder:
"Filter by name..."
,
"v-model"
=>
"filters.search"
,
"debounce"
=>
"250"
}
-
if
can?
(
current_user
,
:admin_list
,
@project
)
#js-add-issues-btn
.pull-right.prepend-left-10
.dropdown.pull-right
%button
.btn.btn-create.btn-inverted.js-new-board-list
{
type:
"button"
,
data:
{
toggle:
"dropdown"
,
labels:
labels_filter_path
,
namespace_path:
@project
.
try
(
:namespace
).
try
(
:path
),
project_path:
@project
.
try
(
:path
)
}
}
Add list
.dropdown-menu.dropdown-menu-paging.dropdown-menu-align-right.dropdown-menu-issues-board-new.dropdown-menu-selectable
=
render
partial:
"shared/issuable/label_page_default"
,
locals:
{
show_footer:
true
,
show_create:
true
,
show_boards_content:
true
,
title:
"Add list"
}
-
if
can?
(
current_user
,
:admin_label
,
@project
)
=
render
partial:
"shared/issuable/label_page_create"
=
dropdown_loading
-
else
=
render
'shared/sort_dropdown'
,
type:
local_assigns
[
:type
]
=
render
'shared/sort_dropdown'
-
if
@bulk_edit
.issues_bulk_update.hide
...
...
app/views/shared/issuable/_search_bar.html.haml
View file @
021b781a
...
...
@@ -100,8 +100,20 @@
%li
.filter-dropdown-item
{
'data-value'
=>
"#{weight}"
}
%button
.btn.btn-link
=
weight
.pull-right.filter-dropdown-container
=
render
'shared/sort_dropdown'
.filter-dropdown-container
-
if
type
==
:boards
-
if
can?
(
current_user
,
:admin_list
,
@project
)
.dropdown.prepend-left-10
#js-add-list
%button
.btn.btn-create.btn-inverted.js-new-board-list
{
type:
"button"
,
data:
{
toggle:
"dropdown"
,
labels:
labels_filter_path
,
namespace_path:
@project
.
try
(
:namespace
).
try
(
:path
),
project_path:
@project
.
try
(
:path
)
}
}
Add list
.dropdown-menu.dropdown-menu-paging.dropdown-menu-align-right.dropdown-menu-issues-board-new.dropdown-menu-selectable
=
render
partial:
"shared/issuable/label_page_default"
,
locals:
{
show_footer:
true
,
show_create:
true
,
show_boards_content:
true
,
title:
"Add list"
}
-
if
can?
(
current_user
,
:admin_label
,
@project
)
=
render
partial:
"shared/issuable/label_page_create"
=
dropdown_loading
#js-add-issues-btn
.prepend-left-10
-
else
=
render
'shared/sort_dropdown'
-
if
@bulk_edit
.issues_bulk_update.hide
...
...
changelogs/unreleased/issue-boards-new-search-bar.yml
0 → 100644
View file @
021b781a
---
title
:
Added new filtered search bar to issue boards
merge_request
:
author
:
spec/features/boards/add_issues_modal_spec.rb
View file @
021b781a
...
...
@@ -51,7 +51,7 @@ describe 'Issue Boards add issue modal', :feature, :js do
end
it
'does not show tooltip on add issues button'
do
button
=
page
.
find
(
'.
issue-boards-search
button'
,
text:
'Add issues'
)
button
=
page
.
find
(
'.
filter-dropdown-container
button'
,
text:
'Add issues'
)
expect
(
button
[
:title
]).
not_to
eq
(
"Please add a list to your board first"
)
end
...
...
spec/features/boards/boards_spec.rb
View file @
021b781a
...
...
@@ -29,7 +29,7 @@ describe 'Issue Boards', feature: true, js: true do
end
it
'shows tooltip on add issues button'
do
button
=
page
.
find
(
'.
issue-boards-search
button'
,
text:
'Add issues'
)
button
=
page
.
find
(
'.
filter-dropdown-container
button'
,
text:
'Add issues'
)
expect
(
button
[
:"data-original-title"
]).
to
eq
(
"Please add a list to your board first"
)
end
...
...
@@ -115,9 +115,8 @@ describe 'Issue Boards', feature: true, js: true do
end
it
'search done list'
do
page
.
within
(
'#js-boards-search'
)
do
find
(
'.form-control'
).
set
(
issue8
.
title
)
end
find
(
'.filtered-search'
).
set
(
issue8
.
title
)
find
(
'.filtered-search'
).
native
.
send_keys
(
:enter
)
wait_for_vue_resource
...
...
@@ -127,9 +126,8 @@ describe 'Issue Boards', feature: true, js: true do
end
it
'search list'
do
page
.
within
(
'#js-boards-search'
)
do
find
(
'.form-control'
).
set
(
issue5
.
title
)
end
find
(
'.filtered-search'
).
set
(
issue5
.
title
)
find
(
'.filtered-search'
).
native
.
send_keys
(
:enter
)
wait_for_vue_resource
...
...
@@ -333,7 +331,7 @@ describe 'Issue Boards', feature: true, js: true do
wait_for_vue_resource
expect
(
find
(
'.issue-boards-search'
)).
to
have_selector
(
'
.open'
)
expect
(
page
).
to
have_css
(
'#js-add-list
.open'
)
end
it
'creates new list from a new label'
do
...
...
@@ -359,17 +357,9 @@ describe 'Issue Boards', feature: true, js: true do
context
'filtering'
do
it
'filters by author'
do
page
.
within
'.issues-filters'
do
click_button
(
'Author'
)
wait_for_ajax
page
.
within
'.dropdown-menu-author'
do
click_link
(
user2
.
name
)
end
wait_for_vue_resource
expect
(
find
(
'.js-author-search'
)).
to
have_content
(
user2
.
name
)
end
set_filter
(
"author"
,
user2
.
username
)
click_filter_link
(
user2
.
username
)
submit_filter
wait_for_vue_resource
wait_for_board_cards
(
1
,
1
)
...
...
@@ -377,17 +367,9 @@ describe 'Issue Boards', feature: true, js: true do
end
it
'filters by assignee'
do
page
.
within
'.issues-filters'
do
click_button
(
'Assignee'
)
wait_for_ajax
page
.
within
'.dropdown-menu-assignee'
do
click_link
(
user
.
name
)
end
wait_for_vue_resource
expect
(
find
(
'.js-assignee-search'
)).
to
have_content
(
user
.
name
)
end
set_filter
(
"assignee"
,
user
.
username
)
click_filter_link
(
user
.
username
)
submit_filter
wait_for_vue_resource
...
...
@@ -396,17 +378,9 @@ describe 'Issue Boards', feature: true, js: true do
end
it
'filters by milestone'
do
page
.
within
'.issues-filters'
do
click_button
(
'Milestone'
)
wait_for_ajax
page
.
within
'.milestone-filter'
do
click_link
(
milestone
.
title
)
end
wait_for_vue_resource
expect
(
find
(
'.js-milestone-select'
)).
to
have_content
(
milestone
.
title
)
end
set_filter
(
"milestone"
,
"
\"
#{
milestone
.
title
}
\"
"
)
click_filter_link
(
milestone
.
title
)
submit_filter
wait_for_vue_resource
wait_for_board_cards
(
1
,
1
)
...
...
@@ -415,16 +389,9 @@ describe 'Issue Boards', feature: true, js: true do
end
it
'filters by label'
do
page
.
within
'.issues-filters'
do
click_button
(
'Label'
)
wait_for_ajax
page
.
within
'.dropdown-menu-labels'
do
click_link
(
testing
.
title
)
wait_for_vue_resource
find
(
'.dropdown-menu-close'
).
click
end
end
set_filter
(
"label"
,
testing
.
title
)
click_filter_link
(
testing
.
title
)
submit_filter
wait_for_vue_resource
wait_for_board_cards
(
1
,
1
)
...
...
@@ -432,19 +399,14 @@ describe 'Issue Boards', feature: true, js: true do
end
it
'filters by label with space after reload'
do
page
.
within
'.issues-filters'
do
click_button
(
'Label'
)
wait_for_ajax
page
.
within
'.dropdown-menu-labels'
do
click_link
(
accepting
.
title
)
wait_for_vue_resource
(
spinner:
false
)
find
(
'.dropdown-menu-close'
).
click
end
end
set_filter
(
"label"
,
"
\"
#{
accepting
.
title
}
\"
"
)
click_filter_link
(
accepting
.
title
)
submit_filter
# Test after reload
page
.
evaluate_script
'window.location.reload()'
wait_for_board_cards
(
1
,
1
)
wait_for_empty_boards
((
2
..
3
))
wait_for_vue_resource
...
...
@@ -460,26 +422,16 @@ describe 'Issue Boards', feature: true, js: true do
end
it
'removes filtered labels'
do
wait_for_vue_resource
set_filter
(
"label"
,
testing
.
title
)
click_filter_link
(
testing
.
title
)
submit_filter
page
.
within
'.labels-filter'
do
click_button
(
'Label'
)
wait_for_ajax
page
.
within
'.dropdown-menu-labels'
do
click_link
(
testing
.
title
)
wait_for_vue_resource
(
spinner:
false
)
end
expect
(
page
).
to
have_css
(
'input[name="label_name[]"]'
,
visible:
false
)
wait_for_board_cards
(
1
,
1
)
page
.
within
'.dropdown-menu-labels'
do
click_link
(
testing
.
title
)
wait_for_vue_resource
(
spinner:
false
)
end
find
(
'.clear-search'
).
click
submit_filter
expect
(
page
).
not_to
have_css
(
'input[name="label_name[]"]'
,
visible:
false
)
end
wait_for_board_cards
(
1
,
8
)
end
it
'infinite scrolls list with label filter'
do
...
...
@@ -487,16 +439,9 @@ describe 'Issue Boards', feature: true, js: true do
create
(
:labeled_issue
,
project:
project
,
labels:
[
planning
,
testing
])
end
page
.
within
'.issues-filters'
do
click_button
(
'Label'
)
wait_for_ajax
page
.
within
'.dropdown-menu-labels'
do
click_link
(
testing
.
title
)
wait_for_vue_resource
find
(
'.dropdown-menu-close'
).
click
end
end
set_filter
(
"label"
,
testing
.
title
)
click_filter_link
(
testing
.
title
)
submit_filter
wait_for_vue_resource
...
...
@@ -518,18 +463,13 @@ describe 'Issue Boards', feature: true, js: true do
end
it
'filters by multiple labels'
do
page
.
within
'.issues-filters'
do
click_button
(
'Label'
)
wait_for_ajax
set_filter
(
"label"
,
testing
.
title
)
click_filter_link
(
testing
.
title
)
page
.
within
(
find
(
'.dropdown-menu-labels'
))
do
click_link
(
testing
.
title
)
wait_for_vue_resource
click_link
(
bug
.
title
)
wait_for_vue_resource
find
(
'.dropdown-menu-close'
).
click
end
end
set_filter
(
"label"
,
bug
.
title
)
click_filter_link
(
bug
.
title
)
submit_filter
wait_for_vue_resource
...
...
@@ -545,14 +485,14 @@ describe 'Issue Boards', feature: true, js: true do
wait_for_vue_resource
end
page
.
within
(
'.tokens-container'
)
do
expect
(
page
).
to
have_content
(
bug
.
title
)
end
wait_for_vue_resource
wait_for_board_cards
(
1
,
1
)
wait_for_empty_boards
((
2
..
3
))
page
.
within
(
'.labels-filter'
)
do
expect
(
find
(
'.dropdown-toggle-text'
)).
to
have_content
(
bug
.
title
)
end
end
it
'removes label filter by clicking label button on issue'
do
...
...
@@ -560,16 +500,13 @@ describe 'Issue Boards', feature: true, js: true do
page
.
within
(
find
(
'.card'
,
match: :first
))
do
click_button
(
bug
.
title
)
end
wait_for_vue_resource
expect
(
page
).
to
have_selector
(
'.card'
,
count:
1
)
end
wait_for_vue_resource
page
.
within
(
'.labels-filter'
)
do
expect
(
find
(
'.dropdown-toggle-text'
)).
to
have_content
(
bug
.
title
)
end
end
end
end
...
...
@@ -643,4 +580,20 @@ describe 'Issue Boards', feature: true, js: true do
wait_for_board_cards
(
board
,
0
)
end
end
def
set_filter
(
type
,
text
)
find
(
'.filtered-search'
).
native
.
send_keys
(
"
#{
type
}
:
#{
text
}
"
)
end
def
submit_filter
find
(
'.filtered-search'
).
native
.
send_keys
(
:enter
)
end
def
click_filter_link
(
link_text
)
page
.
within
(
'.filtered-search-input-container'
)
do
expect
(
page
).
to
have_button
(
link_text
)
click_button
(
link_text
)
end
end
end
spec/features/issuables/default_sort_order_spec.rb
View file @
021b781a
...
...
@@ -176,7 +176,7 @@ describe 'Projects > Issuables > Default sort order', feature: true do
end
def
selected_sort_order
find
(
'.
pull-right
.dropdown button'
).
text
.
downcase
find
(
'.
filter-dropdown-container
.dropdown button'
).
text
.
downcase
end
def
visit_merge_requests_with_state
(
project
,
state
)
...
...
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