The Kiln UI

When viewing Clay pages while logged in, Kiln provides two separate experiences: View Mode and Edit Mode.

View Mode

This mode displays pages as they would appear on the public-facing site. Client-side controllers run, ads fire, and embeds are fully functional. Kiln's entire UI is relegated to two small buttons in the upper left hand corner: The Clay Menu button allows you to open up the Clay Menu, while the Edit Page button reloads the page in Edit Mode.

Page Edit Mode

This mode displays the page without any client-side controllers, allowing Kiln to modify and re-render components as you're editing them. A toolbar displays at the top of the screen, with various buttons and actions available. In this mode (which is accessible to all users), only page-specific components may be edited.

  • The Clay Menu button opens up the Clay Menu, allowing you to search through pages, create new pages, and (if you're an admin) modify Clay users

  • The Page Status displays the current state of the page (Draft, Scheduled, Published, or published with Unpublished Changes), and allows you to go back to View Mode

  • The Undo and Redo buttons (which are enabled if you can perform those actions) allow you to step backwards and forwards through changes in your current editing session

  • The Contributors, Find on Page, Preview, and Publishing buttons toggle drawers on the right side of the viewport

    • Contributors shows the users who have edited this page, allows you to add other users to the page, and displays the publishing history. Adding a user will make the page show up in that user's My Pages list in the Clay Menu

    • Find on Page displays lists of visible components (components that live in the <body> and are not visually hidden) in the page, allowing you to quickly find components you're looking for. It also has tabs for page-level components in the <head> as well as lists of hidden (invisible) components

    • Preview allows you to preview the current page in various form factors (for small, medium, and large screens), as well as provides a shareable link to allow others to preview this page before you publish it

    • Publishing determines the health of the page (its ability to be published, based on built-in and custom validation rules) and allows you to Publish Now or Schedule a page to be published in the future. It also allows you to set a Custom URL, set a manual Page Title (for the Clay Menu), or archive the page. Setting a Custom URL is useful for index pages and other pages that do not automatically generate URLs. Note that pages can only be published if their corresponding layout has already been published

Layout Edit Mode

Admins are able to select a third mode where they can edit components in the layout. As these components are shared across many pages, an alert will display when entering this mode.

  • The Clay Menu button opens up the Clay Menu, allowing you to search through pages, create new pages, and (if you're an admin) modify Clay users

  • The Layout Status displays the current state of the layout (Draft, Scheduled, Published, or published with Unpublished Changes), and allows you to go back to View Mode and Page Edit Mode

  • The Undo and Redo buttons (which are enabled if you can perform those actions) allow you to step backwards and forwards through changes in your current editing session

  • The Contributors, Find on Layout, Preview, and Publishing buttons toggle drawers on the right side of the viewport

    • Contributors shows the admins who have edited this layout, as well as the publishing history.

    • Find on Layout displays lists of visible components (components that live in the <body> and are not visually hidden) in the layout, allowing you to quickly find components you're looking for. It also has tabs for layout-level components in the <head> as well as lists of hidden (invisible) components

    • Preview allows you to preview the current page in various form factors (for small, medium, and large screens), as well as provides a shareable link to allow others to preview this page before you publish it

    • Publishing determines the health of the layout (its ability to be published, based on built-in and custom validation rules) and allows you to Publish Now or Schedule a layout to be published in the future. It also allows you to set a manual Layout Title, to organize layouts better. (Currently this only displays in the on-load alert, but may be used in the future as we add more features around manipulating layouts)

Component Selectors

Attached to every component is a component selector, which displays when the component is hovered over or clicked. Depending on the component and where it exists on the page, the selector may have these buttons:

  • Info - provides component information taken from the _description in the component's schema

  • Settings - opens the component settings form, if it exists

  • Bookmark - allows saving a specifically-named instance that can be duplicated on other pages (if _allowBookmarks: true is set in the component's schema)

  • Remove - removes the component, if it exists in a component list

  • Add Component - adds a component, if the current component exists in a component list

  • Add Another - adds another instance of the current component

  • Duplicate Component - holding Ctrl or ⌘ will change the Add Another button into a _Duplicate Component button, creating a new instance of the current component with a copy of the current component's data

Confirm Removal

By default, there is no confirmation when users remove components, since they can press undo to revert their actions. For additional peace-of-mind in large editorial teams, you may also add a root-level _confirmRemoval property to your component schema, which will force the user to type the component's name when trying to remove it.

Last updated