Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add caption toolbar button #228

Merged
merged 4 commits into from
Oct 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/BlockAttributes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export interface BlockAttributes extends TableAttributes {
tableStyles?: string;
captionStyles?: string;
captionSide: CaptionSideValue;
caption: string;
caption?: string;
style: NestedObject;
}

Expand Down
4 changes: 2 additions & 2 deletions src/deprecated.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ const v1 = {
[ `is-sticky-${ sticky }` ]: sticky,
} );

const hasCaption: boolean = ! RichText.isEmpty( caption );
const hasCaption: boolean = ! RichText.isEmpty( caption || '' );

const Section = ( { type, rows }: { type: SectionName; rows: Row[] } ) => {
if ( ! rows.length ) {
Expand Down Expand Up @@ -352,7 +352,7 @@ const v1 = {
};

const Caption = () => (
<RichText.Content tagName="figcaption" value={ caption } style={ captionStylesObj } />
<RichText.Content tagName="figcaption" value={ caption || '' } style={ captionStylesObj } />
);

return (
Expand Down
9 changes: 5 additions & 4 deletions src/edit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function TableEdit( props: BlockEditProps< BlockAttributes > ) {
const {
attributes,
setAttributes,
isSelected,
isSelected: isSingleSelected,
// @ts-ignore: `insertBlocksAfter` prop is not exist at @types
insertBlocksAfter,
} = props;
Expand All @@ -83,11 +83,11 @@ function TableEdit( props: BlockEditProps< BlockAttributes > ) {

// Release cell selection.
useEffect( () => {
if ( ! isSelected ) {
if ( ! isSingleSelected ) {
setSelectedCells( undefined );
setSelectedLine( undefined );
}
}, [ isSelected ] );
}, [ isSingleSelected ] );

// Create virtual table object with the cells placed in positions based on how they actually look.
const vTable: VTable = toVirtualTable( attributes );
Expand Down Expand Up @@ -265,7 +265,7 @@ function TableEdit( props: BlockEditProps< BlockAttributes > ) {
const tableProps = {
attributes,
setAttributes,
isSelected,
isSelected: isSingleSelected,
options,
vTable,
tableStylesObj,
Expand Down Expand Up @@ -303,6 +303,7 @@ function TableEdit( props: BlockEditProps< BlockAttributes > ) {
setSelectedLine,
setSelectedCells,
captionStylesObj,
isSelected: isSingleSelected,
};

const tableCaptionSettingProps = {
Expand Down
89 changes: 72 additions & 17 deletions src/elements/table-caption.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@ import type { Dispatch, SetStateAction } from 'react';
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import { RichText } from '@wordpress/block-editor';
import { BlockControls, RichText } from '@wordpress/block-editor';
import { createBlock, type BlockInstance } from '@wordpress/blocks';
import { ToolbarButton } from '@wordpress/components';
import { caption as captionIcon } from '@wordpress/icons';
import { useState, useEffect, useCallback } from '@wordpress/element';
import { usePrevious } from '@wordpress/compose';

/**
* Internal dependencies
Expand All @@ -24,6 +28,7 @@ type Props = {
setSelectedLine: Dispatch< SetStateAction< VSelectedLine > >;
setSelectedCells: Dispatch< SetStateAction< VSelectedCells > >;
captionStylesObj: Properties;
isSelected?: boolean;
};

export default function TableCaption( {
Expand All @@ -33,25 +38,75 @@ export default function TableCaption( {
setSelectedLine,
setSelectedCells,
captionStylesObj,
isSelected,
}: Props ) {
const { caption } = attributes;
const { caption = '' } = attributes;
const prevCaption = usePrevious( caption );
const isCaptionEmpty = RichText.isEmpty( caption );
const isPrevCaptionEmpty = RichText.isEmpty( prevCaption || '' );
const [ showCaption, setShowCaption ] = useState( ! isCaptionEmpty );

const onChange = ( value: string ) => setAttributes( { caption: value } );
const onChange = ( value: string | undefined ) => setAttributes( { caption: value } );

useEffect( () => {
if ( ! isCaptionEmpty && isPrevCaptionEmpty ) {
setShowCaption( true );
}
}, [ isCaptionEmpty, isPrevCaptionEmpty ] );

useEffect( () => {
if ( ! isSelected && isCaptionEmpty ) {
setShowCaption( false );
}
}, [ isSelected, isCaptionEmpty ] );

const ref = useCallback(
( node: any ) => {
if ( node && isCaptionEmpty ) {
node?.focus();
}
},
[ isCaptionEmpty ]
);

return (
<RichText
aria-label={ __( 'Table caption text', 'flexible-table-block' ) }
placeholder={ __( 'Add caption', 'flexible-table-block' ) }
tagName="figcaption"
style={ captionStylesObj }
value={ caption }
onChange={ onChange }
onFocus={ () => {
setSelectedLine( undefined );
setSelectedCells( undefined );
} }
// @ts-ignore: `__unstableOnSplitAtEnd` prop is not exist at @types
__unstableOnSplitAtEnd={ () => insertBlocksAfter( createBlock( 'core/paragraph' ) ) }
/>
<>
{ isSelected && (
<BlockControls group="block">
<ToolbarButton
onClick={ () => {
setShowCaption( ! showCaption );
if ( showCaption && caption ) {
onChange( undefined );
}
} }
icon={ captionIcon }
isPressed={ showCaption }
label={
showCaption
? __( 'Remove caption', 'flexible-table-block' )
: __( 'Add caption', 'flexible-table-block' )
}
/>
</BlockControls>
) }
{ showCaption && ( ! RichText.isEmpty( caption ) || isSelected ) && (
<RichText
aria-label={ __( 'Table caption text', 'flexible-table-block' ) }
placeholder={ __( 'Add caption', 'flexible-table-block' ) }
tagName="figcaption"
style={ captionStylesObj }
value={ caption }
ref={ ref }
onChange={ onChange }
onFocus={ () => {
setSelectedLine( undefined );
setSelectedCells( undefined );
} }
// @ts-ignore: `__unstableOnSplitAtEnd` prop is not exist at @types
__unstableOnSplitAtEnd={ () => insertBlocksAfter( createBlock( 'core/paragraph' ) ) }
/>
) }
</>
);
}
4 changes: 2 additions & 2 deletions src/save.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default function save( { attributes }: BlockSaveProps< BlockAttributes >
[ `is-sticky-${ sticky }` ]: sticky,
} );

const hasCaption: boolean = ! RichText.isEmpty( caption );
const hasCaption: boolean = ! RichText.isEmpty( caption || '' );

const Section = ( { type, rows }: { type: SectionName; rows: Row[] } ) => {
if ( ! rows.length ) {
Expand Down Expand Up @@ -103,7 +103,7 @@ export default function save( { attributes }: BlockSaveProps< BlockAttributes >
};

const Caption = () => (
<RichText.Content tagName="figcaption" value={ caption } style={ captionStylesObj } />
<RichText.Content tagName="figcaption" value={ caption || '' } style={ captionStylesObj } />
);

return (
Expand Down
7 changes: 4 additions & 3 deletions test/e2e/specs/table-style.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ test.describe( 'Styles', () => {
await admin.createNewPost();
} );

test( 'table styles should be applied', async ( { editor, page, pageUtils, fsbUtils } ) => {
test.skip( 'table styles should be applied', async ( { editor, page, pageUtils, fsbUtils } ) => {
await fsbUtils.createFlexibleTableBlock();
await editor.openDocumentSettingsSidebar();
await page
Expand Down Expand Up @@ -204,7 +204,7 @@ test.describe( 'Styles', () => {
expect( await editor.getEditedPostContent() ).toMatchSnapshot();
} );

test( 'cell styles should be applied', async ( { editor, page, pageUtils, fsbUtils } ) => {
test.skip( 'cell styles should be applied', async ( { editor, page, pageUtils, fsbUtils } ) => {
await fsbUtils.createFlexibleTableBlock();
await editor.canvas.getByRole( 'textbox', { name: 'Body cell text' } ).nth( 0 ).click();
await editor.openDocumentSettingsSidebar();
Expand All @@ -217,7 +217,7 @@ test.describe( 'Styles', () => {
expect( await editor.getEditedPostContent() ).toMatchSnapshot();
} );

test( 'cell styles should be applied to multiple cells', async ( {
test.skip( 'cell styles should be applied to multiple cells', async ( {
editor,
page,
pageUtils,
Expand All @@ -237,6 +237,7 @@ test.describe( 'Styles', () => {

test( 'caption styles should be applied', async ( { editor, page, fsbUtils } ) => {
await fsbUtils.createFlexibleTableBlock();
await editor.clickBlockToolbarButton( 'Add caption' );
await editor.canvas
.getByRole( 'textbox', { name: 'Table caption text' } )
.fill( 'Flexible Table Block' );
Expand Down
4 changes: 3 additions & 1 deletion test/e2e/specs/transform.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,7 @@ test.describe( 'Transform from flexible table block', () => {
} ) => {
const wpVersion = await fsbUtils.getWpVersion();
await fsbUtils.createFlexibleTableBlock();
await editor.clickBlockToolbarButton( 'Add caption' );
await editor.canvas.getByRole( 'textbox', { name: 'Table caption text' } ).click();
await page.keyboard.type( 'Flexible' );
await pageUtils.pressKeys( 'shift+Enter' );
Expand All @@ -348,13 +349,14 @@ test.describe( 'Transform from flexible table block', () => {
expect( await editor.getEditedPostContent() ).toBe( expected );
} );

test( 'should be transformed to core table block width no option caption text', async ( {
test( 'should be transformed to core table block with no option caption text', async ( {
editor,
page,
fsbUtils,
} ) => {
const wpVersion = await fsbUtils.getWpVersion();
await fsbUtils.createFlexibleTableBlock();
await editor.clickBlockToolbarButton( 'Add caption' );
await editor.canvas
.getByRole( 'textbox', { name: 'Table caption text' } )
.fill( 'Flexible Table Block' );
Expand Down
Loading