Skip to content

Commit 192eacb

Browse files
committed
2 parents f761d8e + ce6c3d5 commit 192eacb

File tree

4 files changed

+41
-36
lines changed

4 files changed

+41
-36
lines changed

.github/ISSUE_TEMPLATE/0-bug.yml

+26-28
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,41 @@ body:
44
- type: markdown
55
attributes:
66
value: |
7-
Thanks for reporting :wave:
7+
Thanks for reporting :wave:. Before filing, please [search](https://github.com/barvian/number-flow/issues?q=is%3Aissue) open & closed issues to see if a similar one exists.
88
9-
Before filing, please [search](https://github.com/barvian/number-flow/issues?q=is%3Aissue) open & closed issues to see if a similar one exists.
9+
# - type: input
10+
# id: numberflow-version
11+
# attributes:
12+
# label: NumberFlow version
13+
# description: |
14+
# - Please update to the [latest version](https://github.com/barvian/number-flow/releases) before filing to see if your bug has already been fixed.
15+
# placeholder: |
16+
# @number-flow/[email protected]
17+
# validations:
18+
# required: true
19+
20+
# - type: input
21+
# id: framework-library-version
22+
# attributes:
23+
# label: Framework version
24+
# # description: Which framework (and version) are you using?
25+
# placeholder: |
26+
27+
# validations:
28+
# required: false
1029

1130
- type: input
12-
id: numberflow-version
31+
id: link
1332
attributes:
14-
label: NumberFlow version
33+
label: Minimal reproduction
1534
description: |
16-
- Please update to the [latest version](https://github.com/barvian/number-flow/releases) before filing to see if your bug has already been fixed.
35+
- Links to starter sandboxes can be found in the [site](https://number-flow.barvian.me/) header
36+
- Tips for creating minimal examples: https://stackoverflow.com/help/mcve
1737
placeholder: |
18-
@number-flow/[email protected]
38+
https://codesandbox.io/p/...
1939
validations:
2040
required: true
2141

22-
- type: input
23-
id: framework-library-version
24-
attributes:
25-
label: Framework version
26-
# description: Which framework (and version) are you using?
27-
placeholder: |
28-
29-
validations:
30-
required: false
31-
3242
- type: textarea
3343
id: description
3444
attributes:
@@ -38,18 +48,6 @@ body:
3848
validations:
3949
required: true
4050

41-
- type: input
42-
id: link
43-
attributes:
44-
label: Minimal reproduction
45-
description: |
46-
- Links to starter sandboxes can be found in the [site](https://number-flow.barvian.me/) header
47-
- Tips for creating minimal examples: https://stackoverflow.com/help/mcve
48-
placeholder: |
49-
https://codesandbox.io/p/...
50-
validations:
51-
required: true
52-
5351
# - type: textarea
5452
# id: screenshots_or_videos
5553
# attributes:

site/src/components/FrameworkMenu.tsx

-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { ChevronDown } from 'lucide-react'
44
import * as React from 'react'
55
import { Check } from 'lucide-react'
66
import clsx from 'clsx/lite'
7-
import { $pageFramework } from '@/stores/url'
87

98
const icons = import.meta.glob<React.FC<React.HTMLAttributes<SVGElement>>>(
109
'./icons/frameworks/*.tsx',
@@ -56,10 +55,6 @@ export default function FrameworkMenu({
5655
'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%]'
5756
)}
5857
href={toFrameworkPath(url.pathname, id as Framework)}
59-
onClick={() => {
60-
localStorage.setItem('framework', id)
61-
$pageFramework.set(id as Framework)
62-
}}
6358
>
6459
<Icon className="size-4.5" />
6560
{framework.name}

site/src/components/Supported.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default function Supported() {
2525
)}
2626
>
2727
{reducedMotion ? (
28-
<p>Reduce motion is on</p>
28+
<p>Reduced motion is on</p>
2929
) : (
3030
<p>
3131
Your browser doesn't{' '}

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)