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

Global Styles: Add block preview component in global styles #45719

Merged
merged 4 commits into from
Dec 7, 2022

Conversation

madhusudhand
Copy link
Contributor

What?

This change adds block preview in global styles.

allblocks-preview

How?

  1. A new panel component has been introduced to include in the global styles.
  2. The component considers the example from block-library and renders the component.
  3. Supports enabled for few components to test the feature.

Note: there are few issues observed in the examples of block such as image which renders more spacing. However, it seem to be a different issue.

Testing Instructions

  1. Open site editor
  2. Open global styles panel from the menu.
  3. Go to Blocks -> [select any block such as paragraph]
  4. View the preview of the block
  5. Update the block styles such as typography, color etc..
  6. View the new updates in the preview.

Screenshots or screencast

paragraph-preview

Issues

Partial fix for #42919

@codesandbox
Copy link

codesandbox bot commented Nov 11, 2022

CodeSandbox logoCodeSandbox logo  Open in CodeSandbox Web Editor | VS Code | VS Code Insiders

@madhusudhand madhusudhand self-assigned this Nov 11, 2022
@mtias mtias added the Global Styles Anything related to the broader Global Styles efforts, including Styles Engine and theme.json label Nov 11, 2022
@mtias
Copy link
Member

mtias commented Nov 11, 2022

Thanks, this is going to help a lot!

Copy link
Member

@mikachan mikachan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is looking great! It's testing well for me.

I've got a few comments:

  • I'm not sure how obvious it is that this is a preview of the block. I think maybe a border around the block preview container would help make the preview boundary more obvious. (Maybe like the image on the right here?)

  • There seems to be a lot of padding on the iframe, especially at the top, e.g. the Quote block looks like it has a lot of space above its preview. I think making the preview area more obvious (e.g. with a border) may help this.

image

  • Some blocks don't preview anything, such as: List Item, Post Comments Link, Post Comments Count, Post Author Name, Post Title. I guess this is because there is no example content for them? (Although I don't think they all need to work for this to be merged, I was just highlighting it)

  • The Navigation preview shows the mobile menu, but I'm unable to click on it to open it:

image

  • When there is no preview available, maybe we should show something like a disabled preview area, so it doesn't look like the preview is just broken/not showing? This could be a follow-up.

@noisysocks noisysocks linked an issue Nov 21, 2022 that may be closed by this pull request
@noisysocks noisysocks added the [Type] Enhancement A suggestion for improvement. label Nov 21, 2022
Copy link
Member

@noisysocks noisysocks left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for working on this! I focused on reviewing the code since @mikachan already has left great feedback on the functionality.

@madhusudhand
Copy link
Contributor Author

@mikachan @noisysocks Thanks for the review.

I think maybe a border around the block preview container would help make the preview boundary more obvious.

Introduced the boundary to make it obvious.
image

There seems to be a lot of padding on the iframe, especially at the top

This is due to double spacing ( container padding and block vertical margin ). Addressed it using defaultPadding from example which is set to only a few blocks.

Some blocks don't preview anything, such as: List Item

Right, because they doesn't have an example. They can be added in a separate PR.

The Navigation preview shows the mobile menu, but I'm unable to click on it to open it

The preview is not interactive. It doesn't show hover state for button for example.
However, Example could be revised to show desktop nav items in the preview. I would like to consider this when other examples are added.

When there is no preview available, maybe we should show something like a disabled preview area, so it doesn't look like the preview is just broken/not showing? This could be a follow-up.

mmm, makes sense and it will be consistent. It could be a follow-up

@jasmussen
Copy link
Contributor

Introduced the boundary to make it obvious.

Can you add a border-radius: $radius-block-ui; so it gets 2px rounded corners?

@mtias
Copy link
Member

mtias commented Nov 21, 2022

I think we should also use some opacity or blend mode on the border so that it works ok in situations with custom background colors.

Copy link
Member

@noisysocks noisysocks left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does setting scale and defaultPadding have any effect for the inserter's block preview? or is it just for this new instance of the block preview?

Should we update the block API documentation to document scale and defaultPadding?

@madhusudhand
Copy link
Contributor Author

madhusudhand commented Nov 22, 2022

@noisysocks

Does setting scale and defaultPadding have any effect for the inserter's block preview? or is it just for this new instance of the block preview?

No. They are optional. Inserter block preview doesn't define them and so doesn't have any effect. Only preview in styles panel use them.

Should we update the block API documentation to document scale and defaultPadding?

Updated the docs with examples here

@madhusudhand
Copy link
Contributor Author

madhusudhand commented Nov 22, 2022

@mtias

I think we should also use some opacity or blend mode on the border so that it works ok in situations with custom background colors.

I have done some testing with different colors with the current changes and following are the screenshots.

image image
image image

When a dark background is set, the border is almost not visible.
It plays a role to highlight the preview container, when a lighter background is set.
It is the same as that of the style variations preview.

I might want to try the blend-mode for the border on both of these together in a separate PR.

@noisysocks noisysocks added the Needs Dev Note Requires a developer note for a major WordPress release cycle label Nov 22, 2022
@priethor priethor mentioned this pull request Nov 23, 2022
57 tasks
@madhusudhand madhusudhand force-pushed the block-preview branch 2 times, most recently from 8ddde35 to b77a33d Compare November 25, 2022 11:12
@madhusudhand
Copy link
Contributor Author

