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', () => ( { 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')} /> ));