feat: LocationView 고도화 - 지도 클릭 시 사이드바 상세 정보 표시 및 구역 필터링 구현

This commit is contained in:
2026-06-11 09:47:57 +09:00
parent 2b9c965c91
commit 164568843b
6 changed files with 543 additions and 9 deletions

View File

@@ -36,6 +36,7 @@ export interface MasterAssetData {
export interface AppState {
activeCategory: 'dashboard' | 'hw' | 'sw' | 'ops' | 'vip' | 'fac' | 'users' | 'etc';
activeSubTab: string;
viewMode: 'location' | 'legacy' | 'list';
masterData: MasterAssetData;
activeCharts: any[];
currentUserRole: 'admin' | 'user';
@@ -45,6 +46,7 @@ export interface AppState {
export const state: AppState = {
activeCategory: 'hw',
activeSubTab: '서버', // 대시보드 제거됨에 따라 기본값 변경
viewMode: 'location',
activeCharts: [],
currentUserRole: 'user',
masterData: {

View File

@@ -1,6 +1,6 @@
import { PAGE_DESCRIPTIONS } from './schema';
export const API_BASE_URL = `http://${location.hostname}:3000`;
export const API_BASE_URL = '';
/**
* ITAM 공통 유틸리티 함수