initial public release.
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
import { KGProject } from '../KGProject';
|
||||
import { upgradeToV1 } from './upgradeToV1';
|
||||
|
||||
/**
|
||||
* Upgrade the given project to the latest structure version, one version at a time.
|
||||
* This function is safe to call multiple times; it will no-op if up-to-date.
|
||||
*/
|
||||
export function upgradeProjectToLatest(project: KGProject): KGProject {
|
||||
if (!project) return project;
|
||||
|
||||
const currentVersion = project.getProjectStructureVersion?.() ?? 0;
|
||||
const targetVersion = KGProject.CURRENT_PROJECT_STRUCTURE_VERSION;
|
||||
|
||||
if (currentVersion >= targetVersion) {
|
||||
return project;
|
||||
}
|
||||
|
||||
let workingProject: KGProject = project;
|
||||
|
||||
for (let nextVersion = currentVersion + 1; nextVersion <= targetVersion; nextVersion++) {
|
||||
switch (nextVersion) {
|
||||
case 1: {
|
||||
workingProject = upgradeToV1(workingProject);
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
// If an upgrader is missing, throw to prevent loading incompatible structures
|
||||
throw new Error(`No upgrader found for project structure version ${nextVersion}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return workingProject;
|
||||
}
|
||||
Reference in New Issue
Block a user