Skip to content

refactor(IssueLabel): update types, tests, and stories for usage #6265

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

Merged
merged 15 commits into from
Jul 30, 2025
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
5 changes: 5 additions & 0 deletions .changeset/dry-chairs-start.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@primer/react': minor
---

Update IssueLabel component types to support custom content through `children` and support the `as` prop
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 13 additions & 2 deletions e2e/components/IssueLabel.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {test, expect} from '@playwright/test'
import {test, expect, type Page} from '@playwright/test'
import {visit} from '../test-helpers/storybook'
import {themes} from '../test-helpers/themes'

Expand Down Expand Up @@ -86,10 +86,16 @@ const stories = [
{
title: 'Button',
id: 'experimental-components-issuelabel-features--as-button',
async interact(page: Page) {
await page.getByRole('button', {name: 'Issue label'}).hover()
},
},
{
title: 'Link',
id: 'experimental-components-issuelabel-features--as-link',
async interact(page: Page) {
await page.getByRole('link', {name: 'Issue label'}).hover()
},
},
{
title: 'Group Of Labels',
Expand Down Expand Up @@ -120,7 +126,12 @@ test.describe('IssueLabel', () => {
})

// Default state
await expect(page).toHaveScreenshot(`IssueLabel.${story.title}.${theme}.png`)
await expect(page.locator('body')).toHaveScreenshot(`IssueLabel.${story.title}.${theme}.png`)

if ('interact' in story) {
await story.interact(page)
await expect(page.locator('body')).toHaveScreenshot(`IssueLabel.interactions.${story.title}.${theme}.png`)
}
})
})
}
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/react/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ module.exports = {
'<rootDir>/src/deprecated/UnderlineNav/UnderlineNavLink.test.tsx',
'<rootDir>/src/experimental/SelectPanel2/',
'<rootDir>/src/deprecated/',
'<rootDir>/src/experimental/IssueLabel',
'<rootDir>/src/hooks/',
'<rootDir>/src/internal/utils/',
'<rootDir>/src/live-region/',
Expand Down
41 changes: 19 additions & 22 deletions packages/react/src/experimental/IssueLabel/IssueLabel.docs.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
{
"id": "issue_label",
"name": "IssueLabel",
"status": "draft",
"status": "alpha",
"a11yReviewed": false,
"stories": [],
"importPath": "@primer/react/experimental",
"props": [
{
"name": "as",
"type": "React.ElementType",
"description": "The HTML element or React component to render as the root element"
},
{
"name": "className",
"type": "string",
"description": "Class name for custom styling"
},
{
"name": "fillColor",
"type": "string",
Expand All @@ -16,31 +26,18 @@
"type": "'pink'\n| 'plum'\n| 'purple'\n| 'indigo'\n| 'blue'\n| 'cyan'\n| 'teal'\n| 'pine'\n| 'green'\n| 'lime'\n| 'olive'\n| 'lemon'\n| 'yellow'\n| 'orange'\n| 'red'\n| 'coral'\n| 'gray'\n| 'brown'\n| 'auburn'",
"defaultValue": "'gray'",
"description": "Color variant for the background and text color"
},
{
"name": "className",
"type": "string",
"description": "Class name for custom styling."
},
}
],
"subcomponents": [],
"stories": [
{
"name": "href",
"type": "string"
"id": "experimental-components-issuelabel--default"
},
{
"name": "as",
"type": "React.ElementType",
"defaultValue": "'span'"
"id": "experimental-components-issuelabel-features--group-of-labels"
},
{
"name": "text",
"type": "string",
"description": "Label text."
},
{
"name": "id",
"type": "string",
"description": "A unique identifier that can be associated with the label."
"id": "experimental-components-issuelabel-features--hex-color"
}
],
"subcomponents": []
]
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {IssueLabel} from '../IssueLabel'
import type {Meta} from '@storybook/react-vite'
import {Stack} from '../../Stack'
import {action} from 'storybook/internal/actions'

