Skip to content

Commit 0aebcdf

Browse files
author
QuantCode Agent
committed
fix: repair cross-package bugs to make tests and tsc pass
- apps/web: import useDebounce (renamed from useThrottle) from @e2e/utils - ui/Button: forward aria-label to underlying <button> (WCAG 4.1.2) - ui/DataTable: use functional setSortDir updater to fix stale-closure toggle - utils/formatDate: use dateStyle 'short' so en-AU yields DD/MM/YYYY - tsconfig: add bun-types so bun:test globals resolve under tsc
1 parent 7e2198e commit 0aebcdf

5 files changed

Lines changed: 6 additions & 12 deletions

File tree

apps/web/src/lib/api.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
* Fix: change the import to `useDebounce`.
88
*/
99

10-
// BUG: useThrottle no longer exists — was renamed to useDebounce
11-
import { useThrottle } from "@e2e/utils"
10+
import { useDebounce } from "@e2e/utils"
1211
import { formatDate, formatAUD } from "@e2e/utils"
1312

1413
export const BASE_URL = process.env.API_URL ?? "http://localhost:3000"
@@ -28,5 +27,4 @@ export async function fetchPosts() {
2827
// Re-export formatting utilities used throughout the app
2928
export { formatDate, formatAUD }
3029

31-
// Re-export the debounce hook (currently broken import)
32-
export { useThrottle as useSearchDebounce }
30+
export { useDebounce as useSearchDebounce }

packages/ui/src/components/Button/Button.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ export function Button({
3939
className={`btn btn-${variant}`}
4040
disabled={disabled}
4141
onClick={onClick}
42-
// BUG: aria-label is not applied when iconOnly is true and no ariaLabel is passed
43-
// The component should enforce aria-label for icon-only buttons
42+
aria-label={ariaLabel ?? (iconOnly ? "" : undefined)}
4443
>
4544
{icon && <span className="btn-icon">{icon}</span>}
4645
{!iconOnly && children}

packages/ui/src/components/DataTable/DataTable.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,9 @@ export function DataTable<T extends Record<string, unknown>>({ data, columns }:
2828
const [sortKey, setSortKey] = useState<keyof T | null>(null)
2929
const [sortDir, setSortDir] = useState<SortDir>("asc")
3030

31-
// BUG: stale closure — sortDir is captured at handler creation time
3231
const handleSort = (key: keyof T) => {
3332
if (sortKey === key) {
34-
setSortDir(sortDir === "asc" ? "desc" : "asc") // BUG: reads stale sortDir
33+
setSortDir((prev) => (prev === "asc" ? "desc" : "asc"))
3534
} else {
3635
setSortKey(key)
3736
setSortDir("asc")

packages/utils/src/format/date.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,8 @@
1010
* and rely on the locale to order them correctly.
1111
*/
1212
export function formatDate(date: Date): string {
13-
// BUG: explicit field order overrides locale ordering — produces M/D/YYYY not D/M/YYYY
1413
return new Intl.DateTimeFormat("en-AU", {
15-
month: "numeric",
16-
day: "numeric",
17-
year: "numeric",
14+
dateStyle: "short",
1815
}).format(date)
1916
}
2017

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"jsx": "react-jsx",
77
"strict": true,
88
"skipLibCheck": true,
9+
"types": ["bun-types"],
910
"paths": {
1011
"@e2e/ui": ["./packages/ui/src/index.ts"],
1112
"@e2e/utils": ["./packages/utils/src/index.ts"]

0 commit comments

Comments
 (0)