Skip to content

Commit e01c143

Browse files
authored
Fix: Improve error handling for components with no PCB connection and missing footprint (#580)
* Fix: Improve error message for components with missing footprint or PCB connection * fix: improve error message for missing footprint on components * Adding test * format * Chore: fix test msg * format * add new test and if condition for footprint checking * Add .toLowerCase()
1 parent e191db8 commit e01c143

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

lib/components/primitive-components/Port/Port.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,18 @@ export class Port extends PrimitiveComponent<typeof portProps> {
5757

5858
_getGlobalPcbPositionBeforeLayout(): { x: number; y: number } {
5959
const matchedPcbElm = this.matchedComponents.find((c) => c.isPcbPrimitive)
60+
const parentComponent = this.parent
61+
62+
// First check if parent component has a footprint
63+
if (parentComponent && !parentComponent.props.footprint) {
64+
throw new Error(
65+
`${parentComponent.componentName} "${parentComponent.props.name}" does not have a footprint. Add a footprint prop, e.g. <${parentComponent.componentName.toLowerCase()} footprint="..." />`,
66+
)
67+
}
6068

6169
if (!matchedPcbElm) {
6270
throw new Error(
63-
`Port ${this} has no matched pcb component, can't get global pcb position`,
71+
`Port ${this} has no matching PCB primitives. This often means the footprint's pads lack matching port hints.`,
6472
)
6573
}
6674

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import { test, expect } from "bun:test"
2+
import { getTestFixture } from "../../../tests/fixtures/get-test-fixture"
3+
4+
test("LED without footprint should throw appropriate error", async () => {
5+
const { circuit } = getTestFixture()
6+
7+
circuit.add(
8+
<board width="10mm" height="10mm">
9+
<led name="LED1" />
10+
</board>,
11+
)
12+
13+
try {
14+
circuit.render()
15+
} catch (err) {
16+
if (!(err instanceof Error)) {
17+
throw new Error("Expected err to be an Error instance")
18+
}
19+
expect(err.message).toBe(
20+
'Led "LED1" does not have a footprint. Add a footprint prop, e.g. <led footprint="..." />',
21+
)
22+
}
23+
})

0 commit comments

Comments
 (0)