전략편집기 메뉴 추가

This commit is contained in:
Macbook
2026-05-24 06:20:18 +09:00
parent bbe82e510b
commit ea39f7df27
24 changed files with 4897 additions and 29 deletions
+7 -2
View File
@@ -12,7 +12,7 @@ export type SettingsCategoryId =
| 'paper' | 'alert' | 'network' | 'admin';
export const TOP_MENU_IDS: TopMenuId[] = [
'dashboard', 'chart', 'paper', 'strategy', 'backtest', 'settings',
'dashboard', 'chart', 'paper', 'strategy', 'strategy-editor', 'backtest', 'settings',
];
export const SETTINGS_MENU_IDS: SettingsCategoryId[] = [
@@ -20,7 +20,7 @@ export const SETTINGS_MENU_IDS: SettingsCategoryId[] = [
];
export const ALL_MENU_IDS = [
'dashboard', 'chart', 'paper', 'strategy', 'backtest', 'notifications', 'settings',
'dashboard', 'chart', 'paper', 'strategy', 'strategy-editor', 'backtest', 'notifications', 'settings',
...SETTINGS_MENU_IDS.map(id => `settings_${id}` as const),
] as const;
@@ -31,6 +31,7 @@ export const MENU_LABELS: Record<string, string> = {
chart: '실시간차트',
paper: '모의투자',
strategy: '투자전략',
'strategy-editor': '전략편집기',
backtest: '백테스팅',
notifications: '알림',
settings: '설정',
@@ -65,6 +66,10 @@ export function canAccessMenu(
menuId: string,
): boolean {
if (!permissions) return menuId === 'chart';
if (menuId === 'strategy-editor') {
if (permissions['strategy-editor'] === true) return true;
return permissions.strategy === true;
}
return permissions[menuId] === true;
}