-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(react-color-picker): added vr tests (#33491)
Co-authored-by: Victor Genaev <[email protected]>
- Loading branch information
1 parent
fc5f0b1
commit 03bae17
Showing
3 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
apps/vr-tests-react-components/src/stories/ColorPicker/ColorPicker.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import * as React from 'react'; | ||
import type { Meta } from '@storybook/react'; | ||
import { ColorPicker } from '@fluentui/react-color-picker-preview'; | ||
import { SampleColorPicker } from './utils'; | ||
import { Steps } from 'storywright'; | ||
|
||
import { DARK_MODE, getStoryVariant, HIGH_CONTRAST, RTL, withStoryWrightSteps } from '../../utilities'; | ||
|
||
export default { | ||
title: 'ColorPicker Converged', | ||
decorators: [ | ||
story => withStoryWrightSteps({ story, steps: new Steps().snapshot('default', { cropTo: '.testWrapper' }).end() }), | ||
], | ||
} satisfies Meta<typeof ColorPicker>; | ||
|
||
export const Default = () => <SampleColorPicker color={{ h: 109, s: 1, v: 0.91 }} />; | ||
|
||
export const DefaultDarkMode = getStoryVariant(Default, DARK_MODE); | ||
|
||
export const DefaultHighContrast = getStoryVariant(Default, HIGH_CONTRAST); | ||
|
||
export const DefaultRTL = getStoryVariant(Default, RTL); | ||
|
||
export const Shape = () => ( | ||
<> | ||
<SampleColorPicker color={{ h: 195, s: 0.85, v: 0.93 }} shape="square" /> | ||
<SampleColorPicker color={{ h: 195, s: 0.85, v: 0.913 }} shape="rounded" /> | ||
</> | ||
); | ||
Shape.storyName = 'shape'; |
16 changes: 16 additions & 0 deletions
16
apps/vr-tests-react-components/src/stories/ColorPicker/utils.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import * as React from 'react'; | ||
import { | ||
ColorPicker, | ||
ColorArea, | ||
AlphaSlider, | ||
ColorSlider, | ||
type ColorPickerProps, | ||
} from '@fluentui/react-color-picker-preview'; | ||
|
||
export const SampleColorPicker = (props: ColorPickerProps) => ( | ||
<ColorPicker {...props}> | ||
<ColorArea /> | ||
<ColorSlider /> | ||
<AlphaSlider /> | ||
</ColorPicker> | ||
); |