updateDefaultProps()v4.0.154
Updates the default props in the Props Editor (in the right sidebar in the Studio).
Your component will be re-rendered with the new props.
The props will not be saved to the Root file - use saveDefaultProps()
for that.
Examples
Setting {color: 'green'} as the default propstsx
import {updateDefaultProps } from "@remotion/studio";updateDefaultProps ({compositionId : "my-composition",defaultProps : () => {return {color : "green",};},});
Setting {color: 'green'} as the default propstsx
import {updateDefaultProps } from "@remotion/studio";updateDefaultProps ({compositionId : "my-composition",defaultProps : () => {return {color : "green",};},});
You can access the current unsaved default props to only override part of it (reducer-style):
Accessing the current propstsx
import {saveDefaultProps } from "@remotion/studio";awaitsaveDefaultProps ({compositionId : "my-composition",defaultProps : ({unsavedDefaultProps }) => {return { ...unsavedDefaultProps ,color : "green" };},});
Accessing the current propstsx
import {saveDefaultProps } from "@remotion/studio";awaitsaveDefaultProps ({compositionId : "my-composition",defaultProps : ({unsavedDefaultProps }) => {return { ...unsavedDefaultProps ,color : "green" };},});
If you only want to override on top of the saved changes:
Accessing the saved propstsx
import {updateDefaultProps } from "@remotion/studio";updateDefaultProps ({compositionId : "my-composition",defaultProps : ({savedDefaultProps }) => {return {...savedDefaultProps ,color : "green",};},});
Accessing the saved propstsx
import {updateDefaultProps } from "@remotion/studio";updateDefaultProps ({compositionId : "my-composition",defaultProps : ({savedDefaultProps }) => {return {...savedDefaultProps ,color : "green",};},});
If you have a Zod schema, you can also access its runtime value:
Save props from the Props Editortsx
import {updateDefaultProps } from "@remotion/studio";updateDefaultProps ({compositionId : "my-composition",defaultProps : ({schema ,unsavedDefaultProps }) => {// Do something with the Zod schemareturn {...unsavedDefaultProps ,color : "red",};},});
Save props from the Props Editortsx
import {updateDefaultProps } from "@remotion/studio";updateDefaultProps ({compositionId : "my-composition",defaultProps : ({schema ,unsavedDefaultProps }) => {// Do something with the Zod schemareturn {...unsavedDefaultProps ,color : "red",};},});
Requirements
In order to use this function:
1 You need to be inside the Remotion Studio.
2 The Studio must be running (no static deployment)
3 zod
needs to be installed.
Otherwise, the function will throw.