Support board quick filter

Description

We should display on shared board same filter that are available on Jira board as a configuration option.
All quick filter, some quick filter, non-quick filter.

We should add possibility to define custom quick-filters for shared board.

image-20240729-124822.png

We want to ensure that those currently 2 default quick filters will stay for existing shares and new share will have them added by default:
Open / Recently updated

Linked issues

blocks
Issue Type Icon ESFJ-721 Support custom quick filter Priority: Medium
Withdrawn

Activity

Automation for Jira 19 September 2024, 15:48

Hello @Mykhailo Iereshchenko,

Please merge code to dev branch.
This is the best moment to add more information that can be helpful to prepare release notes.

  • Can you prepare short overview of change that can be used in release notes?

  • Please provide short GIF that showcase feature.

  • If GIF make no sense, can you provide image that highlights feature that can be used in release notes (cropped & annotated)?

Polina Naumenko 19 September 2024, 15:48

Improvement implemented - QA env

image-20240919-144434.png
image-20240919-144507.png

labels = "Test2" AND priority = "Lowest" AND status = "In Progress"

image-20240919-154753.png
image-20240919-154746.png
Automation for Jira 30 August 2024, 06:03

Hello @Mariusz Szymański,
Task is ready for review.

@Mykhailo Iereshchenko please make sure reviewer
have easy access to contend to be reviewed.

If this is code change. Please make sure PR is created.
If this is new documentation, blogpost, etc. Please provide link to page.

Mykhailo Iereshchenko 23 August 2024, 06:57

A new "Quick Filters" tab has been added to the board configuration. Users can now select which quick filters to include on their board. All existing boards will automatically have two default quick filters, "Open" and "Recently Updated," pre-added. When a new board is created, these two default filters will also be added automatically, but users have the option to remove them. Users can create their own custom quick filters, select from existing Jira board filters, or add the default quick filters. While creating custom quick filter validation for both name and jql field is present. If share is not board, “Quick filters” tab is not shown.

Automation for Jira 23 August 2024, 06:33

Hello @Mykhailo Iereshchenko

This is the best moment to add more information that can be helpful for tester.

  • What areas are affected?

  • What are potential edge cases?

  • Was it checked for XSS problems?

  • Does change affect security, is new data exposed?

Please attach - Before / After screenshot if possible.

Automation for Jira 19 August 2024, 07:58

Hello @Mykhailo Iereshchenko,
Change was reviewed and approved.
Task is ready to be deployed to QA.
Once it is deployed to QA please move ticket to "To Test"

Thank you!

Krzysztof Bogdan 13 August 2024, 07:37

@Mykhailo Iereshchenko Changes requested

Automation for Jira 13 August 2024, 07:23

Hello [~accountid:],
Task is ready for review.

@Mykhailo Iereshchenko please make sure reviewer
have easy access to contend to be reviewed.

If this is code change. Please make sure PR is created.
If this is new documentation, blogpost, etc. Please provide link to page.

Krzysztof Bogdan 29 July 2024, 12:55

1

2

3

4

5

6

7

8

9

10

11

12

Idea of filter config structure:
[
  {
    "type": "custom",
    "name": "Open",
    "jql": "project = SCRATCH AND status = Open",
  },
  {
    "type": "board",
    "board_filter_id": 132
  }
]