Also the preview state is now kept between panel loads. We also use a redraw function to update appearance based on the state.
4.1 KiB
CMS preview
Overview
With the addition of side-by-side editing, the preview has the ability to appear within the CMS window when editing content in the Pages section of the CMS. The site is rendered into an iframe. It will update itself whenever the content is saved, and relevant pages will be loaded for editing when the user navigates around in the preview.
The root element for preview is .cms-preview
which maintains the internal states neccessary for rendering. It provides
function calls for transitioning between these states and has the ability to redraw the area.
In terms of backend support, it relies on SilverStripeNavigator
to be rendered into the .cms-edit-form
.
LeftAndMain will automatically take care of generating it as long as the *_SilverStripeNavigator
template is found -
first segment has to match current LeftAndMain-derived class (e.g. LeftAndMain_SilverStripeNavigator
).
If the SilverStripeNavigator
structure is found, it is detached and installed in the .cms-preview-control
panel at
the bottom of the preview, and the preview is enabled into split mode.
We use ss.preview
entwine namespace for all preview-related entwines.
Preview states
States are the site stages: live, stage etc. Preview states are picked up from the SilverStripeNavigator
.
You can invoke the state change by calling:
```js
$('.cms-preview').entwine('.ss.preview').changeState('StageLink');
```
Note the state names come from SilverStripeNavigatorItems
class names - thus the Link in their names. This call will
also redraw the state selector to fit with the internal state. See AllowedStates
in .cms-preview
entwine for the
list of supported states.
You can get the current state by calling:
```js
$('.cms-preview').entwine('.ss.preview').getCurrentStateName();
```
Preview sizes
This selector defines how the preview iframe is rendered, and try to emulate different device sizes. The options are
hardcoded. The option names map directly to CSS classes applied to the .cms-preview
and are as follows:
- auto: responsive layout
- desktop
- tablet
- mobile
You can switch between different types of display sizes programmatically, which has the benefit of redrawing the related selector and maintaining a consistent internal state:
```js
$('.cms-preview').entwine('.ss.preview').changeSize('auto');
```
You can find out current size by calling:
```js
$('.cms-preview').entwine('.ss.preview').getCurrentSizeName();
```
Preview modes
Preview modes map to the modes supported by the threeColumnCompressor layout algorithm, see layout reference for more details. You can change modes by calling:
```js
$('.cms-preview').entwine('.ss.preview').changeMode('preview');
```
Currently active mode is stored on the .cms-container
along with related internal states of the layout. You can reach
it by calling:
```js
$('.cms-container').entwine('.ss').getLayoutOptions().mode;
```
Preview API
Namespace ss.preview
, selector .cms-preview
:
- getCurrentStateName: get the name of the current state (e.g. LiveLink or StageLink).
- getCurrentSizeName: get the name of the current device size.
- changeState: one of the
AllowedStates
. - changeSize: one of auto, desktop, tablet, mobile.
- changeMode: maps to threeColumnLayout modes - split, preview, content.