Replace remaining strEnums with property TS string enums
This commit is contained in:
parent
90d274ffc4
commit
abbad68eb8
@ -186,7 +186,7 @@ export class Blockchain {
|
||||
// later on in the logic.
|
||||
let provider;
|
||||
switch (providerType) {
|
||||
case ProviderType.LEDGER: {
|
||||
case ProviderType.Ledger: {
|
||||
const isU2FSupported = await utils.isU2FSupportedAsync();
|
||||
if (!isU2FSupported) {
|
||||
throw new Error('Cannot update providerType to LEDGER without U2F support');
|
||||
@ -220,7 +220,7 @@ export class Blockchain {
|
||||
break;
|
||||
}
|
||||
|
||||
case ProviderType.INJECTED: {
|
||||
case ProviderType.Injected: {
|
||||
if (_.isUndefined(this.cachedProvider)) {
|
||||
return; // Going from injected to injected, so we noop
|
||||
}
|
||||
@ -241,8 +241,8 @@ export class Blockchain {
|
||||
await this.fetchTokenInformationAsync();
|
||||
}
|
||||
public async setProxyAllowanceAsync(token: Token, amountInBaseUnits: BigNumber): Promise<void> {
|
||||
utils.assert(this.isValidAddress(token.address), BlockchainCallErrs.TOKEN_ADDRESS_IS_INVALID);
|
||||
utils.assert(this.doesUserAddressExist(), BlockchainCallErrs.USER_HAS_NO_ASSOCIATED_ADDRESSES);
|
||||
utils.assert(this.isValidAddress(token.address), BlockchainCallErrs.TokenAddressIsInvalid);
|
||||
utils.assert(this.doesUserAddressExist(), BlockchainCallErrs.UserHasNoAssociatedAddresses);
|
||||
utils.assert(!_.isUndefined(this.zeroEx), 'ZeroEx must be instantiated.');
|
||||
|
||||
const txHash = await this.zeroEx.token.setProxyAllowanceAsync(
|
||||
@ -258,7 +258,7 @@ export class Blockchain {
|
||||
token.address, this.userAddress, toAddress, amountInBaseUnits,
|
||||
);
|
||||
await this.showEtherScanLinkAndAwaitTransactionMinedAsync(txHash);
|
||||
const etherScanLinkIfExists = utils.getEtherScanLinkIfExists(txHash, this.networkId, EtherscanLinkSuffixes.tx);
|
||||
const etherScanLinkIfExists = utils.getEtherScanLinkIfExists(txHash, this.networkId, EtherscanLinkSuffixes.Tx);
|
||||
this.dispatcher.showFlashMessage(React.createElement(TokenSendCompleted, {
|
||||
etherScanLinkIfExists,
|
||||
token,
|
||||
@ -294,7 +294,7 @@ export class Blockchain {
|
||||
}
|
||||
public async fillOrderAsync(signedOrder: SignedOrder,
|
||||
fillTakerTokenAmount: BigNumber): Promise<BigNumber> {
|
||||
utils.assert(this.doesUserAddressExist(), BlockchainCallErrs.USER_HAS_NO_ASSOCIATED_ADDRESSES);
|
||||
utils.assert(this.doesUserAddressExist(), BlockchainCallErrs.UserHasNoAssociatedAddresses);
|
||||
|
||||
const shouldThrowOnInsufficientBalanceOrAllowance = true;
|
||||
|
||||
@ -346,7 +346,7 @@ export class Blockchain {
|
||||
return this.web3Wrapper.isAddress(lowercaseAddress);
|
||||
}
|
||||
public async pollTokenBalanceAsync(token: Token) {
|
||||
utils.assert(this.doesUserAddressExist(), BlockchainCallErrs.USER_HAS_NO_ASSOCIATED_ADDRESSES);
|
||||
utils.assert(this.doesUserAddressExist(), BlockchainCallErrs.UserHasNoAssociatedAddresses);
|
||||
|
||||
const [currBalance] = await this.getTokenBalanceAndAllowanceAsync(this.userAddress, token.address);
|
||||
|
||||
@ -375,7 +375,7 @@ export class Blockchain {
|
||||
return signatureData;
|
||||
}
|
||||
public async mintTestTokensAsync(token: Token) {
|
||||
utils.assert(this.doesUserAddressExist(), BlockchainCallErrs.USER_HAS_NO_ASSOCIATED_ADDRESSES);
|
||||
utils.assert(this.doesUserAddressExist(), BlockchainCallErrs.UserHasNoAssociatedAddresses);
|
||||
|
||||
const mintableContract = await this.instantiateContractIfExistsAsync(MintableArtifacts, token.address);
|
||||
await mintableContract.mint(constants.MINT_AMOUNT, {
|
||||
@ -390,14 +390,14 @@ export class Blockchain {
|
||||
}
|
||||
public async convertEthToWrappedEthTokensAsync(amount: BigNumber): Promise<void> {
|
||||
utils.assert(!_.isUndefined(this.zeroEx), 'ZeroEx must be instantiated.');
|
||||
utils.assert(this.doesUserAddressExist(), BlockchainCallErrs.USER_HAS_NO_ASSOCIATED_ADDRESSES);
|
||||
utils.assert(this.doesUserAddressExist(), BlockchainCallErrs.UserHasNoAssociatedAddresses);
|
||||
|
||||
const txHash = await this.zeroEx.etherToken.depositAsync(amount, this.userAddress);
|
||||
await this.showEtherScanLinkAndAwaitTransactionMinedAsync(txHash);
|
||||
}
|
||||
public async convertWrappedEthTokensToEthAsync(amount: BigNumber): Promise<void> {
|
||||
utils.assert(!_.isUndefined(this.zeroEx), 'ZeroEx must be instantiated.');
|
||||
utils.assert(this.doesUserAddressExist(), BlockchainCallErrs.USER_HAS_NO_ASSOCIATED_ADDRESSES);
|
||||
utils.assert(this.doesUserAddressExist(), BlockchainCallErrs.UserHasNoAssociatedAddresses);
|
||||
|
||||
const txHash = await this.zeroEx.etherToken.withdrawAsync(amount, this.userAddress);
|
||||
await this.showEtherScanLinkAndAwaitTransactionMinedAsync(txHash);
|
||||
@ -463,7 +463,7 @@ export class Blockchain {
|
||||
}
|
||||
private async showEtherScanLinkAndAwaitTransactionMinedAsync(
|
||||
txHash: string): Promise<TransactionReceiptWithDecodedLogs> {
|
||||
const etherScanLinkIfExists = utils.getEtherScanLinkIfExists(txHash, this.networkId, EtherscanLinkSuffixes.tx);
|
||||
const etherScanLinkIfExists = utils.getEtherScanLinkIfExists(txHash, this.networkId, EtherscanLinkSuffixes.Tx);
|
||||
this.dispatcher.showFlashMessage(React.createElement(TransactionSubmitted, {
|
||||
etherScanLinkIfExists,
|
||||
}));
|
||||
@ -491,7 +491,7 @@ export class Blockchain {
|
||||
}
|
||||
private async startListeningForExchangeLogFillEventsAsync(indexFilterValues: IndexedFilterValues): Promise<void> {
|
||||
utils.assert(!_.isUndefined(this.zeroEx), 'ZeroEx must be instantiated.');
|
||||
utils.assert(this.doesUserAddressExist(), BlockchainCallErrs.USER_HAS_NO_ASSOCIATED_ADDRESSES);
|
||||
utils.assert(this.doesUserAddressExist(), BlockchainCallErrs.UserHasNoAssociatedAddresses);
|
||||
|
||||
// Fetch historical logs
|
||||
await this.fetchHistoricalExchangeLogFillEventsAsync(indexFilterValues);
|
||||
@ -733,7 +733,7 @@ export class Blockchain {
|
||||
const doesContractExist = await this.doesContractExistAtAddressAsync(contractAddress);
|
||||
if (!doesContractExist) {
|
||||
utils.consoleLog(`Contract does not exist: ${artifact.contract_name} at ${contractAddress}`);
|
||||
throw new Error(BlockchainCallErrs.CONTRACT_DOES_NOT_EXIST);
|
||||
throw new Error(BlockchainCallErrs.ContractDoesNotExist);
|
||||
}
|
||||
}
|
||||
|
||||
@ -746,10 +746,10 @@ export class Blockchain {
|
||||
const errMsg = `${err}`;
|
||||
utils.consoleLog(`Notice: Error encountered: ${err} ${err.stack}`);
|
||||
if (_.includes(errMsg, 'not been deployed to detected network')) {
|
||||
throw new Error(BlockchainCallErrs.CONTRACT_DOES_NOT_EXIST);
|
||||
throw new Error(BlockchainCallErrs.ContractDoesNotExist);
|
||||
} else {
|
||||
await errorReporter.reportAsync(err);
|
||||
throw new Error(BlockchainCallErrs.UNHANDLED_ERROR);
|
||||
throw new Error(BlockchainCallErrs.UnhandledError);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -104,7 +104,7 @@ export class EthWethConversionButton extends
|
||||
this.props.onConversionSuccessful();
|
||||
} catch (err) {
|
||||
const errMsg = '' + err;
|
||||
if (_.includes(errMsg, BlockchainCallErrs.USER_HAS_NO_ASSOCIATED_ADDRESSES)) {
|
||||
if (_.includes(errMsg, BlockchainCallErrs.UserHasNoAssociatedAddresses)) {
|
||||
this.props.dispatcher.updateShouldBlockchainErrDialogBeOpen(true);
|
||||
} else if (!_.includes(errMsg, 'User denied transaction')) {
|
||||
utils.consoleLog(`Unexpected error encountered: ${err}`);
|
||||
|
@ -70,7 +70,7 @@ export class SendButton extends React.Component<SendButtonProps, SendButtonState
|
||||
this.props.dispatcher.replaceTokenBalanceByAddress(token.address, balance);
|
||||
} catch (err) {
|
||||
const errMsg = `${err}`;
|
||||
if (_.includes(errMsg, BlockchainCallErrs.USER_HAS_NO_ASSOCIATED_ADDRESSES)) {
|
||||
if (_.includes(errMsg, BlockchainCallErrs.UserHasNoAssociatedAddresses)) {
|
||||
this.props.dispatcher.updateShouldBlockchainErrDialogBeOpen(true);
|
||||
return;
|
||||
} else if (!_.includes(errMsg, 'User denied transaction')) {
|
||||
|
@ -156,7 +156,7 @@ export class TokenBalances extends React.Component<TokenBalancesProps, TokenBala
|
||||
const tokenTableHeight = allTokenRowHeight < MAX_TOKEN_TABLE_HEIGHT ?
|
||||
allTokenRowHeight :
|
||||
MAX_TOKEN_TABLE_HEIGHT;
|
||||
const isSmallScreen = this.props.screenWidth === ScreenWidths.SM;
|
||||
const isSmallScreen = this.props.screenWidth === ScreenWidths.Sm;
|
||||
const tokenColSpan = isSmallScreen ? TOKEN_COL_SPAN_SM : TOKEN_COL_SPAN_LG;
|
||||
const dharmaLoanExplanation = 'If you need access to larger amounts of ether,<br> \
|
||||
you can request a loan from the Dharma Loan<br> \
|
||||
@ -311,7 +311,7 @@ export class TokenBalances extends React.Component<TokenBalancesProps, TokenBala
|
||||
<TableHeaderColumn>
|
||||
Action
|
||||
</TableHeaderColumn>
|
||||
{this.props.screenWidth !== ScreenWidths.SM &&
|
||||
{this.props.screenWidth !== ScreenWidths.Sm &&
|
||||
<TableHeaderColumn>
|
||||
Send
|
||||
</TableHeaderColumn>
|
||||
@ -360,7 +360,7 @@ export class TokenBalances extends React.Component<TokenBalancesProps, TokenBala
|
||||
if (!this.props.blockchainIsLoaded || this.props.blockchainErr !== BlockchainErrs.NoError) {
|
||||
return '';
|
||||
}
|
||||
const isSmallScreen = this.props.screenWidth === ScreenWidths.SM;
|
||||
const isSmallScreen = this.props.screenWidth === ScreenWidths.Sm;
|
||||
const tokenColSpan = isSmallScreen ? TOKEN_COL_SPAN_SM : TOKEN_COL_SPAN_LG;
|
||||
const actionPaddingX = isSmallScreen ? 2 : 24;
|
||||
const allTokens = _.values(this.props.tokenByAddress);
|
||||
@ -379,7 +379,7 @@ export class TokenBalances extends React.Component<TokenBalancesProps, TokenBala
|
||||
private renderTokenRow(tokenColSpan: number, actionPaddingX: number, token: Token) {
|
||||
const tokenState = this.props.tokenStateByAddress[token.address];
|
||||
const tokenLink = utils.getEtherScanLinkIfExists(token.address, this.props.networkId,
|
||||
EtherscanLinkSuffixes.address);
|
||||
EtherscanLinkSuffixes.Address);
|
||||
const isMintable = _.includes(configs.symbolsOfMintableTokens, token.symbol) &&
|
||||
this.props.networkId !== constants.MAINNET_NETWORK_ID;
|
||||
return (
|
||||
@ -432,7 +432,7 @@ export class TokenBalances extends React.Component<TokenBalancesProps, TokenBala
|
||||
/>
|
||||
}
|
||||
</TableRowColumn>
|
||||
{this.props.screenWidth !== ScreenWidths.SM &&
|
||||
{this.props.screenWidth !== ScreenWidths.Sm &&
|
||||
<TableRowColumn
|
||||
style={{paddingLeft: actionPaddingX, paddingRight: actionPaddingX}}
|
||||
>
|
||||
@ -580,7 +580,7 @@ export class TokenBalances extends React.Component<TokenBalancesProps, TokenBala
|
||||
return true;
|
||||
} catch (err) {
|
||||
const errMsg = '' + err;
|
||||
if (_.includes(errMsg, BlockchainCallErrs.USER_HAS_NO_ASSOCIATED_ADDRESSES)) {
|
||||
if (_.includes(errMsg, BlockchainCallErrs.UserHasNoAssociatedAddresses)) {
|
||||
this.props.dispatcher.updateShouldBlockchainErrDialogBeOpen(true);
|
||||
return false;
|
||||
}
|
||||
|
@ -87,7 +87,7 @@ export class TradeHistoryItem extends React.Component<TradeHistoryItemProps, Tra
|
||||
<EtherScanIcon
|
||||
addressOrTxHash={fill.transactionHash}
|
||||
networkId={this.props.networkId}
|
||||
etherscanLinkSuffixes={EtherscanLinkSuffixes.tx}
|
||||
etherscanLinkSuffixes={EtherscanLinkSuffixes.Tx}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -26,7 +26,7 @@ export const EthereumAddress = (props: EthereumAddressProps) => {
|
||||
<EtherScanIcon
|
||||
addressOrTxHash={props.address}
|
||||
networkId={props.networkId}
|
||||
etherscanLinkSuffixes={EtherscanLinkSuffixes.address}
|
||||
etherscanLinkSuffixes={EtherscanLinkSuffixes.Address}
|
||||
/>
|
||||
</div>
|
||||
<ReactTooltip id={tooltipId}>{props.address}</ReactTooltip>
|
||||
|
@ -13,7 +13,7 @@ interface EtherScanIconProps {
|
||||
|
||||
export const EtherScanIcon = (props: EtherScanIconProps) => {
|
||||
const etherscanLinkIfExists = utils.getEtherScanLinkIfExists(
|
||||
props.addressOrTxHash, props.networkId, EtherscanLinkSuffixes.address,
|
||||
props.addressOrTxHash, props.networkId, EtherscanLinkSuffixes.Address,
|
||||
);
|
||||
const transactionTooltipId = `${props.addressOrTxHash}-etherscan-icon-tooltip`;
|
||||
return (
|
||||
|
@ -45,7 +45,7 @@ export class Party extends React.Component<PartyProps, PartyState> {
|
||||
height: IMAGE_DIMENSION,
|
||||
};
|
||||
const etherscanLinkIfExists = utils.getEtherScanLinkIfExists(
|
||||
this.props.address, this.props.networkId, EtherscanLinkSuffixes.address,
|
||||
this.props.address, this.props.networkId, EtherscanLinkSuffixes.Address,
|
||||
);
|
||||
const isRegistered = this.props.isInTokenRegistry;
|
||||
const registeredTooltipId = `${this.props.address}-${isRegistered}-registeredTooltip`;
|
||||
|
@ -281,7 +281,7 @@ export class Documentation extends
|
||||
return null;
|
||||
}
|
||||
const linkIfExists = utils.getEtherScanLinkIfExists(
|
||||
contractAddress, constants.networkIdByName[networkName], EtherscanLinkSuffixes.address,
|
||||
contractAddress, constants.networkIdByName[networkName], EtherscanLinkSuffixes.Address,
|
||||
);
|
||||
return (
|
||||
<a
|
||||
|
@ -76,7 +76,7 @@ export class TypeDefinition extends React.Component<TypeDefinitionProps, TypeDef
|
||||
);
|
||||
break;
|
||||
|
||||
case KindString['Type alias']:
|
||||
case KindString.TypeAlias:
|
||||
typePrefix = 'Type Alias';
|
||||
codeSnippet = (
|
||||
<span>
|
||||
|
@ -181,7 +181,7 @@ export class Landing extends React.Component<LandingProps, LandingState> {
|
||||
);
|
||||
}
|
||||
private renderHero() {
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.SM;
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.Sm;
|
||||
const buttonLabelStyle: React.CSSProperties = {
|
||||
textTransform: 'none',
|
||||
fontSize: isSmallScreen ? 12 : 14,
|
||||
@ -265,8 +265,8 @@ export class Landing extends React.Component<LandingProps, LandingState> {
|
||||
);
|
||||
}
|
||||
private renderProjects() {
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.SM;
|
||||
const isMediumScreen = this.state.screenWidth === ScreenWidths.MD;
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.Sm;
|
||||
const isMediumScreen = this.state.screenWidth === ScreenWidths.Md;
|
||||
const projectList = _.map(projects, (project: Project, i: number) => {
|
||||
const colWidth = isSmallScreen ? 3 : (isMediumScreen ? 4 : 2 - (i % 2));
|
||||
return (
|
||||
@ -329,7 +329,7 @@ export class Landing extends React.Component<LandingProps, LandingState> {
|
||||
);
|
||||
}
|
||||
private renderTokenizationSection() {
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.SM;
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.Sm;
|
||||
return (
|
||||
<div
|
||||
className="clearfix lg-py4 md-py4 sm-pb4 sm-pt2"
|
||||
@ -382,7 +382,7 @@ export class Landing extends React.Component<LandingProps, LandingState> {
|
||||
);
|
||||
}
|
||||
private renderProtocolSection() {
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.SM;
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.Sm;
|
||||
return (
|
||||
<div
|
||||
className="clearfix lg-py4 md-py4 sm-pt4"
|
||||
@ -468,7 +468,7 @@ export class Landing extends React.Component<LandingProps, LandingState> {
|
||||
);
|
||||
}
|
||||
private renderBuildingBlocksSection() {
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.SM;
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.Sm;
|
||||
const descriptionStyle: React.CSSProperties = {
|
||||
fontFamily: 'Roboto Mono',
|
||||
lineHeight: isSmallScreen ? 1.5 : 2,
|
||||
@ -540,7 +540,7 @@ export class Landing extends React.Component<LandingProps, LandingState> {
|
||||
);
|
||||
}
|
||||
private renderBlockChipImage() {
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.SM;
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.Sm;
|
||||
return (
|
||||
<div className="col lg-col-6 md-col-6 col-12 sm-center">
|
||||
<img
|
||||
@ -551,7 +551,7 @@ export class Landing extends React.Component<LandingProps, LandingState> {
|
||||
);
|
||||
}
|
||||
private renderTokenCloud() {
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.SM;
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.Sm;
|
||||
return (
|
||||
<div className="col lg-col-6 md-col-6 col-12 center">
|
||||
<img
|
||||
@ -562,7 +562,7 @@ export class Landing extends React.Component<LandingProps, LandingState> {
|
||||
);
|
||||
}
|
||||
private renderAssetTypes() {
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.SM;
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.Sm;
|
||||
const assetTypes: AssetType[] = [
|
||||
{
|
||||
title: 'Currency',
|
||||
@ -601,7 +601,7 @@ export class Landing extends React.Component<LandingProps, LandingState> {
|
||||
return assets;
|
||||
}
|
||||
private renderInfoBoxes() {
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.SM;
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.Sm;
|
||||
const boxStyle: React.CSSProperties = {
|
||||
maxWidth: 252,
|
||||
height: 386,
|
||||
@ -654,7 +654,7 @@ export class Landing extends React.Component<LandingProps, LandingState> {
|
||||
);
|
||||
}
|
||||
private renderUseCases() {
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.SM;
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.Sm;
|
||||
|
||||
const useCases: UseCase[] = [
|
||||
{
|
||||
@ -765,7 +765,7 @@ export class Landing extends React.Component<LandingProps, LandingState> {
|
||||
);
|
||||
}
|
||||
private renderCallToAction() {
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.SM;
|
||||
const isSmallScreen = this.state.screenWidth === ScreenWidths.Sm;
|
||||
const buttonLabelStyle: React.CSSProperties = {
|
||||
textTransform: 'none',
|
||||
fontSize: 15,
|
||||
|
@ -87,7 +87,7 @@ const INITIAL_STATE: State = {
|
||||
|
||||
// Shared
|
||||
flashMessage: undefined,
|
||||
providerType: ProviderType.INJECTED,
|
||||
providerType: ProviderType.Injected,
|
||||
injectedProviderName: '',
|
||||
};
|
||||
|
||||
|
@ -1,15 +1,6 @@
|
||||
import BigNumber from 'bignumber.js';
|
||||
import * as _ from 'lodash';
|
||||
|
||||
// Utility function to create a K:V from a list of strings
|
||||
// Adapted from: https://basarat.gitbooks.io/typescript/content/docs/types/literal-types.html
|
||||
function strEnum(values: string[]): {[key: string]: string} {
|
||||
return _.reduce(values, (result, key) => {
|
||||
result[key] = key;
|
||||
return result;
|
||||
}, Object.create(null));
|
||||
}
|
||||
|
||||
export enum Side {
|
||||
Receive = 'RECEIVE',
|
||||
Deposit = 'DEPOSIT',
|
||||
@ -229,23 +220,21 @@ export interface ContractEvent {
|
||||
|
||||
export type InputErrMsg = React.ReactNode | string | undefined;
|
||||
export type ValidatedBigNumberCallback = (isValid: boolean, amount?: BigNumber) => void;
|
||||
export const ScreenWidths = strEnum([
|
||||
'SM',
|
||||
'MD',
|
||||
'LG',
|
||||
]);
|
||||
export type ScreenWidths = keyof typeof ScreenWidths;
|
||||
export enum ScreenWidths {
|
||||
Sm = 'SM',
|
||||
Md = 'MD',
|
||||
Lg = 'LG',
|
||||
}
|
||||
|
||||
export enum AlertTypes {
|
||||
ERROR,
|
||||
SUCCESS,
|
||||
}
|
||||
|
||||
export const EtherscanLinkSuffixes = strEnum([
|
||||
'address',
|
||||
'tx',
|
||||
]);
|
||||
export type EtherscanLinkSuffixes = keyof typeof EtherscanLinkSuffixes;
|
||||
export enum EtherscanLinkSuffixes {
|
||||
Address = 'address',
|
||||
Tx = 'tx',
|
||||
}
|
||||
|
||||
export enum BlockchainErrs {
|
||||
AContractNotDeployedOnNetwork = 'A_CONTRACT_NOT_DEPLOYED_ON_NETWORK',
|
||||
@ -253,26 +242,25 @@ export enum BlockchainErrs {
|
||||
NoError = 'NO_ERROR',
|
||||
}
|
||||
|
||||
export const BlockchainCallErrs = strEnum([
|
||||
'CONTRACT_DOES_NOT_EXIST',
|
||||
'USER_HAS_NO_ASSOCIATED_ADDRESSES',
|
||||
'UNHANDLED_ERROR',
|
||||
'TOKEN_ADDRESS_IS_INVALID',
|
||||
'INVALID_SIGNATURE',
|
||||
]);
|
||||
export type BlockchainCallErrs = keyof typeof BlockchainCallErrs;
|
||||
export enum BlockchainCallErrs {
|
||||
ContractDoesNotExist = 'CONTRACT_DOES_NOT_EXIST',
|
||||
UserHasNoAssociatedAddresses = 'USER_HAS_NO_ASSOCIATED_ADDRESSES',
|
||||
UnhandledError = 'UNHANDLED_ERROR',
|
||||
TokenAddressIsInvalid = 'TOKEN_ADDRESS_IS_INVALID',
|
||||
}
|
||||
|
||||
export const KindString = strEnum([
|
||||
'Constructor',
|
||||
'Property',
|
||||
'Method',
|
||||
'Interface',
|
||||
'Type alias',
|
||||
'Variable',
|
||||
'Function',
|
||||
'Enumeration',
|
||||
]);
|
||||
export type KindString = keyof typeof KindString;
|
||||
// Exception: We don't make the values uppercase because these KindString's need to
|
||||
// match up those returned by TypeDoc
|
||||
export enum KindString {
|
||||
Constructor = 'Constructor',
|
||||
Property = 'Property',
|
||||
Method = 'Method',
|
||||
Interface = 'Interface',
|
||||
TypeAlias = 'Type alias',
|
||||
Variable = 'Variable',
|
||||
Function = 'Function',
|
||||
Enumeration = 'Enumeration',
|
||||
}
|
||||
|
||||
export interface EnumValue {
|
||||
name: string;
|
||||
@ -468,11 +456,10 @@ export interface MenuSubsectionsBySection {
|
||||
[section: string]: string[];
|
||||
}
|
||||
|
||||
export const ProviderType = strEnum([
|
||||
'INJECTED',
|
||||
'LEDGER',
|
||||
]);
|
||||
export type ProviderType = keyof typeof ProviderType;
|
||||
export enum ProviderType {
|
||||
Injected = 'INJECTED',
|
||||
Ledger = 'LEDGER',
|
||||
}
|
||||
|
||||
export interface Fact {
|
||||
title: string;
|
||||
|
@ -22,7 +22,7 @@ export const typeDocUtils = {
|
||||
isType(entity: TypeDocNode): boolean {
|
||||
return entity.kindString === KindString.Interface ||
|
||||
entity.kindString === KindString.Function ||
|
||||
entity.kindString === KindString['Type alias'] ||
|
||||
entity.kindString === KindString.TypeAlias ||
|
||||
entity.kindString === KindString.Variable ||
|
||||
entity.kindString === KindString.Enumeration;
|
||||
},
|
||||
@ -126,7 +126,7 @@ export const typeDocUtils = {
|
||||
case KindString.Function:
|
||||
case KindString.Variable:
|
||||
case KindString.Enumeration:
|
||||
case KindString['Type alias']:
|
||||
case KindString.TypeAlias:
|
||||
if (docsInfo.isPublicType(entity.name)) {
|
||||
const customType = typeDocUtils._convertCustomType(
|
||||
entity, docsInfo.sections, sectionName, docsInfo.subPackageName);
|
||||
|
@ -124,11 +124,11 @@ export const utils = {
|
||||
// This logic mirrors the CSS media queries in BassCSS for the `lg-`, `md-` and `sm-` CSS
|
||||
// class prefixes. Do not edit these.
|
||||
if (widthInEm > LG_MIN_EM) {
|
||||
return ScreenWidths.LG;
|
||||
return ScreenWidths.Lg;
|
||||
} else if (widthInEm > MD_MIN_EM) {
|
||||
return ScreenWidths.MD;
|
||||
return ScreenWidths.Md;
|
||||
} else {
|
||||
return ScreenWidths.SM;
|
||||
return ScreenWidths.Sm;
|
||||
}
|
||||
},
|
||||
isUserOnMobile(): boolean {
|
||||
|
Loading…
x
Reference in New Issue
Block a user