-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
238 additions
and
12 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
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
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
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
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
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
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
15 changes: 15 additions & 0 deletions
15
packages/smarthr-ui/src/components/WarekiPicker/WarekiPicker.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,15 @@ | ||
import React, { ComponentProps } from 'react' | ||
|
||
import { DatePicker } from '../DatePicker' | ||
|
||
type Props = Omit<ComponentProps<typeof DatePicker>, 'showAlternative'> | ||
|
||
const handleShowWareki = (date: Date | null) => | ||
date?.toLocaleDateString('ja-JP-u-ca-japanese', { | ||
dateStyle: 'long', | ||
}) | ||
|
||
export const WarekiPicker: React.FC<Props> = (props) => ( | ||
// eslint-disable-next-line smarthr/a11y-input-in-form-control | ||
<DatePicker {...props} showAlternative={handleShowWareki} /> | ||
) |
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 @@ | ||
export { WarekiPicker } from './WarekiPicker' |
104 changes: 104 additions & 0 deletions
104
packages/smarthr-ui/src/components/WarekiPicker/stories/VRTWarekiPicker.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,104 @@ | ||
/* eslint-disable smarthr/a11y-input-has-name-attribute */ | ||
/* eslint-disable smarthr/a11y-prohibit-input-placeholder */ | ||
/* eslint-disable smarthr/a11y-input-in-form-control */ | ||
import { userEvent, within } from '@storybook/test' | ||
import dayjs from 'dayjs' | ||
import React from 'react' | ||
|
||
import { Cluster } from '../../Layout' | ||
import { WarekiPicker } from '../WarekiPicker' | ||
|
||
import type { Meta, StoryObj } from '@storybook/react' | ||
|
||
export default { | ||
title: 'Forms(フォーム)/WarekiPicker/VRT', | ||
component: WarekiPicker, | ||
render: (args) => { | ||
const value = '2024/11/06' | ||
const placeholder = '日付を入力してください' | ||
const width = '100%' | ||
const formatDate = (date: Date | null) => dayjs(date).format('YYYY年MM月DD') | ||
|
||
const matrics = [ | ||
{ error: false, disabled: false }, | ||
{ error: false, disabled: true }, | ||
{ error: true, disabled: false }, | ||
{ error: true, disabled: true }, | ||
] | ||
|
||
return ( | ||
<Cluster> | ||
{matrics.map((m) => ( | ||
<> | ||
<WarekiPicker {...args} error={m.error} disabled={m.disabled} /> | ||
<WarekiPicker error={m.error} disabled={m.disabled} placeholder={placeholder} /> | ||
<WarekiPicker error={m.error} disabled={m.disabled} value={value} /> | ||
<WarekiPicker error={m.error} disabled={m.disabled} width={width} /> | ||
<WarekiPicker | ||
error={m.error} | ||
disabled={m.disabled} | ||
value={value} | ||
formatDate={formatDate} | ||
/> | ||
</> | ||
))} | ||
</Cluster> | ||
) | ||
}, | ||
parameters: { | ||
chromatic: { disableSnapshot: false }, | ||
}, | ||
tags: ['!autodocs', 'skip-test-runner'], | ||
} satisfies Meta<typeof WarekiPicker> | ||
|
||
export const VRT = {} | ||
|
||
export const VRTForcedColors: StoryObj = { | ||
...VRT, | ||
parameters: { | ||
chromatic: { forcedColors: 'active' }, | ||
}, | ||
} | ||
|
||
export const VRTExpanded: StoryObj = { | ||
render: (args) => <WarekiPicker {...args} className="shr-min-w-[500px] shr-h-[500px]" />, | ||
args: { | ||
value: '2024/11/06', | ||
}, | ||
play: async ({ canvasElement }) => { | ||
const canvas = within(canvasElement) | ||
await userEvent.click(canvas.getByRole('textbox')) | ||
}, | ||
} | ||
|
||
export const VRTExpandedForcedColor: StoryObj = { | ||
...VRTExpanded, | ||
parameters: { | ||
chromatic: { forcedColors: 'active' }, | ||
}, | ||
} | ||
|
||
export const VRTExpandedFromTo: StoryObj = { | ||
...VRTExpanded, | ||
args: { | ||
value: '2024/11/06', | ||
from: dayjs('2024/11/03').toDate(), | ||
to: dayjs('2024/11/09').toDate(), | ||
}, | ||
} | ||
|
||
export const VRTExpandedFromToForcedColor: StoryObj = { | ||
...VRTExpandedFromTo, | ||
parameters: { | ||
chromatic: { forcedColors: 'active' }, | ||
}, | ||
} | ||
|
||
export const VRTExpandedBottom: StoryObj = { | ||
...VRTExpanded, | ||
render: (args) => ( | ||
<div className="shr-w-full shr-h-[100vh] shr-relative"> | ||
<WarekiPicker {...args} className="shr-absolute shr-bottom-0" /> | ||
</div> | ||
), | ||
} |
100 changes: 100 additions & 0 deletions
100
packages/smarthr-ui/src/components/WarekiPicker/stories/WarekiPicker.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,100 @@ | ||
/* eslint-disable smarthr/a11y-input-in-form-control */ | ||
import { userEvent, within } from '@storybook/test' | ||
import dayjs from 'dayjs' | ||
import React from 'react' | ||
|
||
import { WarekiPicker } from '../WarekiPicker' | ||
|
||
import type { Meta, StoryObj } from '@storybook/react' | ||
|
||
export default { | ||
title: 'Forms(フォーム)/WarekiPicker', | ||
component: WarekiPicker, | ||
render: (args) => <WarekiPicker {...args} />, | ||
args: {}, | ||
argTypes: { | ||
value: { | ||
control: 'text', | ||
}, | ||
}, | ||
parameters: { | ||
chromatic: { disableSnapshot: true }, | ||
}, | ||
tags: ['skip-test-runner'], | ||
} satisfies Meta<typeof WarekiPicker> | ||
|
||
export const Playground: StoryObj<typeof WarekiPicker> = { | ||
args: {}, | ||
} | ||
|
||
export const Value: StoryObj<typeof WarekiPicker> = { | ||
name: 'value', | ||
args: { | ||
value: '2024-11-06', | ||
}, | ||
} | ||
|
||
export const Disabled: StoryObj<typeof WarekiPicker> = { | ||
name: 'disabled', | ||
args: { | ||
disabled: true, | ||
}, | ||
} | ||
|
||
export const PlaceHolder: StoryObj<typeof WarekiPicker> = { | ||
name: 'placeholder', | ||
args: { | ||
placeholder: '日付を選択してください', | ||
}, | ||
} | ||
|
||
export const Error: StoryObj<typeof WarekiPicker> = { | ||
name: 'error', | ||
args: { | ||
error: true, | ||
}, | ||
} | ||
|
||
export const Width: StoryObj<typeof WarekiPicker> = { | ||
name: 'width', | ||
args: { | ||
width: '500px', | ||
}, | ||
} | ||
|
||
export const From: StoryObj<typeof WarekiPicker> = { | ||
name: 'from', | ||
args: { | ||
from: dayjs().subtract(3, 'day').toDate(), | ||
}, | ||
play: async ({ canvasElement }) => { | ||
const canvas = within(canvasElement) | ||
await userEvent.click(canvas.getByRole('textbox')) | ||
}, | ||
} | ||
|
||
export const To: StoryObj<typeof WarekiPicker> = { | ||
name: 'to', | ||
args: { | ||
to: dayjs().add(3, 'day').toDate(), | ||
}, | ||
play: async ({ canvasElement }) => { | ||
const canvas = within(canvasElement) | ||
await userEvent.click(canvas.getByRole('textbox')) | ||
}, | ||
} | ||
|
||
export const ParseInput: StoryObj<typeof WarekiPicker> = { | ||
name: 'parseInput', | ||
args: { | ||
value: '2024年11月06日', | ||
parseInput: (input) => dayjs(input.replace(/年|月/g, '-').replace(/日/g, '')).toDate(), | ||
}, | ||
} | ||
|
||
export const FormatDate: StoryObj<typeof WarekiPicker> = { | ||
name: 'formatDate', | ||
args: { | ||
formatDate: (date) => dayjs(date).format('YYYY年MM月DD日'), | ||
}, | ||
} |
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
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