const meta = {
title: 'Experimental/Components/IssueLabel/Features',
Expand All @@ -9,54 +10,55 @@ const meta = {

export default meta

export const VariantPink = () => <IssueLabel variant="pink" text="Issue label" />
export const VariantPink = () => <IssueLabel variant="pink">Issue label</IssueLabel>

export const VariantPlum = () => <IssueLabel variant="plum" text="Issue label" />
export const VariantPlum = () => <IssueLabel variant="plum">Issue label</IssueLabel>

export const VariantPurple = () => <IssueLabel variant="purple" text="Issue label" />
export const VariantPurple = () => <IssueLabel variant="purple">Issue label</IssueLabel>

export const VariantIndigo = () => <IssueLabel variant="indigo" text="Issue label" />
export const VariantIndigo = () => <IssueLabel variant="indigo">Issue label</IssueLabel>

export const VariantBlue = () => <IssueLabel variant="blue" text="Issue label" />
export const VariantBlue = () => <IssueLabel variant="blue">Issue label</IssueLabel>

export const VariantCyan = () => <IssueLabel variant="cyan" text="Issue label" />
export const VariantCyan = () => <IssueLabel variant="cyan">Issue label</IssueLabel>

export const VariantTeal = () => <IssueLabel variant="teal" text="Issue label" />
export const VariantTeal = () => <IssueLabel variant="teal">Issue label</IssueLabel>

export const VariantPine = () => <IssueLabel variant="pine" text="Issue label" />
export const VariantPine = () => <IssueLabel variant="pine">Issue label</IssueLabel>

export const VariantGreen = () => <IssueLabel variant="green" text="Issue label" />
export const VariantGreen = () => <IssueLabel variant="green">Issue label</IssueLabel>

export const VariantLime = () => <IssueLabel variant="lime" text="Issue label" />
export const VariantLime = () => <IssueLabel variant="lime">Issue label</IssueLabel>

export const VariantOlive = () => <IssueLabel variant="olive" text="Issue label" />
export const VariantOlive = () => <IssueLabel variant="olive">Issue label</IssueLabel>

export const VariantLemon = () => <IssueLabel variant="lemon" text="Issue label" />
export const VariantLemon = () => <IssueLabel variant="lemon">Issue label</IssueLabel>

export const VariantYellow = () => <IssueLabel variant="yellow" text="Issue label" />
export const VariantYellow = () => <IssueLabel variant="yellow">Issue label</IssueLabel>

export const VariantOrange = () => <IssueLabel variant="orange" text="Issue label" />
export const VariantOrange = () => <IssueLabel variant="orange">Issue label</IssueLabel>

export const VariantRed = () => <IssueLabel variant="red" text="Issue label" />
export const VariantRed = () => <IssueLabel variant="red">Issue label</IssueLabel>

export const VariantCoral = () => <IssueLabel variant="coral" text="Issue label" />
export const VariantCoral = () => <IssueLabel variant="coral">Issue label</IssueLabel>

export const VariantGray = () => <IssueLabel variant="gray" text="Issue label" />
export const VariantGray = () => <IssueLabel variant="gray">Issue label</IssueLabel>

export const VariantBrown = () => <IssueLabel variant="brown" text="Issue label" />
export const VariantBrown = () => <IssueLabel variant="brown">Issue label</IssueLabel>

export const VariantAuburn = () => <IssueLabel variant="auburn" text="Issue label" />
export const VariantAuburn = () => <IssueLabel variant="auburn">Issue label</IssueLabel>

export const HexColor = (args: {fillColor: `#${string}`}) => {
return <IssueLabel fillColor={args.fillColor}>Issue label</IssueLabel>
}

export const HexColor = (args: {fillColor: `#${string}`}) => (
<IssueLabel text="Issue label" fillColor={args.fillColor} />
)
HexColor.args = {
fillColor: '#59B200',
}
HexColor.argTypes = {
fillColor: {control: {type: 'color'}},
variant: {table: {disable: true}},
text: {table: {disable: true}},
children: {table: {disable: true}},
id: {table: {disable: true}},
className: {table: {disable: true}},
onClick: {table: {disable: true}},
Expand All @@ -65,19 +67,17 @@ HexColor.argTypes = {
href: {table: {disable: true}},
}

export const AsLink = () => <IssueLabel href="/" text="Issue label" />

export const AsButton = () => <IssueLabel text="Issue label" as="button" />
export const AsLink = () => <IssueLabel href="/">Issue label</IssueLabel>

export const OnClick = () => <IssueLabel text="Issue label" onClick={() => alert('clicked')} />
export const AsButton = () => <IssueLabel onClick={action('onClick')}>Issue label</IssueLabel>

export const GroupOfLabels = () => (
<Stack direction="horizontal" gap="condensed" wrap="wrap">
<IssueLabel variant="blue" text="Issue label" />
<IssueLabel variant="purple" text="Another label" />
<IssueLabel variant="green" text="A third label" />
<IssueLabel variant="orange" text="Issue label" />
<IssueLabel variant="yellow" text="Another label" />
<IssueLabel variant="brown" text="A third label" />
<IssueLabel variant="blue">Issue label</IssueLabel>
<IssueLabel variant="purple">Another label</IssueLabel>
<IssueLabel variant="green">A third label</IssueLabel>
<IssueLabel variant="orange">Issue label</IssueLabel>
<IssueLabel variant="yellow">Another label</IssueLabel>
<IssueLabel variant="brown">A third label</IssueLabel>
</Stack>
)
Loading
Loading