Tabs

Introduction to Tabs

What is a Tab?

The side panel in the editor consists of various tabs like Content, Blocks, Body, Images, Uploads, etc. Each tab provides access to unique functions of the editor.

500

Enable / Disable Tabs

You can enable or disable any tab. For default tabs, the key is the tab name. For custom tabs, you have to prefix your tab name with custom#.

unlayer.init({
  tabs: {
    content: {
      enabled: true,
    },
    blocks: {
      enabled: false,
    },
    'custom#my_tab': {
      enabled: false,
    }
  },
});

Default Active Tab

By default, the "Content" tab is active when editor loads. You can change it to be any other tab.

unlayer.init({
  tabs: {
    blocks: {
      active: true,
    }
  },
});

Reposition Tabs

You can change the default positions of tabs.

unlayer.init({
  tabs: {
    content: {
      position: 1
    },
    blocks: {
      position: 2
    },
    'custom#my_tab': {
      position: 3
    }
  },
});

Change Icon

You can change the icon of any tab. Icon can be class name of any fontawesome icon, or a URL for your icon's image.

unlayer.init({
  tabs: {
    content: {
      icon: "fa-user"
    },
    blocks: {
      icon: "https://my.cdn.com/blocks_icon.png",
    },
  },
});

Create a Custom Tab

πŸ“˜

Premium Feature

This feature is only available in Growth and above plans. You must pass the projectId to enable this feature.

Register your Tab

The first step is to register your custom tab using the registerTab method.

500

🚧

Custom JavaScript

The following JavaScript has to be passed in the customJS parameter when initializing Unlayer. registerTab, and createPanel methods are only available there.

Learn More

unlayer.registerTab({
  name: 'my_tab',
  label: 'My Tab',
  icon: 'fa-smile',
  supportedDisplayModes: ['web', 'email'],
  renderer: {
    Panel: unlayer.createPanel({
      render() {
        return "<div>I am a custom tab.</div>"
      }
    }),
  }
});

It needs some configuration options which are explained below:

OptionDescription
nameUnique name for your tab
labelLabel that users see in the side panel
iconIcon that users see in the side panel. The value can be class name of any fontawesome icon, or a URL for your icon's image
positionOptionally, you can specify the position you want the tab to appear on
supportedDisplayModesWhich display modes will this tab work in. Default value is ['email', 'web']

Example using React

Here's an example that uses a React component.

const MyPanel = () => (
  <div>I am a custom tab.</div>
);

unlayer.registerTab({
  name: 'my_tab',
  label: 'My Tab',
  icon: 'fa-smile',
  supportedDisplayModes: ['web', 'email'],
  renderer: {
    Panel: MyPanel
  }
});