Skip to main content

moveComposition()v4.0.528

Moves a composition into a folder, to the root, or beside another registration.

warning

Draft API: This API is experimental and may change.

move-composition.ts
import {moveComposition, type CodemodProject} from '@remotion/codemods'; declare const project: CodemodProject; const result = moveComposition({ project, compositionFile: 'src/Root.tsx', compositionId: 'MyComposition', destination: {type: 'folder', folder: {name: 'Social', parentName: null}}, }); console.log(result);

The composition and destination must be in the same registration file. Their source must allow a direct JSX-child move. The component implementation and composition ID stay unchanged.

Options

project

An in-memory CodemodProject. The input project is not mutated.

compositionFile

The project file containing the composition registrations. Registration edits support <Composition>, <Still>, and <Folder> with their original import names and static IDs or folder names.

compositionId

The static ID of the composition to edit.

destination

Where to move the item within the same file. Use {type: 'root'}, {type: 'folder', folder: {name, parentName}}, or {type: 'before' | 'after', target}. A target is {type: 'composition', compositionId} or {type: 'folder', name, parentName}. Moving an item into its current parent is a no-op.

Return value

Returns an object with the following properties.

project

The updated project. Unchanged files and extra project fields are preserved.

changes

An array of {filePath, previousContents, nextContents} file changes. A null content value indicates a created or deleted file.

Errors

Throws when the target cannot be resolved, the requested edit is unsupported, or an option is invalid. Failed edits leave the input project unchanged.

Compatibility

BrowsersServersEnvironments
Chrome
Firefox
Safari
Node.js
Bun
Serverless Functions

See also