feat(M01): 테스트 컨테이너에 방식 B·C 잇기 + 재료 고르기 후보 API 연결
- 탭 A·B·C 모두 연결 - 방식 A 재료 고르기 단계 = GET /materials 조건 후보(조건형 요소일 때) - 화면 계약에 /materials 한 줄 Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016WRFJmmhPi4exAzHgPZHMT
This commit is contained in:
@@ -7,6 +7,7 @@
|
||||
import { createButton, createSelectField, el, showToast } from "@ui/ui_template_elements";
|
||||
import {
|
||||
fetchLogic,
|
||||
fetchMaterials,
|
||||
runCalc,
|
||||
searchElements,
|
||||
type CalcAnswer,
|
||||
@@ -147,7 +148,18 @@ function wizard(host: HTMLElement, one: LogicOne): void {
|
||||
else swaps.delete(i);
|
||||
},
|
||||
});
|
||||
void searchElements(line.종류, line.이름 ?? "")
|
||||
// 재료 고르기 조건({구분, 상세구분, 규격}) 이면 새 API 로 조건 안 후보 · 아니면 이름 찾기
|
||||
const cond = line.요소 as unknown;
|
||||
const found_ =
|
||||
cond && typeof cond === "object"
|
||||
? fetchMaterials({
|
||||
sub: String((cond as Record<string, unknown>)["구분"] ?? ""),
|
||||
detail: String((cond as Record<string, unknown>)["상세구분"] ?? ""),
|
||||
spec: String((cond as Record<string, unknown>)["규격"] ?? ""),
|
||||
region: "울진",
|
||||
})
|
||||
: searchElements(line.종류, line.이름 ?? "");
|
||||
void found_
|
||||
.then((r) => {
|
||||
r.items.forEach((it) => found.set(it.ref, it));
|
||||
select.setOptions(
|
||||
|
||||
Reference in New Issue
Block a user