Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make "hide empty rules" persistent #15807

Merged
merged 4 commits into from
Jan 20, 2025

Conversation

leonnicolas
Copy link
Contributor

It can be a bit annoying to always press "hide empty rules". This commit
uses the session storage of the browser to make it persistent.

Signed-off-by: leonnicolas [email protected]

It can be a bit annoying to always press "hide empty rules". This commit
uses the session storage of the browser to make it persistent.

Signed-off-by: leonnicolas <[email protected]>
@leonnicolas leonnicolas changed the title Make "hide empty rules persistent" Make "hide empty rules" persistent Jan 13, 2025
@leonnicolas leonnicolas marked this pull request as ready for review January 13, 2025 09:03
@leonnicolas leonnicolas requested a review from juliusv as a code owner January 13, 2025 09:03
@juliusv
Copy link
Member

juliusv commented Jan 13, 2025

Thanks! Yeah, I was first thinking that this should also go into the URL like the other parameters, but it probably makes more sense to persist it in localStorage because it's likely a setting you don't want to have to change again every time you navigate to one of the rules pages anew. However, we have the same kind of situation in the Targets page, where the equivalent parameter is currently stored in the URL (&showEmptyPools=0|1). It would be good if we made them consistent. So probably the Targets page parameter should also use localStorage then (but a separate key).

@leonnicolas
Copy link
Contributor Author

Done, maybe funny that we have showEmptyPools and hideEmptyGroups. Should I change hideEmptyGroups to showEmptyGroups and revert its default value?

Just like for showing empty groups on the Alerts page, also make the
setting for showing empty pools on the Targets page persistent.

Signed-off-by: leonnicolas <[email protected]>
@leonnicolas leonnicolas force-pushed the hide-empty-rules-persitence branch from d83d213 to b3531a1 Compare January 13, 2025 11:59
@juliusv
Copy link
Member

juliusv commented Jan 13, 2025

Done, maybe funny that we have showEmptyPools and hideEmptyGroups. Should I change hideEmptyGroups to showEmptyGroups and revert its default value?

Oh right, let's do that and make it consistent.

Also, I noticed one other thing that I totally missed earlier: I think these settings should not be listed in the global settings menu, as they are already controllable inline on the page itself. All the other settings in that menu are only in there because I wanted to avoid having too many UI knobs on the individual pages. And in that case, maybe these new settings shouldn't even be part of the global Settings Redux slice at all (using Redux for all this is a bit questionable anyway, I had other plans for it initially and then things got chaotic 😅), but we could just use a local useLocalStorage() for these settings in the component itself, like we do here:

const [showSampleValues, setShowSampleValues] = useLocalStorage<boolean>({
key: "queryPage.explain.binaryOperators.showSampleValues",
defaultValue: false,
});

Does that make sense?

@leonnicolas
Copy link
Contributor Author

I updated the PR to use useLocalStorage. It is so much smaller now. Very nice

Signed-off-by: leonnicolas <[email protected]>
@juliusv
Copy link
Member

juliusv commented Jan 20, 2025

👍 Looks really nice now, thanks! :)

@juliusv juliusv merged commit 32d3068 into prometheus:main Jan 20, 2025
26 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants