site banner

Bugs, Suggestions, Small Comments, And Site News

Have you found a problem in the site? Do you want to make a suggestion on improvement? Do you just want to say "hi everyone"? Post it here!

If you'd like to help with development, check out the Github and the dev Discord. We have a practically infinite list of small things that need to be fixed or changed.

24
Jump in the discussion.

No email address required.

Collapsed comment threads don't stay collapsed when leaving and re-entering a thread?

Yeah, there's no database storage for that. I've got a feature request for that but seriously no promises this is happening soon.

Might be easier to just store it in the browser's localStorage, though that has the issue of not being shared across multiple clients.

Might be, but it's still a significant amount of coding work. If we're doing that we may as well put it in the DB.

Wouldn't a simple permalink-to-boolean mapping do the trick?

EDIT: Or just an array of permalinks actually

It's not a hard thing to describe, it's just a bunch of work to implement. Like, yeah, you need that! And now you need to change all the SQL queries used to build the page to ensure that they're efficient. And now you need to make sure the page works well. And now you need the API entry and you need to ensure your rate limiting is appropriate.

Is it doable? Absolutely! Is it more than a few days of work? Absolutely not! But meanwhile we have 64 issues and rising; maybe this just isn't the juiciest fruit available, y'know?

Oh yeah I was talking about a localStorage approach. Unless the show/hide logic is done server-side and hidden comments aren't loaded. If the logic is all client-side then depending on the architecture (and JS framework) it could be a few lines of code and a 15 minute job.