org-arl / fjage

Framework for Java and Groovy Agents
https://fjage.readthedocs.io/en/latest/
Other
26 stars 13 forks source link

Allow the WebShell dark mode toggle to be disabled #305

Closed notthetup closed 7 months ago

notthetup commented 7 months ago

We added a toggle button for Light/Dark mode on the fjåge Web Shell. However, many modern web frameworks support dark mode, and it's common to embed the WebShell as an iframe inside web apps made from such a framework.

So we add two features to WebShell.

Finally, we updated the button style for the toggle button.

notthetup commented 7 months ago

Technically this could conflict with another component which uses toplevel light / dark class attributes for some other purpose. Super unlikely, of course, and probably not worth changing, but it does trigger some voices in my brain...

Indeed, there is no other way to do this other than assume that the parent will send the postMessage at initialization. There are lots of issues there as well with things being loaded asynchronously.

On top of that adding a class to the html is pretty rare and I've only seen frameworks do it for this purpose. So I think we should be safe for now.