Merge branch 'development' of https://github.com/0xProject/0x-monorepo into feature/website/instant-configurator
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
INSTANT_ROLLBAR_PUBLISH_TOKEN=
|
||||
INSTANT_ROLLBAR_CLIENT_TOKEN=
|
||||
INSTANT_HEAP_ANALYTICS_ID_PRODUCTION=
|
||||
INSTANT_HEAP_ANALYTICS_ID_DEVELOPMENT=
|
||||
INSTANT_HEAP_ANALYTICS_ID_DEVELOPMENT=
|
||||
# if you want to report to heap or rollbar when building in development mode, you can use the following:
|
||||
# INSTANT_HEAP_FORCE_DEVELOPMENT=true
|
||||
# INSTANT_ROLLBAR_FORCE_DEVELOPMENT=true
|
@@ -113,7 +113,7 @@ export class ERC20AssetAmountInput extends React.Component<ERC20AssetAmountInput
|
||||
);
|
||||
};
|
||||
private readonly _renderChevronIcon = (): React.ReactNode => {
|
||||
if (!this._areMultipleAssetsAvailable()) {
|
||||
if (!this._areAnyAssetsAvailable()) {
|
||||
return null;
|
||||
}
|
||||
return (
|
||||
@@ -134,14 +134,14 @@ export class ERC20AssetAmountInput extends React.Component<ERC20AssetAmountInput
|
||||
// We don't want to allow opening the token selection panel if there are no assets.
|
||||
// Since styles are inferred from the presence of a click handler, we want to return undefined
|
||||
// instead of providing a noop.
|
||||
if (!this._areMultipleAssetsAvailable() || _.isUndefined(this.props.onSelectAssetClick)) {
|
||||
if (!this._areAnyAssetsAvailable() || _.isUndefined(this.props.onSelectAssetClick)) {
|
||||
return undefined;
|
||||
}
|
||||
return this._handleSelectAssetClick;
|
||||
};
|
||||
private readonly _areMultipleAssetsAvailable = (): boolean => {
|
||||
private readonly _areAnyAssetsAvailable = (): boolean => {
|
||||
const { numberOfAssetsAvailable } = this.props;
|
||||
return !_.isUndefined(numberOfAssetsAvailable) && numberOfAssetsAvailable > 1;
|
||||
return !_.isUndefined(numberOfAssetsAvailable) && numberOfAssetsAvailable > 0;
|
||||
};
|
||||
private readonly _handleSelectAssetClick = (): void => {
|
||||
if (this.props.onSelectAssetClick) {
|
||||
|
@@ -19,6 +19,7 @@ export const DEFAULT_GAS_PRICE = GWEI_IN_WEI.mul(6);
|
||||
export const DEFAULT_ESTIMATED_TRANSACTION_TIME_MS = ONE_MINUTE_MS * 2;
|
||||
export const ETH_GAS_STATION_API_BASE_URL = 'https://ethgasstation.info';
|
||||
export const HEAP_ANALYTICS_ID = process.env.HEAP_ANALYTICS_ID;
|
||||
export const HEAP_ENABLED = process.env.HEAP_ENABLED;
|
||||
export const COINBASE_API_BASE_URL = 'https://api.coinbase.com/v2';
|
||||
export const PROGRESS_STALL_AT_WIDTH = '95%';
|
||||
export const PROGRESS_FINISH_ANIMATION_TIME_MS = 200;
|
||||
|
@@ -195,7 +195,7 @@ export const assetMetaDataMap: ObjectMap<AssetMetaData> = {
|
||||
'0xf47261b000000000000000000000000089d24a6b4ccb1b6faa2625fe562bdd9a23260359': {
|
||||
assetProxyId: AssetProxyId.ERC20,
|
||||
decimals: 18,
|
||||
primaryColor: '#F2B350',
|
||||
primaryColor: '#DEA349',
|
||||
symbol: 'dai',
|
||||
name: 'Dai Stablecoin',
|
||||
},
|
||||
|
@@ -32,7 +32,8 @@ export const asyncData = {
|
||||
const assetBuyer = providerState.assetBuyer;
|
||||
try {
|
||||
const assetDatas = await assetBuyer.getAvailableAssetDatasAsync();
|
||||
const assets = assetUtils.createAssetsFromAssetDatas(assetDatas, assetMetaDataMap, network);
|
||||
const deduplicatedAssetDatas = _.uniq(assetDatas);
|
||||
const assets = assetUtils.createAssetsFromAssetDatas(deduplicatedAssetDatas, assetMetaDataMap, network);
|
||||
dispatch(actions.setAvailableAssets(assets));
|
||||
} catch (e) {
|
||||
const errorMessage = 'Could not find any assets';
|
||||
|
@@ -2,7 +2,7 @@ import { BuyQuote } from '@0x/asset-buyer';
|
||||
import { BigNumber } from '@0x/utils';
|
||||
import * as _ from 'lodash';
|
||||
|
||||
import { INSTANT_DISCHARGE_TARGET } from '../constants';
|
||||
import { HEAP_ENABLED, INSTANT_DISCHARGE_TARGET } from '../constants';
|
||||
import {
|
||||
AffiliateInfo,
|
||||
Asset,
|
||||
@@ -16,15 +16,17 @@ import {
|
||||
|
||||
import { EventProperties, heapUtil } from './heap';
|
||||
|
||||
let isDisabled = false;
|
||||
let isDisabledViaConfig = false;
|
||||
export const disableAnalytics = (shouldDisableAnalytics: boolean) => {
|
||||
isDisabled = shouldDisableAnalytics;
|
||||
isDisabledViaConfig = shouldDisableAnalytics;
|
||||
};
|
||||
export const evaluateIfEnabled = (fnCall: () => void) => {
|
||||
if (isDisabled) {
|
||||
if (isDisabledViaConfig) {
|
||||
return;
|
||||
}
|
||||
fnCall();
|
||||
if (HEAP_ENABLED) {
|
||||
fnCall();
|
||||
}
|
||||
};
|
||||
|
||||
enum EventNames {
|
||||
|
@@ -71,6 +71,7 @@ const generateConfig = (dischargeTarget, heapConfigOptions, rollbarConfigOptions
|
||||
`Must define heap analytics id in ENV var ${heapAnalyticsIdEnvName} when building for ${dischargeTarget}`,
|
||||
);
|
||||
}
|
||||
const heapEnabled = heapAnalyticsId && (nodeEnv !== 'development' || process.env.INSTANT_HEAP_FORCE_DEVELOPMENT);
|
||||
|
||||
const rollbarTokens = getRollbarTokens(dischargeTarget, rollbarConfigOptions.rollbarRequired);
|
||||
const rollbarEnabled =
|
||||
@@ -92,6 +93,7 @@ const generateConfig = (dischargeTarget, heapConfigOptions, rollbarConfigOptions
|
||||
GIT_SHA: JSON.stringify(GIT_SHA),
|
||||
NPM_PACKAGE_VERSION: JSON.stringify(process.env.npm_package_version),
|
||||
ROLLBAR_ENABLED: rollbarEnabled,
|
||||
HEAP_ENABLED: heapEnabled
|
||||
};
|
||||
if (dischargeTarget) {
|
||||
envVars.INSTANT_DISCHARGE_TARGET = JSON.stringify(dischargeTarget);
|
||||
|
Reference in New Issue
Block a user