Add Any
option to milestone filter
This commit is contained in:
parent
c1d821ed49
commit
5d8036a4b6
6 changed files with 39 additions and 8 deletions
|
@ -67,6 +67,11 @@ export const conditions = [
|
|||
tokenKey: 'milestone',
|
||||
value: 'none',
|
||||
},
|
||||
{
|
||||
url: 'milestone_title=Any+Milestone',
|
||||
tokenKey: 'milestone',
|
||||
value: 'any',
|
||||
},
|
||||
{
|
||||
url: 'milestone_title=%23upcoming',
|
||||
tokenKey: 'milestone',
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
%button.btn.btn-link{ type: 'button' }
|
||||
= sprite_icon('search')
|
||||
%span
|
||||
Press Enter or click to search
|
||||
= _('Press Enter or click to search')
|
||||
%ul.filter-dropdown{ data: { dynamic: true, dropdown: true } }
|
||||
%li.filter-dropdown-item
|
||||
%button.btn.btn-link{ type: 'button' }
|
||||
|
@ -61,7 +61,7 @@
|
|||
%ul{ data: { dropdown: true } }
|
||||
%li.filter-dropdown-item{ data: { value: 'none' } }
|
||||
%button.btn.btn-link{ type: 'button' }
|
||||
No Assignee
|
||||
= _('No Assignee')
|
||||
%li.divider.droplab-item-ignore
|
||||
- if current_user
|
||||
= render 'shared/issuable/user_dropdown_item',
|
||||
|
@ -74,13 +74,16 @@
|
|||
%ul{ data: { dropdown: true } }
|
||||
%li.filter-dropdown-item{ data: { value: 'none' } }
|
||||
%button.btn.btn-link{ type: 'button' }
|
||||
No Milestone
|
||||
= _('None')
|
||||
%li.filter-dropdown-item{ data: { value: 'any' } }
|
||||
%button.btn.btn-link{ type: 'button' }
|
||||
= _('Any')
|
||||
%li.filter-dropdown-item{ data: { value: 'upcoming' } }
|
||||
%button.btn.btn-link{ type: 'button' }
|
||||
Upcoming
|
||||
= _('Upcoming')
|
||||
%li.filter-dropdown-item{ 'data-value' => 'started' }
|
||||
%button.btn.btn-link{ type: 'button' }
|
||||
Started
|
||||
= _('Started')
|
||||
%li.divider.droplab-item-ignore
|
||||
%ul.filter-dropdown{ data: { dynamic: true, dropdown: true } }
|
||||
%li.filter-dropdown-item
|
||||
|
@ -90,7 +93,7 @@
|
|||
%ul{ data: { dropdown: true } }
|
||||
%li.filter-dropdown-item{ data: { value: 'none' } }
|
||||
%button.btn.btn-link{ type: 'button' }
|
||||
No Label
|
||||
= _('No Label')
|
||||
%li.divider.droplab-item-ignore
|
||||
%ul.filter-dropdown{ data: { dynamic: true, dropdown: true } }
|
||||
%li.filter-dropdown-item
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Added `Any` option to milestones filter
|
||||
merge_request: 22351
|
||||
author: Heinrich Lee Yu
|
||||
type: added
|
|
@ -68,7 +68,8 @@ From [project issue boards](../issue_board.md), you can filter by both group mil
|
|||
|
||||
When filtering by milestone, in addition to choosing a specific project milestone or group milestone, you can choose a special milestone filter.
|
||||
|
||||
- **No Milestone**: Show issues or merge requests with no assigned milestone.
|
||||
- **None**: Show issues or merge requests with no assigned milestone.
|
||||
- **Any**: Show issues or merge requests that have an assigned milestone.
|
||||
- **Upcoming**: Show issues or merge requests that have been assigned the open milestone that has the next upcoming due date (i.e. nearest due date in the future).
|
||||
- **Started**: Show issues or merge requests that have an assigned milestone with a start date that is before today.
|
||||
|
||||
|
|
|
@ -4027,6 +4027,12 @@ msgstr ""
|
|||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
msgid "No Assignee"
|
||||
msgstr ""
|
||||
|
||||
msgid "No Label"
|
||||
msgstr ""
|
||||
|
||||
msgid "No assignee"
|
||||
msgstr ""
|
||||
|
||||
|
@ -6594,6 +6600,9 @@ msgstr ""
|
|||
msgid "Up to date"
|
||||
msgstr ""
|
||||
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -189,13 +189,21 @@ describe 'Dropdown milestone', :js do
|
|||
end
|
||||
|
||||
it 'selects `no milestone`' do
|
||||
click_static_milestone('No Milestone')
|
||||
click_static_milestone('None')
|
||||
|
||||
expect(page).to have_css(js_dropdown_milestone, visible: false)
|
||||
expect_tokens([milestone_token('none', false)])
|
||||
expect_filtered_search_input_empty
|
||||
end
|
||||
|
||||
it 'selects `any milestone`' do
|
||||
click_static_milestone('Any')
|
||||
|
||||
expect(page).to have_css(js_dropdown_milestone, visible: false)
|
||||
expect_tokens([milestone_token('any', false)])
|
||||
expect_filtered_search_input_empty
|
||||
end
|
||||
|
||||
it 'selects `upcoming milestone`' do
|
||||
click_static_milestone('Upcoming')
|
||||
|
||||
|
|
Loading…
Reference in a new issue