-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(UsaDateInput): implement
UsaDateInput
component
ISSUES CLOSED: #24
- Loading branch information
1 parent
88a44b6
commit 11084ac
Showing
4 changed files
with
730 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,195 @@ | ||
import UsaDateInput from './UsaDateInput.vue' | ||
|
||
const defaultProps = { | ||
label: UsaDateInput.props.label.default, | ||
day: UsaDateInput.props.day.default, | ||
month: UsaDateInput.props.month.default, | ||
year: UsaDateInput.props.year.default, | ||
dateOrder: UsaDateInput.props.dateOrder.default(), | ||
dateLabels: UsaDateInput.props.dateLabels.default(), | ||
name: UsaDateInput.props.name.default, | ||
required: UsaDateInput.props.required.default, | ||
error: UsaDateInput.props.error.default, | ||
id: UsaDateInput.props.id.default, | ||
} | ||
|
||
export default { | ||
component: UsaDateInput, | ||
title: 'Components/UsaDateInput', | ||
argTypes: { | ||
label: { | ||
control: { type: 'text' }, | ||
}, | ||
day: { | ||
control: { type: 'text' }, | ||
}, | ||
month: { | ||
control: { type: 'text' }, | ||
}, | ||
year: { | ||
control: { type: 'text' }, | ||
}, | ||
dateOrder: { | ||
control: { type: 'object' }, | ||
}, | ||
dateLabels: { | ||
control: { type: 'object' }, | ||
}, | ||
name: { | ||
control: { type: 'text' }, | ||
}, | ||
required: { | ||
control: { type: 'boolean' }, | ||
}, | ||
error: { | ||
control: { type: 'boolean' }, | ||
}, | ||
id: { | ||
control: { type: 'text' }, | ||
}, | ||
labelSlot: { | ||
control: { type: 'text' }, | ||
}, | ||
hintSlot: { | ||
control: { type: 'text' }, | ||
}, | ||
errorMessageSlot: { | ||
control: { type: 'text' }, | ||
}, | ||
}, | ||
args: { | ||
label: defaultProps.label, | ||
day: defaultProps.day, | ||
month: defaultProps.month, | ||
year: defaultProps.year, | ||
dateOrder: defaultProps.dateOrder, | ||
dateLabels: defaultProps.dateLabels, | ||
name: defaultProps.name, | ||
required: defaultProps.required, | ||
error: defaultProps.error, | ||
id: defaultProps.id, | ||
labelSlot: '', | ||
hintSlot: '', | ||
errorMessageSlot: '', | ||
}, | ||
decorators: [ | ||
() => ({ | ||
template: '<div class="usa-form usa-form--large"><story /></div>', | ||
}), | ||
], | ||
} | ||
|
||
const DefaultTemplate = (args, { argTypes }) => ({ | ||
components: { UsaDateInput }, | ||
props: Object.keys(argTypes), | ||
setup() { | ||
return { ...args } | ||
}, | ||
template: `<UsaDateInput | ||
:label="label" | ||
:day="day" | ||
:month="month" | ||
:year="year" | ||
:dateOrder="dateOrder" | ||
:dateLabels="dateLabels" | ||
:name="name" | ||
:required="required" | ||
:error="error" | ||
:id="id" | ||
> | ||
<template v-if="${!!args.labelSlot}" #label>${args.labelSlot}</template> | ||
<template v-if="${!!args.hintSlot}" #hint>${args.hintSlot}</template> | ||
<template v-if="${!!args.errorMessageSlot}" #error-message>${ | ||
args.errorMessageSlot | ||
}</template> | ||
</UsaDateInput>`, | ||
}) | ||
|
||
export const DefaultDateInput = DefaultTemplate.bind({}) | ||
DefaultDateInput.args = { | ||
...defaultProps, | ||
label: 'Date input label', | ||
} | ||
DefaultDateInput.storyName = 'Default' | ||
|
||
export const DefaultValueDateInput = DefaultTemplate.bind({}) | ||
DefaultValueDateInput.args = { | ||
...defaultProps, | ||
label: 'Date input label', | ||
day: '01', | ||
month: '12', | ||
year: '2021', | ||
} | ||
DefaultValueDateInput.storyName = 'Default Date Values' | ||
|
||
export const HintDateInput = DefaultTemplate.bind({}) | ||
HintDateInput.args = { | ||
...defaultProps, | ||
label: 'Date input label', | ||
hintSlot: 'DD-MM-YYYY', | ||
} | ||
HintDateInput.storyName = 'Hint' | ||
|
||
export const ErrorMessageDateInput = DefaultTemplate.bind({}) | ||
ErrorMessageDateInput.args = { | ||
...defaultProps, | ||
label: 'Date input label', | ||
error: true, | ||
errorMessageSlot: 'Error message here', | ||
} | ||
ErrorMessageDateInput.storyName = 'Error w/ Message' | ||
|
||
export const RequiredDateInput = DefaultTemplate.bind({}) | ||
RequiredDateInput.args = { | ||
...defaultProps, | ||
label: 'Date input label', | ||
required: true, | ||
} | ||
RequiredDateInput.storyName = 'Required' | ||
|
||
export const NameAttrDateInput = DefaultTemplate.bind({}) | ||
NameAttrDateInput.args = { | ||
...defaultProps, | ||
label: 'Date input label', | ||
name: 'expiration', | ||
} | ||
NameAttrDateInput.storyName = 'Custom Name Attribute' | ||
|
||
export const CustomOrderDateInput = DefaultTemplate.bind({}) | ||
CustomOrderDateInput.args = { | ||
...defaultProps, | ||
label: 'Date input label', | ||
dateOrder: ['year', 'month', 'day'], | ||
} | ||
CustomOrderDateInput.storyName = 'Custom Input Order' | ||
|
||
export const ExcludeInputsDateInput = DefaultTemplate.bind({}) | ||
ExcludeInputsDateInput.args = { | ||
...defaultProps, | ||
label: 'Date input label', | ||
dateOrder: ['year', 'month'], | ||
} | ||
ExcludeInputsDateInput.storyName = 'Exclude Inputs' | ||
|
||
export const CustomInputLabelsDateInput = DefaultTemplate.bind({}) | ||
CustomInputLabelsDateInput.args = { | ||
...defaultProps, | ||
label: 'Date input label', | ||
dateLabels: { month: 'MM', day: 'DD', year: 'YYYY' }, | ||
} | ||
CustomInputLabelsDateInput.storyName = 'Custom Input Labels' | ||
|
||
export const LabelSlotDateInput = DefaultTemplate.bind({}) | ||
LabelSlotDateInput.args = { | ||
...defaultProps, | ||
labelSlot: `<em>Label slot content</em>`, | ||
} | ||
LabelSlotDateInput.storyName = 'Label Slot' | ||
|
||
export const CustomIdDateInput = DefaultTemplate.bind({}) | ||
CustomIdDateInput.args = { | ||
...defaultProps, | ||
label: 'Date input label', | ||
id: 'custom-id', | ||
} | ||
CustomIdDateInput.storyName = 'Custom ID' |
Oops, something went wrong.