-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
private-actions.js
95 lines (91 loc) · 2.58 KB
/
private-actions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/**
* WordPress dependencies
*/
import { store as blockEditorStore } from '@wordpress/block-editor';
import { store as preferencesStore } from '@wordpress/preferences';
import { store as editorStore } from '@wordpress/editor';
/**
* Action that switches the canvas mode.
*
* @param {?string} mode Canvas mode.
*/
export const setCanvasMode =
( mode ) =>
( { registry, dispatch } ) => {
const isMediumOrBigger =
window.matchMedia( '(min-width: 782px)' ).matches;
const switchCanvasMode = () => {
registry.batch( () => {
registry.dispatch( blockEditorStore ).clearSelectedBlock();
registry.dispatch( editorStore ).setDeviceType( 'Desktop' );
registry
.dispatch( blockEditorStore )
.__unstableSetEditorMode( mode );
const isPublishSidebarOpened = registry
.select( editorStore )
.isPublishSidebarOpened();
dispatch( {
type: 'SET_CANVAS_MODE',
mode,
} );
const isEditMode = mode === 'edit';
if ( isPublishSidebarOpened && ! isEditMode ) {
registry.dispatch( editorStore ).closePublishSidebar();
}
// Check if the block list view should be open by default.
// If `distractionFree` mode is enabled, the block list view should not be open.
// This behavior is disabled for small viewports.
if (
isMediumOrBigger &&
isEditMode &&
registry
.select( preferencesStore )
.get( 'core', 'showListViewByDefault' ) &&
! registry
.select( preferencesStore )
.get( 'core', 'distractionFree' )
) {
registry
.dispatch( editorStore )
.setIsListViewOpened( true );
} else {
registry
.dispatch( editorStore )
.setIsListViewOpened( false );
}
registry.dispatch( editorStore ).setIsInserterOpened( false );
} );
};
/*
* Skip transition in mobile, otherwise it crashes the browser.
* See: https://github.com/WordPress/gutenberg/pull/63002.
*/
if ( ! isMediumOrBigger || ! document.startViewTransition ) {
switchCanvasMode();
} else {
document.documentElement.classList.add(
`canvas-mode-${ mode }-transition`
);
const transition = document.startViewTransition( () =>
switchCanvasMode()
);
transition.finished.finally( () => {
document.documentElement.classList.remove(
`canvas-mode-${ mode }-transition`
);
} );
}
};
/**
* Action that switches the editor canvas container view.
*
* @param {?string} view Editor canvas container view.
*/
export const setEditorCanvasContainerView =
( view ) =>
( { dispatch } ) => {
dispatch( {
type: 'SET_EDITOR_CANVAS_CONTAINER_VIEW',
view,
} );
};