DocSpace-buildtools/web/ASC.Web.Storybook/stories/calendar/calendar.stories.js

38 lines
1.3 KiB
JavaScript

import React from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import { withKnobs, boolean, color, select, date } from '@storybook/addon-knobs/react';
import withReadme from 'storybook-readme/with-readme';
import Readme from './README.md';
import { NewCalendar } from 'asc-web-components';
import moment from 'moment';
import 'moment/min/locales'
function myDateKnob(name, defaultValue) {
const stringTimestamp = date(name, defaultValue)
return new Date(stringTimestamp)
}
const locales = moment.locales();
const arraySize = ['base', 'big'];
storiesOf('Components|Calendar', module)
.addDecorator(withKnobs)
.addDecorator(withReadme(Readme))
.add('calendar', () => (
<NewCalendar
onChange={date => {
action('Selected date')(date);
}}
isDisabled={boolean('isDisabled', false)}
themeColor={color('themeColor', '#ED7309')}
selectedDate={myDateKnob('selectedDate', new Date())}
openToDate={myDateKnob('openToDate', new Date())}
minDate={myDateKnob('minDate', new Date("1970/01/01"))}
maxDate={myDateKnob('maxDate', new Date(new Date().getFullYear() + 1 + "/01/01"))}
locale={select('location', locales, 'en')}
size={select('size', arraySize, 'base')}
/>
));