Examples
App elements
Assets and media
Fundamentals
Intents
Design interaction
Drag and drop
Design elements
Localization
Content replacement
App shape elements
Create shape elements inside app elements.
Running this example
To run this example locally:
-
If you haven't already, create a new app in the Developer Portal(opens in a new tab or window). For more information, refer to our Quickstart guide.
-
In your app's configuration on the Developer Portal(opens in a new tab or window), ensure the "Development URL" is set to
http://localhost:8080
. -
Clone the starter kit:
git clone https://github.com/canva-sdks/canva-apps-sdk-starter-kit.gitcd canva-apps-sdk-starter-kitSHELL -
Install dependencies:
npm installSHELL -
Run the example:
npm run start app_shape_elementsSHELL -
Click the Preview URL link shown in the terminal to open the example in the Canva editor.
Example app source code
// For usage information, see the README.md file.import {Button,ColorSelector,Column,Columns,FormField,MultilineInput,NumberInput,PlusIcon,Rows,Text,Title,} from "@canva/app-ui-kit";import { type AppElementOptions, initAppElement } from "@canva/design";import { useEffect, useState } from "react";import * as styles from "styles/components.css";// Data structure for shape elements within app elementstype AppElementData = {// Array of SVG path objects that define the shape geometrypaths: {d: string; // SVG path data using standard path commands (M, L, H, V, C, etc.)fill: {dropTarget: boolean; // Whether this path accepts dropped content from Canvacolor: string; // Hex color value for the shape fill};}[];// SVG viewBox defines the coordinate system and visible areaviewBox: {width: number;height: number;top: number;left: number;};// Physical dimensions and rotation of the app element in Canvawidth: number;height: number;rotation: number;};// Event object received when an app element is selected or modified in Canvatype AppElementChangeEvent = {data: AppElementData;update?: (opts: AppElementOptions<AppElementData>) => Promise<void>; // Function to update existing app element};// Default state when no app element is selected - creates a simple square pathconst initialState: AppElementChangeEvent = {data: {paths: [{d: "M 0 0 H 100 V 100 H 0 L 0 0", // SVG path for a 100x100 squarefill: {dropTarget: false,color: "#ff0099",},},],viewBox: {width: 100,height: 100,top: 0,left: 0,},width: 100,height: 100,rotation: 0,},};// Initialize the app element client to handle shape rendering in Canvaconst appElementClient = initAppElement<AppElementData>({// Define how the app element data should be rendered as design elementsrender: (data) => {return [{ type: "shape", top: 0, left: 0, ...data }];},});export const App = () => {const [state, setState] = useState<AppElementChangeEvent>(initialState);const {data: { paths, viewBox, width, height, rotation },} = state;const disabled = paths.length < 1;useEffect(() => {// Register listener for when user selects an app element in CanvaappElementClient.registerOnElementChange((appElement) => {setState(appElement? {data: appElement.data,update: appElement.update,}: initialState,);});}, []);return (<div className={styles.scrollContainer}><Rows spacing="3u"><Text>This example demonstrates how apps can create shape elements insideapp elements. Using an app element makes the shape element re-editableand lets apps control additional properties, such as the width andheight.</Text><Rows spacing="1u"><Columns spacing="0" alignY="center"><Column><Title size="small">Paths</Title></Column><Column width="content">{paths.length < 7 && (<Buttonvariant="tertiary"icon={PlusIcon}ariaLabel="Add a new path"onClick={() => {setState((prevState) => {return {...prevState,data: {...prevState.data,paths: [...prevState.data.paths,{d: "",fill: {dropTarget: false,color: "#000000",},},],},};});}}/>)}</Column></Columns>{paths.map((path, outerIndex) => {return (<Rows spacing="2u" key={outerIndex}><FormFieldlabel="Line commands"value={path.d}control={(props) => (<MultilineInput{...props}onChange={(value) => {setState((prevState) => {return {...prevState,data: {...prevState.data,paths: prevState.data.paths.map((path, innerIndex) => {if (outerIndex === innerIndex) {return {...path,d: value,};}return path;},),},};});}}/>)}/><FormFieldlabel="Color"control={() => (<ColorSelectorcolor={paths[outerIndex].fill.color}onChange={(value) => {setState((prevState) => {return {...prevState,data: {...prevState.data,paths: prevState.data.paths.map((path, innerIndex) => {if (outerIndex === innerIndex) {return {...path,fill: {...path.fill,color: value,},};}return path;},),},};});}}/>)}/></Rows>);})}</Rows><Rows spacing="2u"><Title size="small">Viewbox</Title><FormFieldlabel="Width"value={viewBox.width}control={(props) => (<NumberInput{...props}min={1}onChange={(value) => {setState((prevState) => {return {...prevState,data: {...prevState.data,viewBox: {...prevState.data.viewBox,width: Number(value || 0),},},};});}}/>)}/><FormFieldlabel="Height"value={viewBox.height}control={(props) => (<NumberInput{...props}min={1}onChange={(value) => {setState((prevState) => {return {...prevState,data: {...prevState.data,viewBox: {...prevState.data.viewBox,height: Number(value || 0),},},};});}}/>)}/><FormFieldlabel="Top"value={viewBox.top}control={(props) => (<NumberInput{...props}min={0}onChange={(value) => {setState((prevState) => {return {...prevState,data: {...prevState.data,viewBox: {...prevState.data.viewBox,top: Number(value || 0),},},};});}}/>)}/><FormFieldlabel="Left"value={viewBox.left}control={(props) => (<NumberInput{...props}min={0}onChange={(value) => {setState((prevState) => {return {...prevState,data: {...prevState.data,viewBox: {...prevState.data.viewBox,left: Number(value || 0),},},};});}}/>)}/></Rows><Rows spacing="2u"><Title size="small">Position</Title><FormFieldlabel="Width"value={width}control={(props) => (<NumberInput{...props}min={1}onChange={(value) => {setState((prevState) => {return {...prevState,data: {...prevState.data,width: Number(value || 0),},};});}}/>)}/><FormFieldlabel="Height"value={height}control={(props) => (<NumberInput{...props}min={1}onChange={(value) => {setState((prevState) => {return {...prevState,data: {...prevState.data,height: Number(value || 0),},};});}}/>)}/><FormFieldlabel="Rotation"value={rotation}control={(props) => (<NumberInput{...props}min={-180}max={180}onChange={(value) => {setState((prevState) => {return {...prevState,data: {...prevState.data,rotation: Number(value || 0),},};});}}/>)}/></Rows><Rows spacing="1u"><Buttonvariant="secondary"onClick={() => {setState(initialState);}}stretch>Reset</Button><Buttonvariant="primary"onClick={() => {if (state.update) {// Update existing app element in Canvastate.update({ data: state.data });} else {// Add new app element to Canva designappElementClient.addElement({ data: state.data });}}}disabled={disabled}stretch>{`${state.update ? "Update" : "Add"} shape`}</Button></Rows></Rows></div>);};
TYPESCRIPT
// For usage information, see the README.md file.import { AppUiProvider } from "@canva/app-ui-kit";import { createRoot } from "react-dom/client";import { App } from "./app";import "@canva/app-ui-kit/styles.css";const root = createRoot(document.getElementById("root") as Element);function render() {root.render(<AppUiProvider><App /></AppUiProvider>,);}render();// Hot Module Replacement for development (automatically reloads the app when changes are made)if (module.hot) {module.hot.accept("./app", render);}
TYPESCRIPT
# App shape elementsThis example demonstrates how to create custom vector shape elements inside app elements using SVG path data. It shows shape creation, color customization, and path manipulation for building reusable custom shapes.For API reference docs and instructions on running this example, see: https://www.canva.dev/docs/apps/examples/app-shape-elements/.Related examples: See `design_elements/shape_elements` for direct shape insertion, or `app_element_children` for multiple shapes within app elements.NOTE: This example differs from what is expected for public apps to pass a Canva review:- Content is hardcoded for demonstration purposes only. Production apps should provide user input interfaces or dynamic content loading and user-friendly shape creation and editing interfaces- Path validation and error handling is simplified for demonstration. Production apps must validate SVG paths and handle malformed path data gracefully- Error handling is simplified for demonstration. Production apps must implement comprehensive error handling with clear user feedback and graceful failure modes- Internationalization is not implemented. Production apps must support multiple languages using the `@canva/app-i18n-kit` package to pass Canva review requirements
MARKDOWN
API reference
Need help?
- Join our Community Forum(opens in a new tab or window)
- Report issues with this example on GitHub(opens in a new tab or window)