- 3-1 우클릭 메뉴 일원화: 종단그래프·배수유역도 빈 자리 메뉴 = 사이드 「구조물
배치」와 같은 구조물군(A~G·기타) → 종류 2단 아코디언(공용 컨텍스트 메뉴에
하위 메뉴 지원 추가). 선택 = 즉시 추가가 아니라 폼 자동 지정(addAt, A군은
임시 배치까지). 구 [배관 추가]·평면 나열·기성막이/대피로 항목 흡수.
- 3-2 유역 리스트 문구: 세월교 검토→세월교 제안, BOX암거 후보→BOX암거 제안,
추천 Ø{d} 배관→Ø{d} 배관 제안.
- 3-3 구조물 알약 벌룬: 아래(테이블에 가림) 대신 위로 — 1행 좌상, 2행 우상,
솔로 위 중앙.
- 3-4 사이드: 스크롤 영역 상단 여유 + 페이지 설정 샘플 간격 2열(종단 먼저).
- 3-5 배수유역도 위성사진 기본 꺼짐.
- 3-6 B04 초기화 버튼 톤 다운 — 붉은 테두리·글자만, 채움 없음.
- 3-7 그래프 빈 공간 클릭 = 완전 해제 — 알약 해제 신호가 아예 없던 것 수정 +
외부 해제 시 구조물군·종류까지 리셋(선택 없을 땐 유지).
검증: tsc·vite + Playwright 헤드 실화면 V1~V8 전부 PASS (PLAN.md 3-8).
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
120 lines
5.7 KiB
TypeScript
120 lines
5.7 KiB
TypeScript
/* =============================================================================
|
|
* 종단 테이블 구조물 배치 라인 (B05)
|
|
*
|
|
* 종단 **그래프** 위 우클릭 메뉴. 구조물 조작은 전부 그래프에서 한다 — 측점선을 끌어 옮기고,
|
|
* 우클릭으로 배관을 넣거나 지운다(2026-08-01 사용자 지시). 테이블은 값만 보여 준다.
|
|
*
|
|
* 가까운 구조물이 있으면 삭제, 없으면 그 자리에 배관 추가를 띄운다. 배관은 배수유역도의 관 지점이
|
|
* 투영된 것이라(`origin: "pipe"`), 지우면 관 지점 정본(`pipe_points.json`)이 바뀌고 세부유역도
|
|
* 함께 다시 나뉜다 — 값을 두 곳에 따로 쌓지 않기 위해서다.
|
|
* ========================================================================== */
|
|
|
|
import { createMapContextMenu, type MapContextMenuItem } from "@ui/ui_template_context_menu";
|
|
import { isPipeStation, type IrregularStation } from "./B05_Profile_UI_IrregularStations";
|
|
import { GROUP_LABELS } from "./B05_Profile_UI_Structures_Panel";
|
|
|
|
/** 우클릭 메뉴용 최소 타입 정보 — 사이드 「구조물 배치」 종류 목록과 같은 원천. */
|
|
export interface StructureMenuType {
|
|
type_id: string;
|
|
group: string;
|
|
name: string;
|
|
}
|
|
|
|
/** 사이드 「구조물 배치」와 같은 구조물군 → 종류 2단 메뉴 항목을 만든다
|
|
* (2026-08-18 우클릭 메뉴 일원화 — 종단그래프·배수유역도 공용). 항목 선택 =
|
|
* 즉시 추가가 아니라 폼 자동 지정(addAt 경로). */
|
|
export function structureGroupMenuItems(
|
|
types: ReadonlyArray<StructureMenuType>,
|
|
onPick: (typeId: string) => void,
|
|
): MapContextMenuItem[] {
|
|
const groups = [...new Set(types.map((type) => type.group))];
|
|
return groups.map((group) => ({
|
|
label: GROUP_LABELS[group] ?? group,
|
|
children: types
|
|
.filter((type) => type.group === group)
|
|
.map((type): [string, () => void] => [type.name, () => onPick(type.type_id)]),
|
|
}));
|
|
}
|
|
|
|
/** 선을 잡았다고 볼 좌우 여유(px). 선 자체는 얇아 그대로는 집기 어렵다. */
|
|
const GRAB_SLACK_PX = 6;
|
|
|
|
export interface StructureLineOptions {
|
|
/** 테이블에 얹을 구조물 측점 목록. */
|
|
stations: ReadonlyArray<IrregularStation>;
|
|
/** chainage → x(px). 테이블·그래프와 같은 매핑을 쓴다. */
|
|
x: (chainageM: number) => number;
|
|
/** x(px) → chainage. 선을 끌 때 역변환에 쓴다. */
|
|
chainageAt: (px: number) => number;
|
|
/** 노선 총 연장(m). 이 범위를 벗어난 자리로는 옮기지 않는다. */
|
|
maxChainageM: number;
|
|
/** 선을 지울 때. */
|
|
onRemove: (station: IrregularStation) => void;
|
|
/** 빈 자리에서 우클릭해 배관을 넣을 때. */
|
|
onAddPipe: (chainageM: number) => void;
|
|
/** 빈 자리에서 우클릭해 배관 외 구조물(기성막이/대피로/기타)을 넣을 때. */
|
|
onAddStructure?: (chainageM: number, structureType: "기성막이" | "대피로" | "기타") => void;
|
|
/** 레지스트리 타입 목록(구조물군·이름). 우클릭 메뉴의 "구조물 추가" 항목이 된다. */
|
|
structureTypes?: ReadonlyArray<{ type_id: string; group: string; name: string }>;
|
|
/** 레지스트리 타입을 골라 넣을 때. */
|
|
onAddStructureType?: (chainageM: number, typeId: string) => void;
|
|
}
|
|
|
|
/**
|
|
* 그래프 칸에 우클릭 메뉴를 붙인다. 그래프는 매 그리기마다 새로 만들어지므로 이 함수도
|
|
* 그때마다 다시 부른다 — 상태를 밖에 남기지 않는다.
|
|
*/
|
|
export function mountStructureMenu(host: HTMLElement, options: StructureLineOptions): void {
|
|
const menu = createMapContextMenu("b05-profile-chart");
|
|
|
|
function clamp(chainageM: number): number {
|
|
return Math.min(Math.max(chainageM, 0), options.maxChainageM);
|
|
}
|
|
|
|
// 우클릭 — 가까운 구조물이 있으면 삭제, 없으면 그 자리에 배관을 넣는다.
|
|
host.addEventListener("contextmenu", (event) => {
|
|
if (menu.contains(event.target)) {
|
|
event.preventDefault();
|
|
return;
|
|
}
|
|
const rect = host.getBoundingClientRect();
|
|
const localX = event.clientX - rect.left;
|
|
const chainage = clamp(options.chainageAt(localX));
|
|
// 선을 그리지 않으므로 화면 거리로 가장 가까운 구조물을 찾는다.
|
|
const near = options.stations
|
|
.map((station) => ({ station, distance: Math.abs(options.x(station.chainage_m) - localX) }))
|
|
.filter((entry) => entry.distance <= GRAB_SLACK_PX)
|
|
.sort((left, right) => left.distance - right.distance)[0];
|
|
event.preventDefault();
|
|
const at = Number(chainage.toFixed(2));
|
|
// 빈 자리 — 사이드 「구조물 배치」와 같은 구조물군 → 종류 2단 메뉴(2026-08-18
|
|
// 일원화). 선택 = 폼 자동 지정(addAt 경로, A군은 임시 배치까지). 레지스트리를
|
|
// 아직 못 받았으면 구 항목(배관·기성막이 등)으로 대신한다.
|
|
const types = options.structureTypes ?? [];
|
|
const addItems: MapContextMenuItem[] = types.length
|
|
? structureGroupMenuItems(types, (typeId) => options.onAddStructureType?.(at, typeId))
|
|
: [
|
|
["배관 추가", () => options.onAddPipe(at)],
|
|
...(["기성막이", "대피로", "기타"] as const).map((type): [string, () => void] => [
|
|
`${type === "기타" ? "기타 구조물" : type} 추가`,
|
|
() => options.onAddStructure?.(at, type),
|
|
]),
|
|
];
|
|
menu.open(localX, event.clientY - rect.top, [
|
|
...(near
|
|
? [
|
|
[
|
|
isPipeStation(near.station) ? "배관 삭제" : "구조물 삭제",
|
|
() => options.onRemove(near.station),
|
|
] as [string, () => void],
|
|
]
|
|
: addItems),
|
|
]);
|
|
});
|
|
host.addEventListener("pointerdown", (event) => {
|
|
if (!menu.contains(event.target)) menu.close();
|
|
});
|
|
|
|
host.append(menu.element);
|
|
}
|