Add loading state

This commit is contained in:
fragosti
2018-07-20 09:16:55 -07:00
parent cdcf624e9e
commit f27084ced4
3 changed files with 4 additions and 3 deletions

View File

@@ -6,5 +6,5 @@ export interface AllowanceStateToggleProps {}
const flip = () => Math.random() < 0.5;
export const AllowanceStateToggle: React.StatelessComponent<AllowanceStateToggleProps> = () => (
<AllowanceStateView allowanceState={flip() ? 'locked' : 'unlocked'} />
<AllowanceStateView allowanceState={flip() ? 'locked' : 'loading'} />
);

View File

@@ -1,4 +1,5 @@
import { colors } from '@0xproject/react-shared';
import CircularProgress from 'material-ui/CircularProgress';
import * as React from 'react';
import { styled } from 'ts/style/theme';
@@ -15,7 +16,7 @@ export const AllowanceStateView: React.StatelessComponent<AllowanceStateViewProp
case 'unlocked':
return renderCheck();
case 'loading':
return <div>'...'</div>;
return <CircularProgress size={15} thickness={2} />;
default:
return null;
}

View File

@@ -398,7 +398,7 @@ export class Wallet extends React.Component<WalletProps, WalletState> {
// if we don't have a toggle, we still want some space to the right of the "wrap" button so that it aligns with
// the "unwrap" button in the row below
const toggle = (
<Container width={NO_ALLOWANCE_TOGGLE_SPACE_WIDTH}>
<Container className="flex justify-center" width={NO_ALLOWANCE_TOGGLE_SPACE_WIDTH}>
{shouldShowToggle && this._renderAllowanceToggle(config.allowanceToggleConfig)}
</Container>
);