feat: implemented chord guide customization feature

This commit is contained in:
Xiaohan-Tian
2025-12-17 23:07:21 -08:00
parent 610b81e4cc
commit 5cceec0c01
10 changed files with 696 additions and 8 deletions
+2 -1
View File
@@ -18,7 +18,8 @@ export class KGCore {
private static _instance: KGCore | null = null;
// Global music data resources
public static FUNCTIONAL_CHORDS_DATA: Record<string, { name: string; steps: number[]; T: string[]; S: string[]; D: string[]; chords: Record<string, string[]> }> = {}; // Functional chords by mode (T/S/D) with mode-specific chord notes, and mode metadata
public static ORIGINAL_FUNCTIONAL_CHORDS_DATA: Record<string, { name: string; steps: number[]; T: string[]; S: string[]; D: string[]; chords: Record<string, string[]> }> = {}; // Original functional chords loaded from functional_chords.json
public static FUNCTIONAL_CHORDS_DATA: Record<string, { name: string; steps: number[]; T: string[]; S: string[]; D: string[]; chords: Record<string, string[]> }> = {}; // Active functional chords (either original or custom from user settings)
private currentProject: KGProject = new KGProject();
+6
View File
@@ -73,6 +73,9 @@ interface AppConfig {
templates: {
custom_instructions: string;
};
chord_guide: {
chord_definition: string;
};
[key: string]: unknown;
}
@@ -228,6 +231,9 @@ export class ConfigManager {
},
templates: {
custom_instructions: ''
},
chord_guide: {
chord_definition: ''
}
};
console.log('Using fallback hardcoded config due to load error');