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

Avoid a website listing parsing an invalid thumbnail image from an empty meta image of its item which does not even consider it as a preview image #12222

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

yhkee0404
Copy link
Contributor

@yhkee0404 yhkee0404 commented Mar 6, 2025

Description

I added some tests which explain this description.

Rendering a website document where metadata key image has a value of an empty string "" has no problem. It works as well as if there were no such key set, and a preview image, if exists, is successfully chosen as a thumbnail image on a website listing:

image: ""
---
Testing images.
![](/posts/welcome/thumbnail.jpg)

However, rendering another document that sets the aforementioned document as one of its listing contents fails to find a thumbnail image, and it refers to itself since the empty string is parsed as the relative path to itself:

---
title: "Listing Example"
listing:
contents: posts

This causes an infinite loop of rendering a website listing on quarto preview.

The inconsistent rendering behavior between those two website documents results from the following two blocks of lines:

function pageMetadata(
format: Format,
extras: FormatExtras,
): Record<string, unknown> {
const pageTitle = computePageTitle(format, extras) as string;
const pageDescription = format.metadata[kDescription] as string;
const pageImage = format.metadata[kImage]
? format.metadata[kImage] as string
: undefined;
return {
[kTitle]: pageTitle,
[kDescription]: pageDescription || format.metadata[kAbstract] ||
format.metadata[kSubtitle],
[kImage]: pageImage,
};
}

const imageRaw = documentMeta?.image as string | boolean;
const image = imageRaw !== undefined && typeof imageRaw === "string"
? pathWithForwardSlashes(
listingItemHref(imageRaw, dirname(projectRelativePath)),
)
: undefined;

pageImage ignores both an empty string or undefined, which leads to successful detection of a preview image. On the contrary, image discards only undefined or anything other than string, and parses an empty string into the relative path to the listing item because it is a string.

This pull request fixes the special parser that website listings use to parse the thumbnail images from their items' preview images, in order to make it correspond to the individual renderer that the very items use to parse their preview images and ignores an empty meta image, since their final rendering is supposed to have a higher priority over their listings on other documents.

Checklist

I have (if applicable):

@yhkee0404

This comment has been minimized.

@yhkee0404 yhkee0404 marked this pull request as ready for review March 6, 2025 17:42
@yhkee0404 yhkee0404 changed the title Ignore empty meta image from website listing item as pageMetadata does Ignore empty meta image of a website listing item as pageMetadata currently does Mar 7, 2025
@yhkee0404 yhkee0404 changed the title Ignore empty meta image of a website listing item as pageMetadata currently does Avoid a website listing parsing an empty meta image of its item which is never considered as a preview image Mar 7, 2025
@yhkee0404 yhkee0404 changed the title Avoid a website listing parsing an empty meta image of its item which is never considered as a preview image Avoid a website listing parsing an empty meta image from its item which is never considered as a preview image Mar 7, 2025
@yhkee0404 yhkee0404 changed the title Avoid a website listing parsing an empty meta image from its item which is never considered as a preview image Avoid a website listing parsing an invalid thumbnail image from an empty meta image of its item which does not even consider it as a preview image Mar 7, 2025
@cscheid
Copy link
Collaborator

cscheid commented Mar 14, 2025

Hi there - thank you for the PR and the tests!

I want to merge this for 1.7. But I'm wondering about the tests confirm that the preview issue is fixed. The added tests check that the rendering happens as expected, but they don't check that the preview issue is fixed.

@cderv, any ideas? I think this is a pretty hard one to do, because it would involve starting a preview server, editing a file, and then testing if the preview server doesn't go in an infinite loop.

At the same time, I would love for us to have a more robust infrastructure to test preview issues.

@cscheid cscheid added this to the v1.8 milestone Apr 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants