-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add: Option to pick a pattern on page start.
- Loading branch information
1 parent
15a9154
commit c19587f
Showing
5 changed files
with
155 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 121 additions & 0 deletions
121
packages/edit-post/src/components/start-page-options/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
/** | ||
* WordPress dependencies | ||
*/ | ||
import { Modal } from '@wordpress/components'; | ||
import { __ } from '@wordpress/i18n'; | ||
import { useState, useEffect } from '@wordpress/element'; | ||
import { | ||
store as blockEditorStore, | ||
__experimentalBlockPatternsList as BlockPatternsList, | ||
} from '@wordpress/block-editor'; | ||
import { useSelect, useDispatch } from '@wordpress/data'; | ||
import { useAsyncList } from '@wordpress/compose'; | ||
import { store as editorStore } from '@wordpress/editor'; | ||
|
||
/** | ||
* Internal dependencies | ||
*/ | ||
import { store as editPostStore } from '../../store'; | ||
|
||
function PatternSelection( { onChoosePattern } ) { | ||
const { blockPatterns } = useSelect( ( select ) => { | ||
const { __experimentalGetPatternsByBlockTypes } = select( | ||
blockEditorStore | ||
); | ||
return { | ||
blockPatterns: __experimentalGetPatternsByBlockTypes( | ||
'core/post-content' | ||
), | ||
}; | ||
}, [] ); | ||
const shownBlockPatterns = useAsyncList( blockPatterns ); | ||
const { resetEditorBlocks } = useDispatch( editorStore ); | ||
useEffect( () => { | ||
if ( blockPatterns.length <= 1 ) { | ||
onChoosePattern(); | ||
} | ||
}, [ blockPatterns.length ] ); | ||
return ( | ||
<BlockPatternsList | ||
blockPatterns={ blockPatterns } | ||
shownPatterns={ shownBlockPatterns } | ||
onClickPattern={ ( _pattern, blocks ) => { | ||
resetEditorBlocks( blocks ); | ||
onChoosePattern(); | ||
} } | ||
/> | ||
); | ||
} | ||
|
||
const START_PAGE_MODAL_STATES = { | ||
INITIAL: 'INITIAL', | ||
PATTERN: 'PATTERN', | ||
CLOSED: 'CLOSED', | ||
}; | ||
|
||
export default function StartPageOptions() { | ||
const [ modalState, setModalState ] = useState( | ||
START_PAGE_MODAL_STATES.INITIAL | ||
); | ||
const shouldOpenModel = useSelect( | ||
( select ) => { | ||
if ( modalState !== START_PAGE_MODAL_STATES.INITIAL ) { | ||
return false; | ||
} | ||
const { __experimentalGetPatternsByBlockTypes } = select( | ||
blockEditorStore | ||
); | ||
const { | ||
getCurrentPostType, | ||
getEditedPostContent, | ||
isEditedPostSaveable, | ||
} = select( editorStore ); | ||
const { isEditingTemplate, isFeatureActive } = select( | ||
editPostStore | ||
); | ||
return ( | ||
getCurrentPostType() === 'page' && | ||
! isEditedPostSaveable() && | ||
'' === getEditedPostContent() && | ||
! isEditingTemplate() && | ||
! isFeatureActive( 'welcomeGuide' ) && | ||
__experimentalGetPatternsByBlockTypes( 'core/post-content' ) | ||
.length >= 1 | ||
); | ||
}, | ||
[ modalState ] | ||
); | ||
|
||
useEffect( () => { | ||
if ( shouldOpenModel ) { | ||
setModalState( START_PAGE_MODAL_STATES.PATTERN ); | ||
} | ||
}, [ shouldOpenModel ] ); | ||
|
||
if ( | ||
modalState === START_PAGE_MODAL_STATES.INITIAL || | ||
modalState === START_PAGE_MODAL_STATES.CLOSED | ||
) { | ||
return null; | ||
} | ||
return ( | ||
<Modal | ||
className="edit-post-start-page-options__modal" | ||
title={ __( 'Choose a pattern' ) } | ||
closeLabel={ __( 'Cancel' ) } | ||
onRequestClose={ () => { | ||
setModalState( START_PAGE_MODAL_STATES.CLOSED ); | ||
} } | ||
> | ||
<div className="edit-post-start-page-options__modal-content"> | ||
{ modalState === START_PAGE_MODAL_STATES.PATTERN && ( | ||
<PatternSelection | ||
onChoosePattern={ () => { | ||
setModalState( START_PAGE_MODAL_STATES.CLOSED ); | ||
} } | ||
/> | ||
) } | ||
</div> | ||
</Modal> | ||
); | ||
} |
27 changes: 27 additions & 0 deletions
27
packages/edit-post/src/components/start-page-options/style.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
.edit-post-start-page-options__modal { | ||
// To keep modal dimensions consistent as subsections are navigated, width | ||
// and height are used instead of max-(width/height). | ||
@include break-small() { | ||
width: calc(100% - #{ $grid-unit-20 * 2 }); | ||
height: calc(100% - #{ $header-height * 2 }); | ||
} | ||
@include break-medium() { | ||
width: $break-medium - $grid-unit-20 * 2; | ||
} | ||
@include break-large() { | ||
height: 70%; | ||
} | ||
} | ||
|
||
.edit-post-start-page-options__modal-content .block-editor-block-patterns-list { | ||
display: grid; | ||
grid-template-columns: 1fr 1fr; | ||
grid-gap: $grid-unit-10; | ||
|
||
.block-editor-block-patterns-list__list-item { | ||
margin-bottom: 0; | ||
.block-editor-block-preview__container { | ||
min-height: 100px; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters