Skip to content

Commit

Permalink
Add mechanism to avoid forced child selection on blocks with templates.
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgefilipecosta committed Oct 24, 2018
1 parent 249cc3b commit a54d5b7
Show file tree
Hide file tree
Showing 7 changed files with 68 additions and 23 deletions.
10 changes: 8 additions & 2 deletions docs/data/data-core-editor.md
Original file line number Diff line number Diff line change
Expand Up @@ -1514,7 +1514,10 @@ inserted, optionally at a specific index respective a root block list.
* block: Block object to insert.
* index: Index at which block should be inserted.
* rootClientId: Optional root client ID of block list on which
to insert.
to insert.
* updateSelection: If true block selection will be updated.
If false, block selection will not change.
Defaults to true.

### insertBlocks

Expand All @@ -1526,7 +1529,10 @@ be inserted, optionally at a specific index respective a root block list.
* blocks: Block objects to insert.
* index: Index at which block should be inserted.
* rootClientId: Optional root cliente ID of block list on
which to insert.
which to insert.
* updateSelection: If true block selection will be updated.
If false, block selection will not change.
Defaults to true.

### showInsertionPoint

Expand Down
7 changes: 7 additions & 0 deletions packages/editor/src/components/inner-blocks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,13 @@ const TEMPLATE = [ [ 'core/columns', {}, [

The previous example creates an InnerBlocks area containing two columns one with an image and the other with a paragraph.

### `templateInsertUpdatesSelection`
* **Type:** `Boolean`
* **Default:** `true`

If true when child blocks in the template are inserted the selection is updated.
If false the selection should not be updated when child blocks specified in the template are inserted.

### `templateLock`
* **Type:** `String|Boolean`

Expand Down
4 changes: 2 additions & 2 deletions packages/editor/src/components/inner-blocks/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,15 +143,15 @@ InnerBlocks = compose( [
insertBlocks,
updateBlockListSettings,
} = dispatch( 'core/editor' );
const { block, clientId } = ownProps;
const { block, clientId, templateInsertUpdatesSelection = true } = ownProps;

return {
replaceInnerBlocks( blocks ) {
const clientIds = map( block.innerBlocks, 'clientId' );
if ( clientIds.length ) {
replaceBlocks( clientIds, blocks );
} else {
insertBlocks( blocks, undefined, clientId );
insertBlocks( blocks, undefined, clientId, templateInsertUpdatesSelection );
}
},
updateNestedSettings( settings ) {
Expand Down
29 changes: 18 additions & 11 deletions packages/editor/src/store/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -298,35 +298,42 @@ export function moveBlockToPosition( clientId, fromRootClientId, toRootClientId,
* Returns an action object used in signalling that a single block should be
* inserted, optionally at a specific index respective a root block list.
*
* @param {Object} block Block object to insert.
* @param {?number} index Index at which block should be inserted.
* @param {?string} rootClientId Optional root client ID of block list on which
* to insert.
* @param {Object} block Block object to insert.
* @param {?number} index Index at which block should be inserted.
* @param {?string} rootClientId Optional root client ID of block list on which
* to insert.
* @param {?boolean} updateSelection If true block selection will be updated.
* If false, block selection will not change.
* Defaults to true.
*
* @return {Object} Action object.
*/
export function insertBlock( block, index, rootClientId ) {
return insertBlocks( [ block ], index, rootClientId );
export function insertBlock( block, index, rootClientId, updateSelection = true ) {
return insertBlocks( [ block ], index, rootClientId, updateSelection );
}

/**
* Returns an action object used in signalling that an array of blocks should
* be inserted, optionally at a specific index respective a root block list.
*
* @param {Object[]} blocks Block objects to insert.
* @param {?number} index Index at which block should be inserted.
* @param {?string} rootClientId Optional root cliente ID of block list on
* which to insert.
* @param {Object[]} blocks Block objects to insert.
* @param {?number} index Index at which block should be inserted.
* @param {?string} rootClientId Optional root cliente ID of block list on
* which to insert.
* @param {?boolean} updateSelection If true block selection will be updated.
* If false, block selection will not change.
* Defaults to true.
*
* @return {Object} Action object.
*/
export function insertBlocks( blocks, index, rootClientId ) {
export function insertBlocks( blocks, index, rootClientId, updateSelection = true ) {
return {
type: 'INSERT_BLOCKS',
blocks: castArray( blocks ),
index,
rootClientId,
time: Date.now(),
updateSelection,
};
}

Expand Down
20 changes: 12 additions & 8 deletions packages/editor/src/store/reducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -651,14 +651,18 @@ export function blockSelection( state = {
end: action.clientId,
initialPosition: action.initialPosition,
};
case 'INSERT_BLOCKS':
return {
...state,
start: action.blocks[ 0 ].clientId,
end: action.blocks[ 0 ].clientId,
initialPosition: null,
isMultiSelecting: false,
};
case 'INSERT_BLOCKS': {
if ( action.updateSelection ) {
return {
...state,
start: action.blocks[ 0 ].clientId,
end: action.blocks[ 0 ].clientId,
initialPosition: null,
isMultiSelecting: false,
};
}
return state;
}
case 'REMOVE_BLOCKS':
if ( ! action.clientIds || ! action.clientIds.length || action.clientIds.indexOf( state.start ) === -1 ) {
return state;
Expand Down
2 changes: 2 additions & 0 deletions packages/editor/src/store/test/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ describe( 'actions', () => {
index,
rootClientId: 'testclientid',
time: expect.any( Number ),
updateSelection: true,
} );
} );
} );
Expand All @@ -210,6 +211,7 @@ describe( 'actions', () => {
index,
rootClientId: 'testclientid',
time: expect.any( Number ),
updateSelection: true,
} );
} );
} );
Expand Down
19 changes: 19 additions & 0 deletions packages/editor/src/store/test/reducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1469,6 +1469,7 @@ describe( 'state', () => {
clientId: 'ribs',
name: 'core/freeform',
} ],
updateSelection: true,
} );

expect( state3 ).toEqual( {
Expand All @@ -1479,6 +1480,24 @@ describe( 'state', () => {
} );
} );

it( 'should not select inserted block if updateSelection flag is false', () => {
const original = deepFreeze( { start: 'a', end: 'b' } );

const state3 = blockSelection( original, {
type: 'INSERT_BLOCKS',
blocks: [ {
clientId: 'ribs',
name: 'core/freeform',
} ],
updateSelection: false,
} );

expect( state3 ).toEqual( {
start: 'a',
end: 'b',
} );
} );

it( 'should not update the state if the block moved is already selected', () => {
const original = deepFreeze( { start: 'ribs', end: 'ribs' } );
const state = blockSelection( original, {
Expand Down

0 comments on commit a54d5b7

Please sign in to comment.