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

Adding generateScreenshot into ShowkaseComposable annotation #360

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

IvanSanchez-uam
Copy link

@IvanSanchez-uam IvanSanchez-uam commented Oct 11, 2023

The generateScreenshot property is used when showkase is integrated with paparazzi and the purpose of it is to filter all the previews that we want the screenshot test.

the next code snippet shows the usage of generateScreenshot

// This preview will be skipped from component browser // but will generate the screenshot @ShowkaseComposable( name = "Basic Chip", group = "Chips", defaultStyle = true, generateScreenshot = true, skip = true ) @Composable fun BasicChipPreview() { BasicChip(text = "Chip Component") }

As you can see the screenshot test will be generated for the preview but will not be part of the component browser.

The main idea of this pr is to have the ability to recognize previews that we want to make the screenshot test.

ivaperez added 2 commits October 11, 2023 12:20
…ation

* writing functionName property into the generated files this is already defined into ShowkaseMetadata.elementName
* creating MyPaparazziShowkaseScreenshotTestFiltered.kt to generate the screenshots for previews that have the new property generateScreenshot = true
* updating BasicChip.kt to use generateScreenshot property in the two previews defined on it
@IvanSanchez-uam
Copy link
Author

@marcorighini maybe you can help me out here, what do I need to get feedback for this PR?

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.

None yet

1 participant