Skip to main content

Display Modes

The configuration option mode, also available as query param, can be used to select different display modes. The following display modes are supported:

full

This is the default mode with toolbars, editor and result panes.

Example: https://livecodes.io/?template=react

Demo:

show code
import { createPlayground } from 'livecodes';

const options = {
"template": "react"
};
createPlayground('#container', options);

editor

Hides the results pane and works as editor only.

Example: https://livecodes.io/?mode=editor&template=react

Demo:

show code
import { createPlayground } from 'livecodes';

const options = {
"config": {
"mode": "editor"
},
"template": "react"
};
createPlayground('#container', options);

codeblock

A read-only mode showing only the code block without editor interface. On mouse-over a copy button appears that allows to copy the code. This is specially useful when embedded.

Example: https://livecodes.io/?mode=codeblock&template=react

Demo:

show code
import { createPlayground } from 'livecodes';

const options = {
"config": {
"mode": "codeblock"
},
"template": "react"
};
createPlayground('#container', options);

By default, in codeblock mode, the light-weight CodeJar editor is used (in read-only mode). You can override this by setting the editor option. Refer to Editor Settings for details.

Example: https://livecodes.io/?mode=codeblock&editor=monaco&template=react

Demo:

show code
import { createPlayground } from 'livecodes';

const options = {
"config": {
"mode": "codeblock",
"editor": "monaco"
},
"template": "react"
};
createPlayground('#container', options);

result

Shows the result page only, with a small overlay (appears on hover) that allows opening the project in the full playground.

Example: https://livecodes.io/?mode=result&template=react

Demo:

show code
import { createPlayground } from 'livecodes';

const options = {
"params": {
"mode": "result",
"template": "react"
}
};
createPlayground('#container', options);

The tools pane (e.g. console/compiled code viewer) is hidden by default in result mode. It can be shown if set to open or full. Refer to Tools pane documentation for details.

Example: https://livecodes.io/?mode=result&tools=console|full

Demo:

show code
import { createPlayground } from 'livecodes';

const options = {
"params": {
"mode": "result",
"tools": "console|full"
}
};
createPlayground('#container', options);

Display Mode vs Default View

info

"Display Mode" is different from "Default View".

In editor display mode, only the editor is loaded and the result page is not available. While editor default view shows the editor by default, and the result page can be shown by dragging the split gutter.

The same applies for result display mode and default view.