Added stop power down feature

This commit is contained in:
Mustafa Buyukcelebi 2019-07-03 19:46:48 +03:00
parent 050f547274
commit ad98e9602b
4 changed files with 144 additions and 54 deletions

View File

@ -299,6 +299,9 @@
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account"
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds"
}
}

View File

@ -18,10 +18,13 @@ import { SquareButton } from '../../../components/buttons';
import InformationBox from '../../../components/informationBox';
import { Icon } from '../../../components/icon';
import { IconButton } from '../../../components/iconButton';
import parseToken from '../../../utils/parseToken';
import { vestsToSp } from '../../../utils/conversions';
import WithdrawAccountModal from './withdrawAccountModal';
import parseToken from '../../../utils/parseToken';
import parseDate from '../../../utils/parseDate';
import { vestsToSp } from '../../../utils/conversions';
import isEmptyDate from '../../../utils/isEmptyDate';
import styles from './transferStyles';
/* Props
* ------------------------------------------------
@ -39,6 +42,9 @@ class PowerDownView extends Component {
isOpenWithdrawAccount: false,
destinationAccounts: [],
};
this.startActionSheet = React.createRef();
this.stopActionSheet = React.createRef();
}
// Component Life Cycles
@ -142,6 +148,18 @@ class PowerDownView extends Component {
_renderInformationText = text => <Text style={styles.amountText}>{text}</Text>;
_renderIncomingFunds = (poweringDownFund, poweringDownVests, nextPowerDown) => (
<Fragment>
<Text style={{ color: 'green', fontSize: 20, marginVertical: 5 }}>
{`+ ${poweringDownFund} STEEM`}
</Text>
<Text style={{ color: 'red', fontSize: 15, marginVertical: 5 }}>
{`- ${poweringDownVests} VESTS`}
</Text>
<Text style={{ marginVertical: 5 }}>{nextPowerDown}</Text>
</Fragment>
);
_handleOnDropdownChange = value => {
const { fetchBalance } = this.props;
@ -181,15 +199,25 @@ class PowerDownView extends Component {
} = this.props;
const { amount, steemConnectTransfer, isTransfering, isOpenWithdrawAccount } = this.state;
let path;
let poweringDownVests = 0;
let availableVestingShares = 0;
const availableVestingShares =
const poweringDown = !isEmptyDate(selectedAccount.next_vesting_withdrawal);
const nextPowerDown = parseDate(selectedAccount.next_vesting_withdrawal);
if (poweringDown) {
poweringDownVests = parseToken(selectedAccount.vesting_withdraw_rate);
} else {
availableVestingShares =
parseToken(get(selectedAccount, 'vesting_shares')) -
(Number(get(selectedAccount, 'to_withdraw')) - Number(get(selectedAccount, 'withdrawn'))) /
1e6 -
parseToken(get(selectedAccount, 'delegated_vesting_shares'));
}
const spCalculated = vestsToSp(amount, steemPerMVests);
const fundPerWeek = Math.round((spCalculated / 13) * 1000) / 1000;
const poweringDownFund = vestsToSp(poweringDownVests, steemPerMVests).toFixed(3);
return (
<Fragment>
@ -205,6 +233,8 @@ class PowerDownView extends Component {
label={intl.formatMessage({ id: 'transfer.destination_accounts' })}
rightComponent={this._renderDestinationAccountItems}
/>
{!poweringDown && (
<Fragment>
<TransferFormItem
label={intl.formatMessage({ id: 'transfer.amount' })}
rightComponent={() => this._renderInformationText(`${amount.toFixed(6)} VESTS`)}
@ -224,8 +254,26 @@ class PowerDownView extends Component {
<Text style={styles.informationText}>
{intl.formatMessage({ id: 'transfer.amount_information' })}
</Text>
</Fragment>
)}
{poweringDown && (
<Fragment>
<TransferFormItem
label={intl.formatMessage({ id: 'transfer.incoming_funds' })}
rightComponent={() =>
this._renderIncomingFunds(
poweringDownFund,
poweringDownVests,
nextPowerDown.toLocaleString(),
)
}
/>
</Fragment>
)}
</View>
<View style={styles.bottomContent}>
{!poweringDown && (
<Fragment>
<View style={styles.informationView}>
<InformationBox
style={styles.spInformation}
@ -236,7 +284,12 @@ class PowerDownView extends Component {
text={`- ${amount.toFixed(0)} VESTS`}
/>
</View>
<Icon style={styles.icon} size={40} iconType="MaterialIcons" name="arrow-downward" />
<Icon
style={styles.icon}
size={40}
iconType="MaterialIcons"
name="arrow-downward"
/>
<InformationBox
style={styles.steemInformation}
text={`+ ${fundPerWeek.toFixed(3)} STEEM`}
@ -244,16 +297,31 @@ class PowerDownView extends Component {
<MainButton
style={styles.button}
isDisable={amount <= 0}
onPress={() => this.ActionSheet.show()}
onPress={() => this.startActionSheet.current.show()}
isLoading={isTransfering}
>
<Text style={styles.buttonText}>{intl.formatMessage({ id: 'transfer.next' })}</Text>
<Text style={styles.buttonText}>
{intl.formatMessage({ id: 'transfer.next' })}
</Text>
</MainButton>
</Fragment>
)}
{poweringDown && (
<MainButton
style={styles.stopButton}
onPress={() => this.stopActionSheet.current.show()}
isLoading={isTransfering}
>
<Text style={styles.buttonText}>
{intl.formatMessage({ id: 'transfer.stop' })}
</Text>
</MainButton>
)}
</View>
</ScrollView>
</View>
<ActionSheet
ref={o => (this.ActionSheet = o)}
ref={this.startActionSheet}
options={[
intl.formatMessage({ id: 'alert.confirm' }),
intl.formatMessage({ id: 'alert.cancel' }),
@ -261,9 +329,20 @@ class PowerDownView extends Component {
title={intl.formatMessage({ id: 'transfer.information' })}
cancelButtonIndex={1}
destructiveButtonIndex={0}
onPress={index => {
index === 0 ? this._handleTransferAction() : null;
}}
onPress={index => (index === 0 ? this._handleTransferAction() : null)}
/>
<ActionSheet
ref={this.stopActionSheet}
options={[
intl.formatMessage({ id: 'alert.confirm' }),
intl.formatMessage({ id: 'alert.cancel' }),
]}
title={intl.formatMessage({ id: 'transfer.stop_information' })}
cancelButtonIndex={1}
destructiveButtonIndex={0}
onPress={index =>
index === 0 ? this.setState({ amount: 0 }, this._handleTransferAction()) : null
}
/>
<Modal
isOpen={isOpenWithdrawAccount}

View File

@ -47,6 +47,13 @@ export default EStyleSheet.create({
justifyContent: 'center',
alignItems: 'center',
},
stopButton: {
width: '$deviceWidth / 3',
marginTop: 30,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'red',
},
buttonText: {
color: 'white',
},

1
src/utils/isEmptyDate.js Normal file
View File

@ -0,0 +1 @@
export default s => parseInt(s.split('-')[0], 10) < 1980;