mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-18 10:52:16 +03:00
Merge pull request #2533 from ecency/sa/delegation-update
prefill delegation amount input field with already delegated amount
This commit is contained in:
commit
f052644d80
@ -36,7 +36,6 @@ export const useNotificationsQuery = (filter: NotificationFilters) => {
|
||||
return lastId;
|
||||
};
|
||||
|
||||
|
||||
// query initialization
|
||||
const notificationQueries = useQueries({
|
||||
queries: pageParams.map((pageParam) => ({
|
||||
@ -67,7 +66,7 @@ export const useNotificationsQuery = (filter: NotificationFilters) => {
|
||||
}
|
||||
};
|
||||
|
||||
const _dataArrs = notificationQueries.map(query => query.data);
|
||||
const _dataArrs = notificationQueries.map((query) => query.data);
|
||||
|
||||
return {
|
||||
data: unionBy(..._dataArrs, 'id'),
|
||||
|
@ -164,15 +164,21 @@ class DelegateScreen extends Component {
|
||||
const vest_shares = parseAsset(curShare.vesting_shares);
|
||||
this.setState({
|
||||
delegatedHP: vestsToHp(vest_shares.amount, hivePerMVests).toFixed(3),
|
||||
hp: vestsToHp(vest_shares.amount, hivePerMVests).toFixed(3),
|
||||
amount: vest_shares.amount,
|
||||
});
|
||||
} else {
|
||||
this.setState({
|
||||
delegatedHP: 0,
|
||||
hp: 0,
|
||||
amount: 0,
|
||||
});
|
||||
}
|
||||
} else {
|
||||
this.setState({
|
||||
delegatedHP: 0,
|
||||
hp: 0,
|
||||
amount: 0,
|
||||
});
|
||||
}
|
||||
} catch (err) {
|
||||
@ -585,9 +591,9 @@ class DelegateScreen extends Component {
|
||||
<KeyboardAvoidingView
|
||||
behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
|
||||
style={styles.fillSpace}
|
||||
keyboardShouldPersistTaps
|
||||
keyboardShouldPersistTaps="always"
|
||||
>
|
||||
<ScrollView keyboardShouldPersistTaps contentContainerStyle={styles.grow}>
|
||||
<ScrollView keyboardShouldPersistTaps="always" contentContainerStyle={styles.grow}>
|
||||
<View style={styles.container}>
|
||||
{step >= 1 && _renderStepOne()}
|
||||
{step >= 2 && _renderStepTwo()}
|
||||
|
Loading…
Reference in New Issue
Block a user