P.S. I added Needs Dev Note as there are new block.json APIs. If they're removed then we don't need a dev note.

Reverted the new APIs. This PRs has this tiny change in docs.
Not sure if this is still relevant.

Thanks for the wonderful feedback. Suggestions are addressed.

Note: Took a change related to center alignment of the block out of this PR as it needs to be commonly addressed in all the preview components such as Block Inserter. Will address it in a separate PR.

Copy link
Contributor

@ntsekouras ntsekouras left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for iterating on this @madhusudhand! This looks close!

I'm not sure if this was discussed before, but do we really want the extra margin and in general so much spacing in the previews? If we for example add background it looks like this:
Screenshot 2022-11-25 at 4 03 40 PM

I'll leave this for the designers 😄 --cc @jameskoster

packages/block-library/src/paragraph/index.js Outdated Show resolved Hide resolved
@jameskoster
Copy link
Contributor

I'm not sure if this was discussed before, but do we really want the extra margin and in general so much spacing in the previews? If we for example add background it looks like this:

Good point, the margin can make the display a bit awkward, especially if you have something like a Quote where the margin is so large that it pushes the text out of the preview viewport. Does the preview need to be full-size, or can we scale it like the previews in the Inserter?

A side note: Does the preview window background inherit from global styles, or is it hard-coded to be white?

@noisysocks noisysocks removed the Needs Dev Note Requires a developer note for a major WordPress release cycle label Nov 28, 2022
@madhusudhand
Copy link
Contributor Author

madhusudhand commented Nov 28, 2022

I'm not sure if this was discussed before, but do we really want the extra margin and in general so much spacing in the previews? If we for example add background it looks like this:

The extra space is not entirely due to the margin. It is margin + padding set by custom CSS in specific themes, to add root level padding. Now that #35607 is fixed, individual themes needs a fix to remove the extra padding.

With no such extra padding in themes such as Twenty-Twenty Three, the preview with background is similar to how it looks in the editor, and it is expected I guess. (theme: TT3)

image

A side note: Does the preview window background inherit from global styles, or is it hard-coded to be white?

It inherits from the global styles.

image

Does the preview need to be full-size, or can we scale it like the previews in the Inserter?

With scaling it is no longer as-is view for typography specially for font-size. Hence it is best to keep the original scale.
However, few blocks such as Table are scaled down, as they do not fit within the preview.

update viewport widths for few blocks

add border to preview block and convert viewport width to scale

fix border radius and address minor review comments

address review comments
@jasmussen
Copy link
Contributor

Took this for a quick spin, looks good, thanks for pushing this one. Even if there are rough edges, it brings so many benefits to it so it would be good to land this even if we need to follow up with some iterations.

Two quick observations. It might be good to set box-sizing: border-box; on the block when inside the preview, so it doesn't break out of boundaries when applying border:

Screenshot 2022-12-06 at 13 38 00

And secondly, margin really doesn't translate well in the small preview:

Screenshot 2022-12-06 at 14 00 15

It might be useful to zero out all margins in this preview. It isn't big enough to show the effect anyway. If need be we could explore a followup showing a larger preview on hover, something like that.

@ntsekouras
Copy link
Contributor

It might be useful to zero out all margins in this preview. It isn't big enough to show the effect anyway. If need be we could explore a followup showing a larger preview on hover, something like that.

I think that's a complex issue to solve holistically and could lead to unexpected results. For example even if we add the params/styles to zero out margins and/or padding, there could be blocks that theme styles add borders etc..(ex. code in 2022).

@jasmussen
Copy link
Contributor

Nothing to block this PR, as noted, it's such a cool feature and it would be nice to see it soon!

Copy link
Contributor

@ntsekouras ntsekouras left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for iterating on this one @madhusudhand! Code wise looks good and IMO we can land and iterate to improve. If there is no objection from designers to land this as first version let's 🚢

@ntsekouras ntsekouras merged commit ea615e0 into WordPress:trunk Dec 7, 2022
@github-actions github-actions bot added this to the Gutenberg 14.8 milestone Dec 7, 2022
mpkelly pushed a commit to mpkelly/gutenberg that referenced this pull request Dec 7, 2022
* add block preview in global styles panel

update viewport widths for few blocks

add border to preview block and convert viewport width to scale

fix border radius and address minor review comments

address review comments

* revert scale

* revert defaultPadding and alignment APIs

* remove dropcap for paragraph
@mtias
Copy link
Member

mtias commented Dec 7, 2022

Nice work @madhusudhand !

@madhusudhand madhusudhand deleted the block-preview branch December 8, 2022 05:01
@ryanwelcher ryanwelcher changed the title Add block preview component in global styles Global Styles: Add block preview component in global styles Dec 14, 2022
@bph bph added Needs User Documentation Needs new user documentation Needs Dev Note Requires a developer note for a major WordPress release cycle and removed Needs Dev Note Requires a developer note for a major WordPress release cycle labels Dec 15, 2022
@bph
Copy link
Contributor

bph commented Dec 15, 2022

Note for my future self: double-checked on the Dev note label. Block api changes for scale and defaultPadding were removed as per later comment

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Global Styles Anything related to the broader Global Styles efforts, including Styles Engine and theme.json Needs User Documentation Needs new user documentation [Type] Enhancement A suggestion for improvement.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Global Styles: display inline preview on per-block settings
8 participants