75 lines
2.1 KiB
TypeScript
75 lines
2.1 KiB
TypeScript
import React from 'react';
|
|
import { action } from '@storybook/addon-actions';
|
|
import BaseStyles from 'App/BaseStyles';
|
|
import NormalizeStyles from 'App/NormalizeStyles';
|
|
import theme from 'App/ThemeStyles';
|
|
import styled, { ThemeProvider } from 'styled-components';
|
|
import { Popup } from '../PopupMenu';
|
|
import DueDateManager from '.';
|
|
|
|
const PopupWrapper = styled.div`
|
|
width: 310px;
|
|
`;
|
|
|
|
export default {
|
|
component: DueDateManager,
|
|
title: 'DueDateManager',
|
|
parameters: {
|
|
backgrounds: [
|
|
{ name: 'gray', value: '#f8f8f8', default: true },
|
|
{ name: 'white', value: '#ffffff' },
|
|
],
|
|
},
|
|
};
|
|
|
|
export const Default = () => {
|
|
return (
|
|
<>
|
|
<NormalizeStyles />
|
|
<BaseStyles />
|
|
<ThemeProvider theme={theme}>
|
|
<PopupWrapper>
|
|
<Popup title={null} tab={0}>
|
|
<DueDateManager
|
|
task={{
|
|
id: '1',
|
|
taskGroup: { name: 'General', id: '1', position: 1 },
|
|
name: 'Hello, world',
|
|
position: 1,
|
|
labels: [
|
|
{
|
|
id: 'soft-skills',
|
|
assignedDate: new Date().toString(),
|
|
projectLabel: {
|
|
createdDate: new Date().toString(),
|
|
id: 'label-soft-skills',
|
|
name: 'Soft Skills',
|
|
labelColor: {
|
|
id: '1',
|
|
name: 'white',
|
|
colorHex: '#fff',
|
|
position: 1,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
description: 'hello!',
|
|
assigned: [
|
|
{
|
|
id: '1',
|
|
profileIcon: { url: null, initials: null, bgColor: null },
|
|
fullName: 'Jordan Knott',
|
|
},
|
|
],
|
|
}}
|
|
onCancel={action('cancel')}
|
|
onDueDateChange={action('due date change')}
|
|
onRemoveDueDate={action('remove due date')}
|
|
/>
|
|
</Popup>
|
|
</PopupWrapper>
|
|
</ThemeProvider>
|
|
</>
|
|
);
|
|
};
|