1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
import React from 'react' import { Popup, TextButton, ButtonGroup, ContextualMenu, Context, Text, Spacer } from '@dailykit/ui' import { storiesOf } from '@storybook/react' storiesOf('Popup', module)
.add('Alert', () => <PopupAlert />).add('Contextual Menu', () => <ContextualMenuWrapper />) export const ContextualMenuWrapper = () => { return ( <> <div style={{ display: 'flex', justifyContent: 'center' }}> <Text as='text1'>Default option</Text> <Spacer size='16px' /> <ContextualMenu> <Context title='This is context 1' handleClick={() => console.log('Context1')} > <p>This is things could be done</p> <TextButton type='solid' size='sm'> Update </TextButton> </Context> <Context title='This is context 2' handleClick={() => console.log('Context2')} /> </ContextualMenu> </div> <br /> <Spacer size='16px' /> <div style={{ display: 'flex', justifyContent: 'center' }}> <Text as='text1'>Menu opens left shifted</Text> <ContextualMenu position='left'> <Context title='This is context 1' handleClick={() => console.log('Context1')} > <p>This is things could be done</p> <TextButton type='solid' size='sm'> Update </TextButton> </Context> <Context title='This is context 2' handleClick={() => console.log('Context2')} /> </ContextualMenu> </div> <br /> <Spacer size='16px' /> <div style={{ display: 'flex', justifyContent: 'center' }}> <Text as='text1'>Menu opens right shifted</Text> <ContextualMenu position='right'> <Context title='This is context 1' handleClick={() => console.log('Context1')} > <p>This is things could be done</p> <TextButton type='solid' size='sm'> Update </TextButton> </Context> <Context title='This is context 2' handleClick={() => console.log('Context2')} /> </ContextualMenu> </div> </> ) } export const PopupAlert = () => { const [showPrimary, setShowPrimary] = React.useState(false) const [showDanger, setShowDanger] = React.useState(false) return ( <div className='App'> <TextButton type='solid' onClick={() => setShowPrimary(!showPrimary)}> Primary </TextButton> <TextButton type='solid' onClick={() => setShowDanger(!showDanger)}> Danger </TextButton> <Popup show={showPrimary} clickOutsidePopup={() => setShowPrimary(false)} > <Popup.Actions> <Popup.Text type='primary'> Closing this file will not save any changes! </Popup.Text> <Popup.Close closePopup={() => setShowPrimary(!showPrimary)} /> </Popup.Actions> <Popup.ConfirmText>Are you sure?</Popup.ConfirmText> <Popup.Actions> <ButtonGroup align='left'> <TextButton type='solid' onClick={() => setShowPrimary(!showPrimary)} > Yes! delete this file </TextButton> <TextButton type='ghost' onClick={() => setShowPrimary(!showPrimary)} > Sorry, Shaktiman! </TextButton> </ButtonGroup> </Popup.Actions> </Popup> <Popup show={showDanger} clickOutsidePopup={() => setShowDanger(false)} > <Popup.Actions> <Popup.Text type='danger'> Closing this file will not save any changes! </Popup.Text> <Popup.Close closePopup={() => setShowDanger(!showDanger)} /> </Popup.Actions> <Popup.ConfirmText>Are you sure?</Popup.ConfirmText> <Popup.Actions> <ButtonGroup align='left'> <TextButton type='solid' onClick={() => setShowDanger(!showDanger)} > Yes! delete this file </TextButton> <TextButton type='ghost' onClick={() => setShowDanger(!showDanger)} > Sorry, Shaktiman! </TextButton> </ButtonGroup> </Popup.Actions> </Popup> </div> ) }