25b65c3fb7
* feat(wip): add basic feed operations * ci: bump checks * ci: bump checks * feat: rework stamps and add feed functionalities * refactor: polish and fixes * feat(wip): add formulas * feat: show bzz.link for websites * feat: add stamp empty states and formatBzz * feat: add feed download * chore: update manifest-js version * feat: dev mode support with bee-js 3.1.0 (#273) * feat: dev mode support with bee-js 3.1.0 * fix: added missing package-lock.json file * build: remove PR preview * style: work on design * feat: add TroubleshootConnectionCard * build: remove depcheck Co-authored-by: Attila Gazso <agazso@gmail.com>
89 lines
2.5 KiB
TypeScript
89 lines
2.5 KiB
TypeScript
import { Box, Grid } from '@material-ui/core'
|
|
import { ReactElement } from 'react'
|
|
import { ArrowLeft, Check, Layers, PlusSquare, X } from 'react-feather'
|
|
import { DocumentationText } from '../../components/DocumentationText'
|
|
import ExpandableListItemActions from '../../components/ExpandableListItemActions'
|
|
import { SwarmButton } from '../../components/SwarmButton'
|
|
|
|
interface Props {
|
|
step: number
|
|
onUpload: () => void
|
|
onCancel: () => void
|
|
onGoBack: () => void
|
|
onProceed: () => void
|
|
isUploading: boolean
|
|
hasStamp: boolean
|
|
uploadLabel: string
|
|
stampMode: 'BUY' | 'SELECT'
|
|
setStampMode: (mode: 'BUY' | 'SELECT') => void
|
|
}
|
|
|
|
export function UploadActionBar({
|
|
step,
|
|
onUpload,
|
|
onCancel,
|
|
onGoBack,
|
|
onProceed,
|
|
isUploading,
|
|
hasStamp,
|
|
uploadLabel,
|
|
stampMode,
|
|
setStampMode,
|
|
}: Props): ReactElement {
|
|
if (step === 0) {
|
|
return (
|
|
<>
|
|
<Box mb={1}>
|
|
<ExpandableListItemActions>
|
|
<SwarmButton onClick={onProceed} iconType={Layers}>
|
|
Add Postage Stamp
|
|
</SwarmButton>
|
|
<SwarmButton onClick={onCancel} iconType={X} cancel>
|
|
Cancel
|
|
</SwarmButton>
|
|
</ExpandableListItemActions>
|
|
</Box>
|
|
<DocumentationText>You need a postage stamp to upload.</DocumentationText>
|
|
</>
|
|
)
|
|
}
|
|
|
|
if (step === 1) {
|
|
return (
|
|
<Grid container direction="row" justifyContent="space-between">
|
|
<ExpandableListItemActions>
|
|
{stampMode === 'SELECT' && (
|
|
<SwarmButton onClick={onProceed} iconType={Check} disabled={!hasStamp}>
|
|
Proceed With Selected Stamp
|
|
</SwarmButton>
|
|
)}
|
|
<SwarmButton onClick={onGoBack} iconType={ArrowLeft} cancel>
|
|
Back To Preview
|
|
</SwarmButton>
|
|
</ExpandableListItemActions>
|
|
<SwarmButton
|
|
onClick={() => setStampMode(stampMode === 'BUY' ? 'SELECT' : 'BUY')}
|
|
iconType={stampMode === 'BUY' ? Layers : PlusSquare}
|
|
>
|
|
{stampMode === 'BUY' ? 'Use Existing Stamp' : 'Buy New Stamp'}
|
|
</SwarmButton>
|
|
</Grid>
|
|
)
|
|
}
|
|
|
|
if (step === 2) {
|
|
return (
|
|
<ExpandableListItemActions>
|
|
<SwarmButton onClick={onUpload} iconType={Check} disabled={isUploading} loading={isUploading}>
|
|
{uploadLabel}
|
|
</SwarmButton>
|
|
<SwarmButton onClick={onGoBack} iconType={ArrowLeft} disabled={isUploading} cancel>
|
|
Change Postage Stamp
|
|
</SwarmButton>
|
|
</ExpandableListItemActions>
|
|
)
|
|
}
|
|
|
|
return <></>
|
|
}
|