Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
matoous committed Sep 4, 2024
1 parent 8c62408 commit b83cf5e
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 16 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"lint:fix": "biome check --write && foundry run eslint . --ext .js,.jsx,.ts,.tsx --fix",
"lint:ci": "biome ci && foundry run eslint . --ext .js,.jsx,.ts,.tsx",
"lint:css": "foundry run stylelint '**/*.css'",
"lint:css:fix": "foundry run stylelint '**/*.css' --fix",
"dev": "npm run docs:start",
"docs": "npm run docs:start",
"docs:start": "storybook dev -p 6006",
Expand Down Expand Up @@ -95,4 +96,4 @@
"vitest": "^2.0.3",
"vitest-github-actions-reporter": "^0.11.1"
}
}
}
22 changes: 11 additions & 11 deletions packages/circuit-ui/components/ColorInput/ColorInput.module.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
.suffix {
position: absolute;
top: 0;
right: 0;
width: var(--cui-spacings-exa);
height: var(--cui-spacings-exa);
overflow: hidden;
border-top-right-radius: var(--cui-border-radius-byte);
border-bottom-right-radius: var(--cui-border-radius-byte);
pointer-events: auto !important;
border: none;
border-left: 1px solid var(--cui-border-normal);
width: var(--cui-spacings-exa);
height: var(--cui-spacings-exa);
position: absolute;
top: 0;
right: 0;
border-top-right-radius: var(--cui-border-radius-byte);
border-bottom-right-radius: var(--cui-border-radius-byte);
box-shadow: none;
}

Expand All @@ -20,13 +20,13 @@
line-height: var(--cui-spacings-mega);
}

.colorInput {
opacity: 0;
.color-input {
width: var(--cui-spacings-exa);
height: var(--cui-spacings-exa);
padding: 0;
border: none;
box-shadow: none;
padding: 0;
opacity: 0;
}

.input {
Expand All @@ -43,4 +43,4 @@

.colorpick:focus-within input {
box-shadow: 0 0 0 2px var(--cui-border-accent);
}
}
27 changes: 26 additions & 1 deletion packages/circuit-ui/components/ColorInput/ColorInput.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import { describe, expect, it } from 'vitest';
import { createRef } from 'react';

import { render, axe } from '../../util/test-utils.js';
import { render, axe, screen } from '../../util/test-utils.js';
import type { InputElement } from '../Input/index.js';

import { ColorInput } from './ColorInput.js';
Expand All @@ -36,4 +36,29 @@ describe('ColorInput', () => {
const actual = await axe(container);
expect(actual).toHaveNoViolations();
});

describe('Labeling', () => {
const HEX_SYMBOL = '#';

it('should have the currency symbol as part of its accessible description', () => {
render(<ColorInput {...baseProps} />);
expect(screen.getByRole('textbox')).toHaveAccessibleDescription(
HEX_SYMBOL,
);
});

it('should accept a custom description via aria-describedby', () => {
const customDescription = 'Custom description';
const customDescriptionId = 'customDescriptionId';
render(
<>
<span id={customDescriptionId}>{customDescription}</span>
<ColorInput {...baseProps} aria-describedby={customDescriptionId} />
</>,
);
expect(screen.getByRole('textbox')).toHaveAccessibleDescription(
`${HEX_SYMBOL} ${customDescription}`,
);
});
});
});
20 changes: 17 additions & 3 deletions packages/circuit-ui/components/ColorInput/ColorInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,16 @@ export interface ColorInputProps

export const ColorInput = forwardRef<InputElement, ColorInputProps>(
(
{ onChange, className, value, defaultValue, pickerLabel, ...props },
{
onChange,
className,
value,
defaultValue,
pickerLabel,

'aria-describedby': descriptionId,
...props
},
ref,
) => {
const [currentColor, setCurrentColor] = useState<string | undefined>(
Expand All @@ -76,6 +85,8 @@ export const ColorInput = forwardRef<InputElement, ColorInputProps>(
const colorDisplayRef = useRef<HTMLDivElement>(null);
const colorPickerRef = useRef<InputElement>(null);
const pickerId = useId();
const hexSymbolId = useId();
const descriptionIds = clsx(hexSymbolId, descriptionId);

const onPickerColorChange: ChangeEventHandler<InputElement> = (e) => {
setCurrentColor(e.target.value);
Expand All @@ -97,6 +108,8 @@ export const ColorInput = forwardRef<InputElement, ColorInputProps>(
}
}, [currentColor]);

// render suffix only once, otherwise if it gets re-rendered on color change
// the native color-picker widget might get mistakenly dismissed by the browser
const renderSuffix = useCallback(
() => (
<div
Expand All @@ -110,7 +123,7 @@ export const ColorInput = forwardRef<InputElement, ColorInputProps>(
<input
type="color"
id={pickerId}
className={styles.colorInput}
className={styles['color-input']}
onChange={onPickerColorChange}
ref={applyMultipleRefs(colorPickerRef, ref)}
/>
Expand All @@ -124,7 +137,7 @@ export const ColorInput = forwardRef<InputElement, ColorInputProps>(
className={styles.colorpick}
renderPrefix={({ className: cn }) => (
<div className={clsx(cn, styles.prefix)}>
<span>#</span>
<span id={hexSymbolId}>#</span>
</div>
)}
renderSuffix={renderSuffix}
Expand All @@ -133,6 +146,7 @@ export const ColorInput = forwardRef<InputElement, ColorInputProps>(
maxLength={6}
pattern="[0-9a-f]{3,6}"
onChange={onInputChange}
aria-describedby={descriptionIds}
{...props}
/>
);
Expand Down

0 comments on commit b83cf5e

Please sign in to comment.