This commit is contained in:
2026-07-05 18:10:16 +09:00
parent 0057983671
commit 23d907265a
22 changed files with 2207 additions and 315 deletions
+29
View File
@@ -0,0 +1,29 @@
/* =============================================================================
* B03_FileInput_UI_Page.ts
* 로그인 후 03: 파일 입력 (지형·포인트클라우드·도면 업로드)
*
* ⚠️ 본문(업로드 드롭존/파일 목록)은 준비 중 — 헤더/안내만 구현.
* 실제 업로드 UI는 0_old 참고하여 추후 구체화.
*
* 제약 준수 (frontend.md): 문구는 locale 참조(§3), 공통 컴포넌트 사용(§2).
* ========================================================================== */
import { ui_locales, currentLanguageIndex } from "@ui/ui_template_locale";
import { renderPendingContent } from "../A00_Common/b_page_scaffold";
import "./B03_FileInput_UI_Style.css";
/** locale 헬퍼 */
function L(key: keyof typeof ui_locales): string {
return ui_locales[key][currentLanguageIndex];
}
/* -----------------------------------------------------------------------------
* 페이지 진입점
* -------------------------------------------------------------------------- */
export function renderB03FileInput(root: HTMLElement): void {
renderPendingContent(root, {
pageClass: "b03-file",
title: L("B03_File_Title"),
subtitle: L("B03_File_Subtitle"),
});
}