Skip to content

Commit a681276

Browse files
committed
Better framework switching logic
Especially when navigating back/forward
1 parent 70acd74 commit a681276

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

site/src/components/FrameworkMenu.tsx

-4
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,6 @@ export default function FrameworkMenu({
5656
'dark:data-[focus]:bg-white/12.5 text-primary flex items-center gap-2 rounded-lg py-2 pl-2 text-sm font-medium data-[disabled]:cursor-default data-[focus]:bg-black/[8%]'
5757
)}
5858
href={toFrameworkPath(url.pathname, id as Framework)}
59-
onClick={() => {
60-
localStorage.setItem('framework', id)
61-
$pageFramework.set(id as Framework)
62-
}}
6359
>
6460
<Icon className="size-4.5" />
6561
{framework.name}

site/src/layouts/Layout.astro

+14-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ type Props = {
2828
paddingBottom?: string
2929
}
3030
31-
const { title, description, paddingBottom = "~pb-40/52" } = Astro.props
31+
const { title, description, paddingBottom = '~pb-40/52' } = Astro.props
3232
3333
const app = {
3434
'@context': 'https://schema.org',
@@ -94,7 +94,7 @@ const app = {
9494

9595
<ClientRouter />
9696
</head>
97-
<body class:list={[paddingBottom, '~pt-12/28']}>
97+
<body class:list={[paddingBottom, '~pt-12/28']}>
9898
<div class="container inline-flex items-baseline justify-center whitespace-nowrap text-center">
9999
{
100100
isActive('/', Astro.url) ? (
@@ -141,6 +141,9 @@ const app = {
141141
</style>
142142

143143
<script>
144+
import type { Framework } from '@/lib/framework'
145+
import { $pageFramework } from '@/stores/url'
146+
144147
// Disable smooth scroll when transitioning, which also fixes anchor links for some reason:
145148
document.addEventListener('astro:before-swap', (event) => {
146149
event.newDocument.documentElement.style.scrollBehavior = 'auto'
@@ -155,4 +158,13 @@ const app = {
155158
{ once: true }
156159
)
157160
})
161+
162+
// Update framework on page load
163+
document.addEventListener('astro:page-load', () => {
164+
const framework = document.documentElement.dataset.framework as Framework
165+
if (framework) {
166+
localStorage.setItem('framework', framework)
167+
$pageFramework.set(framework)
168+
}
169+
})
158170
</script>

0 commit comments

Comments
 (0)