项目打开功能

This commit is contained in:
YHH
2025-10-15 00:23:19 +08:00
parent 4550a6146a
commit b757c1d06c
7 changed files with 172 additions and 8 deletions

View File

@@ -0,0 +1,125 @@
import type { IService } from '@esengine/ecs-framework';
import { Injectable } from '@esengine/ecs-framework';
import { createLogger } from '@esengine/ecs-framework';
import { MessageHub } from './MessageHub';
const logger = createLogger('ProjectService');
export type ProjectType = 'cocos' | 'laya' | 'unknown';
export interface ProjectInfo {
path: string;
type: ProjectType;
name: string;
configPath?: string;
}
export interface ProjectConfig {
projectType?: ProjectType;
componentsPath?: string;
componentPattern?: string;
buildOutput?: string;
}
@Injectable()
export class ProjectService implements IService {
private currentProject: ProjectInfo | null = null;
private projectConfig: ProjectConfig | null = null;
private messageHub: MessageHub;
constructor(messageHub: MessageHub) {
this.messageHub = messageHub;
}
public async openProject(projectPath: string): Promise<void> {
try {
const projectInfo = await this.validateProject(projectPath);
this.currentProject = projectInfo;
if (projectInfo.configPath) {
this.projectConfig = await this.loadConfig(projectInfo.configPath);
}
await this.messageHub.publish('project:opened', {
path: projectPath,
type: projectInfo.type,
name: projectInfo.name
});
logger.info('Project opened', { path: projectPath, type: projectInfo.type });
} catch (error) {
logger.error('Failed to open project', error);
throw error;
}
}
public async closeProject(): Promise<void> {
if (!this.currentProject) {
logger.warn('No project is currently open');
return;
}
const projectPath = this.currentProject.path;
this.currentProject = null;
this.projectConfig = null;
await this.messageHub.publish('project:closed', { path: projectPath });
logger.info('Project closed', { path: projectPath });
}
public getCurrentProject(): ProjectInfo | null {
return this.currentProject;
}
public getProjectConfig(): ProjectConfig | null {
return this.projectConfig;
}
public isProjectOpen(): boolean {
return this.currentProject !== null;
}
public getComponentsPath(): string | null {
if (!this.currentProject || !this.projectConfig?.componentsPath) {
return null;
}
return `${this.currentProject.path}/${this.projectConfig.componentsPath}`;
}
private async validateProject(projectPath: string): Promise<ProjectInfo> {
const projectName = projectPath.split(/[\\/]/).pop() || 'Unknown Project';
const projectInfo: ProjectInfo = {
path: projectPath,
type: 'unknown',
name: projectName
};
const configPath = `${projectPath}/ecs-editor.config.json`;
try {
projectInfo.configPath = configPath;
projectInfo.type = 'cocos';
} catch (error) {
logger.warn('No ecs-editor.config.json found, using defaults');
}
return projectInfo;
}
private async loadConfig(configPath: string): Promise<ProjectConfig> {
return {
projectType: 'cocos',
componentsPath: 'assets/scripts/components',
componentPattern: '**/*Component.ts',
buildOutput: 'temp/editor-components'
};
}
public dispose(): void {
this.currentProject = null;
this.projectConfig = null;
logger.info('ProjectService disposed');
}
}

View File

@@ -14,5 +14,6 @@ export * from './Services/EntityStoreService';
export * from './Services/ComponentRegistry';
export * from './Services/LocaleService';
export * from './Services/PropertyMetadata';
export * from './Services/ProjectService';
export * from './Types/UITypes';