sindresorhus/refined-github

Remove is:open/is:closed issue search query with a click #2574

mikhaelkh posted onGitHub

<table><td> @fregante said: <tr><td> For the bounty:

  1. Use this https://github.com/sindresorhus/refined-github/issues/2574#issuecomment-559944187
  2. Remove icons as suggested in https://github.com/sindresorhus/refined-github/issues/2574#issuecomment-564284650
  3. Add is:merged filter in PRs

</table>

To see all issues (open and closed) you need to manually remove is:open/is:closed search query. Maybe add "All" next to "Open", "Closed", with or without counter, to remove this query with a click?

Example URL: https://github.com/sindresorhus/refined-github/issues


i also like to remove the is:pr and is:issue and leave the sort:updated-desc:

Bildschirmfoto 2019-11-30 um 01 57 11

the one click link under the search bar reset it to is:pr is:open if i am in PR :(

posted by muescha over 5 years ago

@muescha commented on Nov 30, 2019, 1:58 AM GMT+1:

i also like to remove the is:pr and is:issue and leave the sort:updated-desc: the one click link under the search bar reset it to is:pr is:open if i am in PR :(

There is an useful UserScript for that: GitHub Latest.

posted by jerone over 5 years ago

There is an useful UserScript for that: GitHub Latest

Also https://github.com/sindresorhus/show-all-github-issues or <img width="233" alt="filter" src="https://user-images.githubusercontent.com/1402241/69899410-fcc54e80-1397-11ea-92ec-1074e1d149a3.png">

posted by fregante over 5 years ago

remove this query with a click?

I think we can just replace the selected Open or Closed link:

<img width="310" alt="Screenshot 2019-11-30 at 17 27 47" src="https://user-images.githubusercontent.com/1402241/69899313-db179780-1396-11ea-950b-d4174178bd7c.png">

In this case, the Open links to the same page you're on, which is useless.


On https://github.com/sindresorhus/refined-github/issues, the Open link should be replaced from:

to:

Here's some untested code, probably 80% of the feature:

const currentQuery = new URLSearchParams(location.search).get('q') ?? select('#js-issues-search').value;
for (const link of select.all('open, close')) {
    const linkSearchParams = new URLSearchParams(link.search);
    const linkQuery = linkSearchParams.get('q');
    if (linkQuery === currentQuery) {
        linkSearchParams.set('q', linkQuery.replace(/is:open|is:closed/, '').trim())
        link.search = String(linkSearchParams);
        return; // The next link won't match this condition for sure
    }
}
posted by fregante over 5 years ago

On sindresorhus/refined-github/issues, the Open link should be replaced from:

Open button will show all the queries this ways (which I don't felt intuitive), I think adding a all button is much better.

posted by gurrrung over 5 years ago
  1. Open https://github.com/sindresorhus/refined-github/issues/created_by/fregante
  2. Open the Author filter
  3. Click fregante

What happens? The author:fregante filter is removed.

This is the same behavior I'm suggesting here: clicking Open (or Closed) will remove is:open (or is:closed)

Open/Closed are filters after all and all the filters in that list act exactly the same way: clicking a selected filter removes it.

posted by fregante over 5 years ago

That sounds good, but the downside of this approach is that it is silent. You need to read changelog or stumble on this change by accident to know that now it's working.

posted by mikhaelkh over 5 years ago

That sounds good, but the downside of this approach is that it is silent. You need to read changelog or stumble on this change by accident to know that now it's working.

We have a lot of features like that. This specific feature can be replicated without buttons (i.e. just select and delete those 7 characters from the query) so it would make even more sense as "hidden" shortcut.

Adding a button for every feature (ours or GitHub’s) will just create a cluttered site.

posted by fregante over 5 years ago

clicking Open (or Closed) will remove is:open (or is:closed)

If this is implemented, I would suggest to alter the closed icon. If you select an author, label or any other dropdown, it is checked with an ✔ (check). Currently, the closed status has that same ✔ (check) icon. Which confuses me; is the closed status now checked or not?! Maybe just removing both icons, and prepending the ✔ (check) icon when it is selected.

posted by jerone over 5 years ago

Interesting point, I wouldn't mind removing the icons altogether simply to reduce noise and add space for a possible is:merged toggle in the future (open / closed / merged)

posted by fregante over 5 years ago

@fregante has funded $15.00 to this issue.


posted by issuehunt-app[bot] about 5 years ago

i would suggest to have:

  • 1,353 All | 80 Open | 1,273 Closed or
  • 80 Open | 1,273 Closed | 1,353 All
posted by muescha about 5 years ago

@sindresorhus has rewarded $13.50 to @karlheitmann. See it on IssueHunt

  • :moneybag: Total deposit: $15.00
  • :tada: Repository reward(0%): $0.00
  • :wrench: Service fee(10%): $1.50
posted by issuehunt-app[bot] about 5 years ago

Fund this Issue

$15.00
Rewarded

Rewarded pull request

Recent activities

karlheitmann was rewarded by sindresorhus for sindresorhus/refined-github# 2574
about 5 years ago