Merge pull request #27 from SteelDynamite/polish

feat: sort workspaces and prevent redundant switches
This commit is contained in:
SteelDynamite 2026-04-03 17:47:17 -07:00 committed by GitHub
commit d192fed44f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -204,7 +204,7 @@
if (isDesktop) appWindow.startDragging(); if (isDesktop) appWindow.startDragging();
} }
let workspaceNames = $derived(app.config ? Object.keys(app.config.workspaces) : []); let workspaceNames = $derived(app.config ? Object.keys(app.config.workspaces).sort((a, b) => a.localeCompare(b)) : []);
let translateX = $derived(showDrawer ? '0' : '-80cqi'); let translateX = $derived(showDrawer ? '0' : '-80cqi');
</script> </script>
@ -244,7 +244,7 @@
{@const ws = app.config?.workspaces[name]} {@const ws = app.config?.workspaces[name]}
<div class="group flex items-center px-1 hover:bg-black/5 dark:hover:bg-white/10"> <div class="group flex items-center px-1 hover:bg-black/5 dark:hover:bg-white/10">
<button <button
onclick={() => { app.switchWorkspace(name); showWorkspacePicker = false; }} onclick={() => { if (name !== app.config?.current_workspace) app.switchWorkspace(name); showWorkspacePicker = false; }}
class="flex min-w-0 flex-1 items-center gap-2 px-2 py-1.5 text-left {name === app.config?.current_workspace ? 'font-bold' : ''}" class="flex min-w-0 flex-1 items-center gap-2 px-2 py-1.5 text-left {name === app.config?.current_workspace ? 'font-bold' : ''}"
> >
{#if name === app.config?.current_workspace} {#if name === app.config?.current_workspace}