30 lines
1.2 KiB
TypeScript
30 lines
1.2 KiB
TypeScript
/* =============================================================================
|
|
* 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"),
|
|
});
|
|
}
|