mirror of
https://github.com/OpenCut-app/OpenCut.git
synced 2026-07-13 21:52:53 +02:00
feat: Clip effects, asset sorting, and timeline improvements
Major features and improvements: * **Clip Effects**: * Added UI in Properties Panel to manage effects on video/image clips (add, remove, toggle, reorder). * Implemented dynamic parameter fields for effects. * Added support for keyframing effect parameters. * **Assets Panel**: * Added sorting options: Name, Type, Duration, and File Size. * Persisted view preferences (grid/list mode, sort order) to local storage. * Refactored media item rendering and drag interactions. * **Timeline & Interaction**: * **Keyframe Dragging**: Added ability to drag keyframes directly on the timeline element. * **Resizing**: Improved resize logic to respect neighboring clips (prevents overlaps). * **Visuals**: Implemented tiled background rendering for video/image clips on the timeline. * **Shortcuts**: Added "Deselect All" action bound to the `Escape` key. * **Fixes**: Corrected drag-and-drop coordinate calculations when the timeline track area is scrolled. * **Text Elements**: * Refactored text background storage to use an explicit `enabled` flag. * Added `V8toV9` storage migration to update existing projects. * **Architecture**: * Moved export state management to `ProjectManager` for better lifecycle handling. * Refactored `PropertiesPanel` sections to be more composable (custom headers, borders).
This commit is contained in:
@@ -7,7 +7,7 @@ import type {
|
||||
TProjectSettings,
|
||||
TTimelineViewState,
|
||||
} from "@/types/project";
|
||||
import type { ExportOptions, ExportResult } from "@/types/export";
|
||||
import type { ExportOptions, ExportResult, ExportState } from "@/types/export";
|
||||
import { storageService } from "@/services/storage/service";
|
||||
import { toast } from "sonner";
|
||||
import { generateUUID } from "@/utils/id";
|
||||
@@ -51,6 +51,12 @@ export class ProjectManager {
|
||||
toVersion: null,
|
||||
projectName: null,
|
||||
};
|
||||
private exportState: ExportState = {
|
||||
isExporting: false,
|
||||
progress: 0,
|
||||
result: null,
|
||||
};
|
||||
private exportCancelRequested = false;
|
||||
|
||||
constructor(private editor: EditorCore) {}
|
||||
|
||||
@@ -191,7 +197,40 @@ export class ProjectManager {
|
||||
}
|
||||
|
||||
async export({ options }: { options: ExportOptions }): Promise<ExportResult> {
|
||||
return this.editor.renderer.exportProject({ options });
|
||||
this.exportCancelRequested = false;
|
||||
this.exportState = { isExporting: true, progress: 0, result: null };
|
||||
this.notify();
|
||||
|
||||
const result = await this.editor.renderer.exportProject({
|
||||
options,
|
||||
onProgress: ({ progress }) => {
|
||||
this.exportState = { ...this.exportState, progress };
|
||||
this.notify();
|
||||
},
|
||||
onCancel: () => this.exportCancelRequested,
|
||||
});
|
||||
|
||||
this.exportState = {
|
||||
isExporting: false,
|
||||
progress: this.exportState.progress,
|
||||
result,
|
||||
};
|
||||
this.notify();
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
cancelExport(): void {
|
||||
this.exportCancelRequested = true;
|
||||
}
|
||||
|
||||
clearExportState(): void {
|
||||
this.exportState = { isExporting: false, progress: 0, result: null };
|
||||
this.notify();
|
||||
}
|
||||
|
||||
getExportState(): ExportState {
|
||||
return this.exportState;
|
||||
}
|
||||
|
||||
async loadAllProjects(): Promise<void> {
|
||||
|
||||
Reference in New Issue
Block a user