@polkadot/util#isObject TypeScript Examples
The following examples show how to use
@polkadot/util#isObject.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AddressInfo.tsx From crust-apps with Apache License 2.0 | 6 votes |
// skip balances retrieval of none of this matches
function skipBalancesIf ({ withBalance = true, withExtended = false }: Props): boolean {
if (withBalance === true || withExtended === true) {
return false;
} else if (isObject(withBalance)) {
// these all pull from the all balances
if (withBalance.available || withBalance.locked || withBalance.reserved || withBalance.total || withBalance.vested) {
return false;
}
} else if (isObject(withExtended)) {
if (withExtended.nonce) {
return false;
}
}
return true;
}
Example #2
Source File: AddressInfo.tsx From crust-apps with Apache License 2.0 | 6 votes |
function skipStakingIf ({ stakingInfo, withBalance = true, withValidatorPrefs = false }: Props): boolean {
if (stakingInfo) {
return true;
} else if (withBalance === true || withValidatorPrefs) {
return false;
} else if (isObject(withBalance)) {
if (withBalance.unlocking || withBalance.redeemable) {
return false;
} else if (withBalance.bonded) {
return Array.isArray(withBalance.bonded);
}
}
return true;
}
Example #3
Source File: AddressInfo.tsx From subscan-multisig-react with Apache License 2.0 | 6 votes |
// skip balances retrieval of none of this matches
function skipBalancesIf({ withBalance = true, withExtended = false }: Props): boolean {
if (withBalance === true || withExtended === true) {
return false;
} else if (isObject(withBalance)) {
// these all pull from the all balances
if (
withBalance.available ||
withBalance.locked ||
withBalance.reserved ||
withBalance.total ||
withBalance.vested
) {
return false;
}
} else if (isObject(withExtended)) {
if (withExtended.nonce) {
return false;
}
}
return true;
}
Example #4
Source File: AddressInfo.tsx From subscan-multisig-react with Apache License 2.0 | 6 votes |
function skipStakingIf({ stakingInfo, withBalance = true, withValidatorPrefs = false }: Props): boolean {
if (stakingInfo) {
return true;
} else if (withBalance === true || withValidatorPrefs) {
return false;
} else if (isObject(withBalance)) {
if (withBalance.unlocking || withBalance.redeemable) {
return false;
} else if (withBalance.bonded) {
return Array.isArray(withBalance.bonded);
}
}
return true;
}