Skip to main content

React SDK

The react SDK is a thin wrapper around the JavaScript SDK to provide an easy to use react component, yet retaining the full power, by having access to the SDK methods.

It has a very simple implementation which you can easily modify in case you need.

Installation

Please refer to the SDK installation section.

Usage

The react component is provided as the default export from livecodes/react.

JSX
import React from 'react';
import LiveCodes from 'livecodes/react';

export const Playground = () => <LiveCodes />;

TypeScript Support

Prop types are exported as Props from livecodes/react.

TSX
import React from 'react';
import LiveCodes, { type Props } from 'livecodes/react';

const options: Props = {
// embed options
};
export const Playground = () => <LiveCodes {...options} />;

TypeScript types are documented here.

Props

All embed options are available as props with the corresponding types.

Example:

JSX
import React from 'react';
import LiveCodes from 'livecodes/react';

const config = {
markup: {
language: 'markdown',
content: '# Hello World!',
},
};
export const Playground = () => <LiveCodes config={config} view="result" />;

In addition, the following props are also available:

  • className

    Type: string.

    Class name(s) to add to playground container element.

    Example:

    JSX
    import React from 'react';
    import LiveCodes from 'livecodes/react';

    export const Playground = () => <LiveCodes className="centered" />;
  • height

    Type: string.

    Sets the hight of playground container element.

    Example:

    JSX
    import React from 'react';
    import LiveCodes from 'livecodes/react';

    export const Playground = () => <LiveCodes height="500px" />;
  • style

    Type: Record<string, string>.

    Defines styles to add to playground container element. Styles set here override the default styles.

    Example:

    JSX
    import React from 'react';
    import LiveCodes from 'livecodes/react';

    const style = {
    margin: 'auto',
    width: '80%',
    };
    export const Playground = () => <LiveCodes style={style} />;
  • sdkReady

    Type: (sdk: Playground) => void.

    A callback function, that is provided with an instance of the JavaScript SDK representing the current playground. This allows making use of full capability of the SDK by calling SDK methods.

    Example:

    TSX
    import React, { useState } from 'react';
    import LiveCodes from 'livecodes/react';
    import type { Playground } from 'livecodes';

    export const App = () => {
    const [playground, setPlayground] = useState<Playground>();

    const onReady = (sdk: Playground) => {
    setPlayground(sdk);
    };

    const run = async () => {
    await playground?.run();
    };

    return (
    <>
    <LiveCodes sdkReady={onReady} />
    <button onClick={run}>Run</button>
    </>
    );
    };

Demo

show code
import { createPlayground } from 'livecodes';

const options = {
"params": {
"jsx": "import React from \"react\";\nimport { createRoot } from \"react-dom/client\";\nimport LiveCodes from \"livecodes/react\";\n\nconst App = () => {\n const params = {\n html: \"<h1>Hello World!</h1>\",\n css: \"h1 {color: blue;}\",\n js: 'console.log(\"Hello, Svelte!\")',\n console: \"open\",\n };\n\n return <LiveCodes params={params} />;\n};\n\nconst root = createRoot(document.querySelector(\"#app\"));\nroot.render(<App />);\n",
"html": "<div id=\"app\">Loading...</div>"
}
};
createPlayground('#container', options);