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

Properly apply styles and classes to the experimental form block #55755

Open
wants to merge 21 commits into
base: trunk
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 10 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 docs/reference-guides/core-blocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ A form. ([Source](https://github.com/WordPress/gutenberg/tree/trunk/packages/blo
- **Name:** core/form
- **Experimental:** true
- **Category:** common
- **Supports:** anchor, color (background, gradients, link, text), spacing (margin, padding), typography (fontSize, lineHeight), ~~className~~
- **Supports:** anchor, color (background, gradients, link, text), spacing (margin, padding), typography (fontSize, lineHeight)
- **Attributes:** action, email, method, submissionMethod

## Input Field
Expand Down
1 change: 0 additions & 1 deletion packages/block-library/src/form/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
},
"supports": {
"anchor": true,
"className": false,
"color": {
"gradients": true,
"link": true,
Expand Down
74 changes: 74 additions & 0 deletions packages/block-library/src/form/deprecated.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
/**
* WordPress dependencies
*/
import { InnerBlocks, useBlockProps } from '@wordpress/block-editor';

const deprecated = [
{
supports: {
anchor: true,
className: false,
color: {
gradients: true,
link: true,
__experimentalDefaultControls: {
background: true,
text: true,
link: true,
},
},
spacing: {
margin: true,
padding: true,
},
typography: {
fontSize: true,
lineHeight: true,
__experimentalFontFamily: true,
__experimentalTextDecoration: true,
__experimentalFontStyle: true,
__experimentalFontWeight: true,
__experimentalLetterSpacing: true,
__experimentalTextTransform: true,
__experimentalDefaultControls: {
fontSize: true,
},
},
__experimentalSelector: 'form',
},
attributes: {
submissionMethod: {
type: 'string',
default: 'email',
},
method: {
type: 'string',
default: 'post',
},
action: {
type: 'string',
},
email: {
type: 'string',
},
},
save( { attributes } ) {
const blockProps = useBlockProps.save();
const { submissionMethod } = attributes;

return (
<form
{ ...blockProps }
className="wp-block-form"
encType={
submissionMethod === 'email' ? 'text/plain' : null
}
>
<InnerBlocks.Content />
</form>
);
},
},
];

export default deprecated;
1 change: 0 additions & 1 deletion packages/block-library/src/form/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ const Edit = ( { attributes, setAttributes, clientId } ) => {
) }
<form
{ ...innerBlocksProps }
className="wp-block-form"
encType={ submissionMethod === 'email' ? 'text/plain' : null }
/>
</>
Expand Down
2 changes: 2 additions & 0 deletions packages/block-library/src/form/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import edit from './edit';
import metadata from './block.json';
import save from './save';
import variations from './variations';
import deprecated from './deprecated';

/**
* WordPress dependencies
Expand All @@ -19,6 +20,7 @@ export { metadata, name };
export const settings = {
edit,
save,
deprecated,
variations,
};

Expand Down
1 change: 0 additions & 1 deletion packages/block-library/src/form/save.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ const Save = ( { attributes } ) => {
return (
<form
{ ...blockProps }
className="wp-block-form"
encType={ submissionMethod === 'email' ? 'text/plain' : null }
>
<InnerBlocks.Content />
Expand Down
Loading