Commit 809bba7d authored by Phil Hughes's avatar Phil Hughes

Updated specs

parent 382fea7b
...@@ -62,7 +62,7 @@ $(() => { ...@@ -62,7 +62,7 @@ $(() => {
created () { created () {
gl.boardService = new BoardService(this.endpoint, this.bulkUpdatePath, this.boardId); gl.boardService = new BoardService(this.endpoint, this.bulkUpdatePath, this.boardId);
new FilteredSearchBoards(Store.filter, true); gl.boardsFilterManager = new FilteredSearchBoards(Store.filter, true);
}, },
mounted () { mounted () {
Store.disabled = this.disabled; Store.disabled = this.disabled;
...@@ -85,7 +85,7 @@ $(() => { ...@@ -85,7 +85,7 @@ $(() => {
}); });
gl.IssueBoardsSearch = new Vue({ gl.IssueBoardsSearch = new Vue({
el: document.getElementById('js-boards-search'), el: document.getElementById('js-add-list'),
data: { data: {
filters: Store.state.filters filters: Store.state.filters
}, },
......
...@@ -31,29 +31,22 @@ ...@@ -31,29 +31,22 @@
return !this.list.label || label.id !== this.list.label.id; return !this.list.label || label.id !== this.list.label.id;
}, },
filterByLabel(label, e) { filterByLabel(label, e) {
let labelToggleText = label.title; const filterPath = gl.issueBoards.BoardsStore.filter.path.split('&');
const labelIndex = Store.state.filters.label_name.indexOf(label.title); const labelTitle = encodeURIComponent(label.title);
const param = `label_name[]=${labelTitle}`;
const labelIndex = filterPath.indexOf(param);
$(e.currentTarget).tooltip('hide'); $(e.currentTarget).tooltip('hide');
if (labelIndex === -1) { if (labelIndex === -1) {
Store.state.filters.label_name.push(label.title); filterPath.push(param);
$('.labels-filter').prepend(`<input type="hidden" name="label_name[]" value="${label.title}" />`);
} else { } else {
Store.state.filters.label_name.splice(labelIndex, 1); filterPath.splice(labelIndex, 1);
labelToggleText = Store.state.filters.label_name[0];
$(`.labels-filter input[name="label_name[]"][value="${label.title}"]`).remove();
} }
const selectedLabels = Store.state.filters.label_name; gl.issueBoards.BoardsStore.filter.path = filterPath.join('&');
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);
Store.updateFiltersUrl(); Store.updateFiltersUrl();
gl.boardsFilterManager.updateTokens();
}, },
labelStyle(label) { labelStyle(label) {
return { return {
......
...@@ -14,4 +14,18 @@ export default class FilteredSearchBoards extends gl.FilteredSearchManager { ...@@ -14,4 +14,18 @@ export default class FilteredSearchBoards extends gl.FilteredSearchManager {
gl.issueBoards.BoardsStore.updateFiltersUrl(); 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'));
}
} }
...@@ -10,7 +10,6 @@ class List { ...@@ -10,7 +10,6 @@ class List {
this.title = obj.title; this.title = obj.title;
this.type = obj.list_type; this.type = obj.list_type;
this.preset = ['done', 'blank'].indexOf(this.type) > -1; this.preset = ['done', 'blank'].indexOf(this.type) > -1;
this.filterPath = gl.issueBoards.BoardsStore.filter.path;
this.page = 1; this.page = 1;
this.loading = true; this.loading = true;
this.loadingMore = false; this.loadingMore = false;
...@@ -67,18 +66,20 @@ class List { ...@@ -67,18 +66,20 @@ class List {
getIssues (emptyIssues = true) { getIssues (emptyIssues = true) {
const data = { page: this.page }; const data = { page: this.page };
gl.issueBoards.BoardsStore.filter.path.split('&').forEach((filterParam) => { gl.issueBoards.BoardsStore.filter.path.split('&').forEach((filterParam) => {
if (filterParam === '') return;
const paramSplit = filterParam.split('='); const paramSplit = filterParam.split('=');
const paramKeyNormalized = paramSplit[0].replace('[]', ''); const paramKeyNormalized = paramSplit[0].replace('[]', '');
const isArray = paramSplit[0].indexOf('[]'); const isArray = paramSplit[0].indexOf('[]');
const value = decodeURIComponent(paramSplit[1]);
if (isArray >= 0) { if (isArray >= 0) {
if (!data[paramKeyNormalized]) { if (!data[paramKeyNormalized]) {
data[paramKeyNormalized] = []; data[paramKeyNormalized] = [];
} }
data[paramKeyNormalized].push(paramSplit[1]); data[paramKeyNormalized].push(value);
} else { } else {
data[paramKeyNormalized] = paramSplit[1]; data[paramKeyNormalized] = value;
} }
}); });
...@@ -101,6 +102,7 @@ class List { ...@@ -101,6 +102,7 @@ class List {
} }
this.createIssues(data.issues); this.createIssues(data.issues);
console.log(this.issues.length);
}); });
} }
......
...@@ -156,7 +156,6 @@ ...@@ -156,7 +156,6 @@
width: 100%; width: 100%;
border: 1px solid $border-color; border: 1px solid $border-color;
background-color: $white-light; background-color: $white-light;
max-width: 87%;
@media (max-width: $screen-xs-min) { @media (max-width: $screen-xs-min) {
-webkit-flex: 1 1 100%; -webkit-flex: 1 1 100%;
......
...@@ -88,7 +88,7 @@ ...@@ -88,7 +88,7 @@
.filter-dropdown-container .filter-dropdown-container
- if type == :boards - if type == :boards
- if can?(current_user, :admin_list, @project) - if can?(current_user, :admin_list, @project)
.dropdown.prepend-left-10 .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) } } %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 Add list
.dropdown-menu.dropdown-menu-paging.dropdown-menu-align-right.dropdown-menu-issues-board-new.dropdown-menu-selectable .dropdown-menu.dropdown-menu-paging.dropdown-menu-align-right.dropdown-menu-issues-board-new.dropdown-menu-selectable
......
...@@ -51,7 +51,7 @@ describe 'Issue Boards add issue modal', :feature, :js do ...@@ -51,7 +51,7 @@ describe 'Issue Boards add issue modal', :feature, :js do
end end
it 'does not show tooltip on add issues button' do 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") expect(button[:title]).not_to eq("Please add a list to your board first")
end end
......
...@@ -359,17 +359,9 @@ describe 'Issue Boards', feature: true, js: true do ...@@ -359,17 +359,9 @@ describe 'Issue Boards', feature: true, js: true do
context 'filtering' do context 'filtering' do
it 'filters by author' do it 'filters by author' do
page.within '.issues-filters' do set_filter("author", user2.username)
click_button('Author') click_filter_link(user2.username)
wait_for_ajax submit_filter
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
wait_for_vue_resource wait_for_vue_resource
wait_for_board_cards(1, 1) wait_for_board_cards(1, 1)
...@@ -377,17 +369,9 @@ describe 'Issue Boards', feature: true, js: true do ...@@ -377,17 +369,9 @@ describe 'Issue Boards', feature: true, js: true do
end end
it 'filters by assignee' do it 'filters by assignee' do
page.within '.issues-filters' do set_filter("assignee", user.username)
click_button('Assignee') click_filter_link(user.username)
wait_for_ajax submit_filter
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
wait_for_vue_resource wait_for_vue_resource
...@@ -396,17 +380,9 @@ describe 'Issue Boards', feature: true, js: true do ...@@ -396,17 +380,9 @@ describe 'Issue Boards', feature: true, js: true do
end end
it 'filters by milestone' do it 'filters by milestone' do
page.within '.issues-filters' do set_filter("milestone", "\"#{milestone.title}\"")
click_button('Milestone') click_filter_link(milestone.title)
wait_for_ajax submit_filter
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
wait_for_vue_resource wait_for_vue_resource
wait_for_board_cards(1, 1) wait_for_board_cards(1, 1)
...@@ -415,16 +391,9 @@ describe 'Issue Boards', feature: true, js: true do ...@@ -415,16 +391,9 @@ describe 'Issue Boards', feature: true, js: true do
end end
it 'filters by label' do it 'filters by label' do
page.within '.issues-filters' do set_filter("label", testing.title)
click_button('Label') click_filter_link(testing.title)
wait_for_ajax submit_filter
page.within '.dropdown-menu-labels' do
click_link(testing.title)
wait_for_vue_resource
find('.dropdown-menu-close').click
end
end
wait_for_vue_resource wait_for_vue_resource
wait_for_board_cards(1, 1) wait_for_board_cards(1, 1)
...@@ -432,19 +401,14 @@ describe 'Issue Boards', feature: true, js: true do ...@@ -432,19 +401,14 @@ describe 'Issue Boards', feature: true, js: true do
end end
it 'filters by label with space after reload' do it 'filters by label with space after reload' do
page.within '.issues-filters' do set_filter("label", "\"#{accepting.title}\"")
click_button('Label') click_filter_link(accepting.title)
wait_for_ajax submit_filter
page.within '.dropdown-menu-labels' do
click_link(accepting.title)
wait_for_vue_resource(spinner: false)
find('.dropdown-menu-close').click
end
end
# Test after reload # Test after reload
page.evaluate_script 'window.location.reload()' page.evaluate_script 'window.location.reload()'
wait_for_board_cards(1, 1)
wait_for_empty_boards((2..3))
wait_for_vue_resource wait_for_vue_resource
...@@ -460,26 +424,16 @@ describe 'Issue Boards', feature: true, js: true do ...@@ -460,26 +424,16 @@ describe 'Issue Boards', feature: true, js: true do
end end
it 'removes filtered labels' do it 'removes filtered labels' do
wait_for_vue_resource set_filter("label", testing.title)
click_filter_link(testing.title)
page.within '.labels-filter' do submit_filter
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 find('.clear-search').click
click_link(testing.title) submit_filter
wait_for_vue_resource(spinner: false)
end
expect(page).not_to have_css('input[name="label_name[]"]', visible: false) wait_for_board_cards(1, 8)
end
end end
it 'infinite scrolls list with label filter' do it 'infinite scrolls list with label filter' do
...@@ -487,16 +441,9 @@ describe 'Issue Boards', feature: true, js: true do ...@@ -487,16 +441,9 @@ describe 'Issue Boards', feature: true, js: true do
create(:labeled_issue, project: project, labels: [planning, testing]) create(:labeled_issue, project: project, labels: [planning, testing])
end end
page.within '.issues-filters' do set_filter("label", testing.title)
click_button('Label') click_filter_link(testing.title)
wait_for_ajax submit_filter
page.within '.dropdown-menu-labels' do
click_link(testing.title)
wait_for_vue_resource
find('.dropdown-menu-close').click
end
end
wait_for_vue_resource wait_for_vue_resource
...@@ -518,18 +465,13 @@ describe 'Issue Boards', feature: true, js: true do ...@@ -518,18 +465,13 @@ describe 'Issue Boards', feature: true, js: true do
end end
it 'filters by multiple labels' do it 'filters by multiple labels' do
page.within '.issues-filters' do set_filter("label", testing.title)
click_button('Label') click_filter_link(testing.title)
wait_for_ajax
page.within(find('.dropdown-menu-labels')) do set_filter("label", bug.title)
click_link(testing.title) click_filter_link(bug.title)
wait_for_vue_resource
click_link(bug.title) submit_filter
wait_for_vue_resource
find('.dropdown-menu-close').click
end
end
wait_for_vue_resource wait_for_vue_resource
...@@ -545,14 +487,14 @@ describe 'Issue Boards', feature: true, js: true do ...@@ -545,14 +487,14 @@ describe 'Issue Boards', feature: true, js: true do
wait_for_vue_resource wait_for_vue_resource
end end
page.within('.tokens-container') do
expect(page).to have_content(bug.title)
end
wait_for_vue_resource wait_for_vue_resource
wait_for_board_cards(1, 1) wait_for_board_cards(1, 1)
wait_for_empty_boards((2..3)) wait_for_empty_boards((2..3))
page.within('.labels-filter') do
expect(find('.dropdown-toggle-text')).to have_content(bug.title)
end
end end
it 'removes label filter by clicking label button on issue' do it 'removes label filter by clicking label button on issue' do
...@@ -560,16 +502,13 @@ describe 'Issue Boards', feature: true, js: true do ...@@ -560,16 +502,13 @@ describe 'Issue Boards', feature: true, js: true do
page.within(find('.card', match: :first)) do page.within(find('.card', match: :first)) do
click_button(bug.title) click_button(bug.title)
end end
wait_for_vue_resource wait_for_vue_resource
expect(page).to have_selector('.card', count: 1) expect(page).to have_selector('.card', count: 1)
end end
wait_for_vue_resource wait_for_vue_resource
page.within('.labels-filter') do
expect(find('.dropdown-toggle-text')).to have_content(bug.title)
end
end end
end end
end end
...@@ -643,4 +582,20 @@ describe 'Issue Boards', feature: true, js: true do ...@@ -643,4 +582,20 @@ describe 'Issue Boards', feature: true, js: true do
wait_for_board_cards(board, 0) wait_for_board_cards(board, 0)
end end
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 end
...@@ -176,7 +176,7 @@ describe 'Projects > Issuables > Default sort order', feature: true do ...@@ -176,7 +176,7 @@ describe 'Projects > Issuables > Default sort order', feature: true do
end end
def selected_sort_order def selected_sort_order
find('.pull-right .dropdown button').text.downcase find('.filter-dropdown-container .dropdown button').text.downcase
end end
def visit_merge_requests_with_state(project, state) def visit_merge_requests_with_state(project, state)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment