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";type AppElementData = {paths: {d: string;fill: {dropTarget: boolean;color: string;};}[];viewBox: {width: number;height: number;top: number;left: number;};width: number;height: number;rotation: number;};type AppElementChangeEvent = {data: AppElementData;update?: (opts: AppElementOptions<AppElementData>) => Promise<void>;};const initialState: AppElementChangeEvent = {data: {paths: [{d: "M 0 0 H 100 V 100 H 0 L 0 0",fill: {dropTarget: false,color: "#ff0099",},},],viewBox: {width: 100,height: 100,top: 0,left: 0,},width: 100,height: 100,rotation: 0,},};const appElementClient = initAppElement<AppElementData>({render: (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(() => {appElementClient.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) {state.update({ data: state.data });} else {appElementClient.addElement({ data: state.data });}}}disabled={disabled}stretch>{`${state.update ? "Update" : "Add"} shape`}</Button></Rows></Rows></div>);};
TYPESCRIPT
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();if (module.hot) {module.hot.accept("./app", render);}
TYPESCRIPT
# App shape elementsDemonstrates how to create custom vector shape elements inside app elements using SVG path data. 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)