mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
remove the ui/app and ui/lib folders (#10911)
This commit is contained in:
parent
f1fc51667a
commit
09d81ac5f2
@ -108,7 +108,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
files: ['**/*.test.js'],
|
files: ['**/*.test.js'],
|
||||||
excludedFiles: ['ui/**/*.test.js', 'ui/app/__mocks__/*.js'],
|
excludedFiles: ['ui/**/*.test.js', 'ui/__mocks__/*.js'],
|
||||||
extends: ['@metamask/eslint-config-mocha'],
|
extends: ['@metamask/eslint-config-mocha'],
|
||||||
rules: {
|
rules: {
|
||||||
'mocha/no-setup-in-describe': 'off',
|
'mocha/no-setup-in-describe': 'off',
|
||||||
@ -125,7 +125,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
files: ['ui/**/*.test.js', 'ui/app/__mocks__/*.js'],
|
files: ['ui/**/*.test.js', 'ui/__mocks__/*.js'],
|
||||||
extends: ['@metamask/eslint-config-jest'],
|
extends: ['@metamask/eslint-config-jest'],
|
||||||
rules: {
|
rules: {
|
||||||
'jest/no-restricted-matchers': 'off',
|
'jest/no-restricted-matchers': 'off',
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -39,7 +39,7 @@ test-builds
|
|||||||
build-artifacts
|
build-artifacts
|
||||||
|
|
||||||
#ignore css output and sourcemaps
|
#ignore css output and sourcemaps
|
||||||
ui/app/css/output/
|
ui/css/output/
|
||||||
|
|
||||||
notes.txt
|
notes.txt
|
||||||
|
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
import React, { Component, createContext, useMemo } from 'react';
|
import React, { Component, createContext, useMemo } from 'react';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { getMessage } from '../ui/app/helpers/utils/i18n-helper';
|
import { getMessage } from '../ui/helpers/utils/i18n-helper';
|
||||||
import { I18nContext } from '../ui/app/contexts/i18n';
|
import { I18nContext } from '../ui/contexts/i18n';
|
||||||
|
|
||||||
export { I18nContext }
|
export { I18nContext };
|
||||||
|
|
||||||
export const I18nProvider = (props) => {
|
export const I18nProvider = (props) => {
|
||||||
const { currentLocale, current, en } = props
|
const { currentLocale, current, en } = props;
|
||||||
|
|
||||||
const t = useMemo(() => {
|
const t = useMemo(() => {
|
||||||
return (key, ...args) =>
|
return (key, ...args) =>
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
const path = require('path')
|
const path = require('path');
|
||||||
|
|
||||||
const CopyWebpackPlugin = require('copy-webpack-plugin')
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
stories: ['../ui/app/**/*.stories.js'],
|
stories: ['../ui/**/*.stories.js'],
|
||||||
addons: [
|
addons: [
|
||||||
'@storybook/addon-knobs',
|
'@storybook/addon-knobs',
|
||||||
'@storybook/addon-actions',
|
'@storybook/addon-actions',
|
||||||
@ -12,7 +12,7 @@ module.exports = {
|
|||||||
'./i18n-party-addon/register.js',
|
'./i18n-party-addon/register.js',
|
||||||
],
|
],
|
||||||
webpackFinal: async (config) => {
|
webpackFinal: async (config) => {
|
||||||
config.module.strictExportPresence = true
|
config.module.strictExportPresence = true;
|
||||||
config.module.rules.push({
|
config.module.rules.push({
|
||||||
test: /\.scss$/,
|
test: /\.scss$/,
|
||||||
loaders: [
|
loaders: [
|
||||||
@ -31,12 +31,12 @@ module.exports = {
|
|||||||
sourceMap: true,
|
sourceMap: true,
|
||||||
implementation: require('sass'),
|
implementation: require('sass'),
|
||||||
sassOptions: {
|
sassOptions: {
|
||||||
includePaths: ['ui/app/css/'],
|
includePaths: ['ui/css/'],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
})
|
});
|
||||||
config.plugins.push(
|
config.plugins.push(
|
||||||
new CopyWebpackPlugin({
|
new CopyWebpackPlugin({
|
||||||
patterns: [
|
patterns: [
|
||||||
@ -51,7 +51,7 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
)
|
);
|
||||||
return config
|
return config;
|
||||||
},
|
},
|
||||||
}
|
};
|
||||||
|
@ -3,12 +3,12 @@ import { addDecorator, addParameters } from '@storybook/react';
|
|||||||
import { useGlobals } from '@storybook/api';
|
import { useGlobals } from '@storybook/api';
|
||||||
import { withKnobs } from '@storybook/addon-knobs';
|
import { withKnobs } from '@storybook/addon-knobs';
|
||||||
import { Provider } from 'react-redux';
|
import { Provider } from 'react-redux';
|
||||||
import configureStore from '../ui/app/store/store';
|
import configureStore from '../ui/store/store';
|
||||||
import '../ui/app/css/index.scss';
|
import '../ui/css/index.scss';
|
||||||
import localeList from '../app/_locales/index.json';
|
import localeList from '../app/_locales/index.json';
|
||||||
import * as allLocales from './locales';
|
import * as allLocales from './locales';
|
||||||
import { I18nProvider, LegacyI18nProvider } from './i18n';
|
import { I18nProvider, LegacyI18nProvider } from './i18n';
|
||||||
import testData from './test-data.js'
|
import testData from './test-data.js';
|
||||||
|
|
||||||
addParameters({
|
addParameters({
|
||||||
backgrounds: {
|
backgrounds: {
|
||||||
@ -41,7 +41,7 @@ const styles = {
|
|||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
};
|
};
|
||||||
|
|
||||||
const store = configureStore(testData)
|
const store = configureStore(testData);
|
||||||
|
|
||||||
const metamaskDecorator = (story, context) => {
|
const metamaskDecorator = (story, context) => {
|
||||||
const currentLocale = context.globals.locale;
|
const currentLocale = context.globals.locale;
|
||||||
|
@ -4,9 +4,9 @@ import BigNumber from 'bignumber.js';
|
|||||||
import { ObservableStore } from '@metamask/obs-store';
|
import { ObservableStore } from '@metamask/obs-store';
|
||||||
import { mapValues, cloneDeep } from 'lodash';
|
import { mapValues, cloneDeep } from 'lodash';
|
||||||
import abi from 'human-standard-token-abi';
|
import abi from 'human-standard-token-abi';
|
||||||
import { calcTokenAmount } from '../../../ui/app/helpers/utils/token-util';
|
import { calcTokenAmount } from '../../../ui/helpers/utils/token-util';
|
||||||
import { calcGasTotal } from '../../../ui/app/pages/send/send.utils';
|
import { calcGasTotal } from '../../../ui/pages/send/send.utils';
|
||||||
import { conversionUtil } from '../../../ui/app/helpers/utils/conversion-util';
|
import { conversionUtil } from '../../../ui/helpers/utils/conversion-util';
|
||||||
import {
|
import {
|
||||||
DEFAULT_ERC20_APPROVE_GAS,
|
DEFAULT_ERC20_APPROVE_GAS,
|
||||||
QUOTES_EXPIRED_ERROR,
|
QUOTES_EXPIRED_ERROR,
|
||||||
@ -20,7 +20,7 @@ import {
|
|||||||
fetchTradesInfo as defaultFetchTradesInfo,
|
fetchTradesInfo as defaultFetchTradesInfo,
|
||||||
fetchSwapsFeatureLiveness as defaultFetchSwapsFeatureLiveness,
|
fetchSwapsFeatureLiveness as defaultFetchSwapsFeatureLiveness,
|
||||||
fetchSwapsQuoteRefreshTime as defaultFetchSwapsQuoteRefreshTime,
|
fetchSwapsQuoteRefreshTime as defaultFetchSwapsQuoteRefreshTime,
|
||||||
} from '../../../ui/app/pages/swaps/swaps.util';
|
} from '../../../ui/pages/swaps/swaps.util';
|
||||||
import { NETWORK_EVENTS } from './network';
|
import { NETWORK_EVENTS } from './network';
|
||||||
|
|
||||||
// The MAX_GAS_LIMIT is a number that is higher than the maximum gas costs we have observed on any aggregator
|
// The MAX_GAS_LIMIT is a number that is higher than the maximum gas costs we have observed on any aggregator
|
||||||
|
@ -16,8 +16,8 @@ import {
|
|||||||
BnMultiplyByFraction,
|
BnMultiplyByFraction,
|
||||||
addHexPrefix,
|
addHexPrefix,
|
||||||
} from '../../lib/util';
|
} from '../../lib/util';
|
||||||
import { TRANSACTION_NO_CONTRACT_ERROR_KEY } from '../../../../ui/app/helpers/constants/error-keys';
|
import { TRANSACTION_NO_CONTRACT_ERROR_KEY } from '../../../../ui/helpers/constants/error-keys';
|
||||||
import { getSwapsTokensReceivedFromTxMeta } from '../../../../ui/app/pages/swaps/swaps.util';
|
import { getSwapsTokensReceivedFromTxMeta } from '../../../../ui/pages/swaps/swaps.util';
|
||||||
import {
|
import {
|
||||||
TRANSACTION_STATUSES,
|
TRANSACTION_STATUSES,
|
||||||
TRANSACTION_TYPES,
|
TRANSACTION_TYPES,
|
||||||
|
@ -35,7 +35,7 @@ const copyTargets = [
|
|||||||
dest: `fonts/fontawesome`,
|
dest: `fonts/fontawesome`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
src: `./ui/app/css/output/`,
|
src: `./ui/css/output/`,
|
||||||
pattern: `*.css`,
|
pattern: `*.css`,
|
||||||
dest: ``,
|
dest: ``,
|
||||||
},
|
},
|
||||||
|
@ -18,8 +18,8 @@ function createStyleTasks({ livereload }) {
|
|||||||
const prod = createTask(
|
const prod = createTask(
|
||||||
'styles:prod',
|
'styles:prod',
|
||||||
createScssBuildTask({
|
createScssBuildTask({
|
||||||
src: 'ui/app/css/index.scss',
|
src: 'ui/css/index.scss',
|
||||||
dest: 'ui/app/css/output',
|
dest: 'ui/css/output',
|
||||||
devMode: false,
|
devMode: false,
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
@ -27,15 +27,15 @@ function createStyleTasks({ livereload }) {
|
|||||||
const dev = createTask(
|
const dev = createTask(
|
||||||
'styles:dev',
|
'styles:dev',
|
||||||
createScssBuildTask({
|
createScssBuildTask({
|
||||||
src: 'ui/app/css/index.scss',
|
src: 'ui/css/index.scss',
|
||||||
dest: 'ui/app/css/output',
|
dest: 'ui/css/output',
|
||||||
devMode: true,
|
devMode: true,
|
||||||
pattern: 'ui/app/**/*.scss',
|
pattern: 'ui/**/*.scss',
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
|
||||||
const lint = createTask('lint-scss', function () {
|
const lint = createTask('lint-scss', function () {
|
||||||
return gulp.src('ui/app/css/itcss/**/*.scss').pipe(
|
return gulp.src('ui/css/itcss/**/*.scss').pipe(
|
||||||
gulpStylelint({
|
gulpStylelint({
|
||||||
reporters: [{ formatter: 'string', console: true }],
|
reporters: [{ formatter: 'string', console: true }],
|
||||||
fix: true,
|
fix: true,
|
||||||
|
@ -171,8 +171,8 @@ async function verifyEnglishLocale() {
|
|||||||
// In the meantime we'll use glob to specify which paths can be strict searched
|
// In the meantime we'll use glob to specify which paths can be strict searched
|
||||||
// and gradually phase out the key based search
|
// and gradually phase out the key based search
|
||||||
const globsToStrictSearch = [
|
const globsToStrictSearch = [
|
||||||
'ui/app/components/app/metamask-translation/*.js',
|
'ui/components/app/metamask-translation/*.js',
|
||||||
'ui/app/pages/confirmation/templates/*.js',
|
'ui/pages/confirmation/templates/*.js',
|
||||||
];
|
];
|
||||||
const testGlob = '**/*.test.js';
|
const testGlob = '**/*.test.js';
|
||||||
const javascriptFiles = await glob(['ui/**/*.js', 'shared/**/*.js'], {
|
const javascriptFiles = await glob(['ui/**/*.js', 'shared/**/*.js'], {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
restoreMocks: true,
|
restoreMocks: true,
|
||||||
coverageDirectory: 'jest-coverage/',
|
coverageDirectory: 'jest-coverage/',
|
||||||
collectCoverageFrom: ['<rootDir>/ui/app/**/swaps/**'],
|
collectCoverageFrom: ['<rootDir>/ui/**/swaps/**'],
|
||||||
coveragePathIgnorePatterns: ['.stories.js', '.snap'],
|
coveragePathIgnorePatterns: ['.stories.js', '.snap'],
|
||||||
coverageThreshold: {
|
coverageThreshold: {
|
||||||
global: {
|
global: {
|
||||||
|
@ -49,7 +49,7 @@
|
|||||||
"verify-locales": "node ./development/verify-locale-strings.js",
|
"verify-locales": "node ./development/verify-locale-strings.js",
|
||||||
"verify-locales:fix": "node ./development/verify-locale-strings.js --fix",
|
"verify-locales:fix": "node ./development/verify-locale-strings.js --fix",
|
||||||
"mozilla-lint": "addons-linter dist/firefox",
|
"mozilla-lint": "addons-linter dist/firefox",
|
||||||
"watch": "mocha --watch --require test/env.js --require test/setup.js --reporter min --recursive \"test/unit/**/*.js\" \"ui/app/**/*.test.js\" \"shared/**/*.test.js\"",
|
"watch": "mocha --watch --require test/env.js --require test/setup.js --reporter min --recursive \"test/unit/**/*.js\" \"ui/**/*.test.js\" \"shared/**/*.test.js\"",
|
||||||
"devtools:react": "react-devtools",
|
"devtools:react": "react-devtools",
|
||||||
"devtools:redux": "remotedev --hostname=localhost --port=8000",
|
"devtools:redux": "remotedev --hostname=localhost --port=8000",
|
||||||
"start:dev": "concurrently -k -n build,react,redux yarn:start yarn:devtools:react yarn:devtools:redux",
|
"start:dev": "concurrently -k -n build,react,redux yarn:start yarn:devtools:react yarn:devtools:redux",
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import * as actions from '../../ui/app/store/actions';
|
import * as actions from '../../ui/store/actions';
|
||||||
|
|
||||||
export const setBackgroundConnection = (backgroundConnection = {}) => {
|
export const setBackgroundConnection = (backgroundConnection = {}) => {
|
||||||
actions._setBackgroundConnection(backgroundConnection);
|
actions._setBackgroundConnection(backgroundConnection);
|
||||||
|
@ -4,8 +4,8 @@ import { render } from '@testing-library/react';
|
|||||||
import { MemoryRouter } from 'react-router-dom';
|
import { MemoryRouter } from 'react-router-dom';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
|
|
||||||
import { I18nContext, LegacyI18nProvider } from '../../ui/app/contexts/i18n';
|
import { I18nContext, LegacyI18nProvider } from '../../ui/contexts/i18n';
|
||||||
import { getMessage } from '../../ui/app/helpers/utils/i18n-helper';
|
import { getMessage } from '../../ui/helpers/utils/i18n-helper';
|
||||||
import * as en from '../../app/_locales/en/messages.json';
|
import * as en from '../../app/_locales/en/messages.json';
|
||||||
|
|
||||||
export const I18nProvider = (props) => {
|
export const I18nProvider = (props) => {
|
||||||
|
@ -1,13 +1,19 @@
|
|||||||
import React, { useMemo } from 'react';
|
import React, { useMemo } from 'react';
|
||||||
import { Provider } from 'react-redux';
|
import { Provider } from 'react-redux';
|
||||||
import { render } from '@testing-library/react';
|
import { render } from '@testing-library/react';
|
||||||
import { mount } from 'enzyme';
|
import { mount, shallow } from 'enzyme';
|
||||||
import { MemoryRouter } from 'react-router-dom';
|
import { MemoryRouter } from 'react-router-dom';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { I18nContext, LegacyI18nProvider } from '../../ui/app/contexts/i18n';
|
import { I18nContext, LegacyI18nProvider } from '../../ui/contexts/i18n';
|
||||||
import { getMessage } from '../../ui/app/helpers/utils/i18n-helper';
|
import { getMessage } from '../../ui/helpers/utils/i18n-helper';
|
||||||
import * as en from '../../app/_locales/en/messages.json';
|
import * as en from '../../app/_locales/en/messages.json';
|
||||||
|
|
||||||
|
export function shallowWithContext(jsxComponent) {
|
||||||
|
return shallow(jsxComponent, {
|
||||||
|
context: { t: (str1, str2) => (str2 ? str1 + str2 : str1) },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
export function mountWithRouter(component, store = {}, pathname = '/') {
|
export function mountWithRouter(component, store = {}, pathname = '/') {
|
||||||
// Instantiate router context
|
// Instantiate router context
|
||||||
const router = {
|
const router = {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
import currencyFormatter from 'currency-formatter';
|
import currencyFormatter from 'currency-formatter';
|
||||||
import availableCurrencies from '../../ui/app/helpers/constants/available-conversions.json';
|
import availableCurrencies from '../../ui/helpers/constants/available-conversions.json';
|
||||||
|
|
||||||
describe('currencyFormatting', function () {
|
describe('currencyFormatting', function () {
|
||||||
it('be able to format any infura currency', function (done) {
|
it('be able to format any infura currency', function (done) {
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
import { ENVIRONMENT_TYPE_NOTIFICATION } from '../../../../../shared/constants/app';
|
|
||||||
|
|
||||||
export { ENVIRONMENT_TYPE_NOTIFICATION };
|
|
@ -4,8 +4,8 @@ import { debounce } from 'lodash';
|
|||||||
import Fuse from 'fuse.js';
|
import Fuse from 'fuse.js';
|
||||||
import InputAdornment from '@material-ui/core/InputAdornment';
|
import InputAdornment from '@material-ui/core/InputAdornment';
|
||||||
import classnames from 'classnames';
|
import classnames from 'classnames';
|
||||||
import { ENVIRONMENT_TYPE_POPUP } from '../../../../../shared/constants/app';
|
import { ENVIRONMENT_TYPE_POPUP } from '../../../../shared/constants/app';
|
||||||
import { getEnvironmentType } from '../../../../../app/scripts/lib/util';
|
import { getEnvironmentType } from '../../../../app/scripts/lib/util';
|
||||||
import Identicon from '../../ui/identicon';
|
import Identicon from '../../ui/identicon';
|
||||||
import SiteIcon from '../../ui/site-icon';
|
import SiteIcon from '../../ui/site-icon';
|
||||||
import UserPreferencedCurrencyDisplay from '../user-preferenced-currency-display';
|
import UserPreferencedCurrencyDisplay from '../user-preferenced-currency-display';
|
@ -2,7 +2,7 @@ import React from 'react';
|
|||||||
import sinon from 'sinon';
|
import sinon from 'sinon';
|
||||||
import configureMockStore from 'redux-mock-store';
|
import configureMockStore from 'redux-mock-store';
|
||||||
import { Provider } from 'react-redux';
|
import { Provider } from 'react-redux';
|
||||||
import { mountWithRouter } from '../../../../../test/lib/render-helpers';
|
import { mountWithRouter } from '../../../../test/lib/render-helpers';
|
||||||
import AccountMenu from '.';
|
import AccountMenu from '.';
|
||||||
|
|
||||||
describe('Account Menu', () => {
|
describe('Account Menu', () => {
|
@ -6,11 +6,11 @@ import thunk from 'redux-thunk';
|
|||||||
import { fireEvent } from '@testing-library/react';
|
import { fireEvent } from '@testing-library/react';
|
||||||
import configureMockStore from 'redux-mock-store';
|
import configureMockStore from 'redux-mock-store';
|
||||||
|
|
||||||
import { tick } from '../../../../../../test/lib/tick';
|
import { tick } from '../../../../../test/lib/tick';
|
||||||
import { renderWithProvider } from '../../../../../../test/lib/render-helpers';
|
import { renderWithProvider } from '../../../../../test/lib/render-helpers';
|
||||||
|
|
||||||
import * as actions from '../../../../store/actions';
|
import * as actions from '../../../../store/actions';
|
||||||
import { KOVAN_CHAIN_ID } from '../../../../../../shared/constants/network';
|
import { KOVAN_CHAIN_ID } from '../../../../../shared/constants/network';
|
||||||
import UnconnectedAccountAlert from '.';
|
import UnconnectedAccountAlert from '.';
|
||||||
|
|
||||||
describe('Unconnected Account Alert', () => {
|
describe('Unconnected Account Alert', () => {
|
@ -3,8 +3,8 @@ import PropTypes from 'prop-types';
|
|||||||
import {
|
import {
|
||||||
ENVIRONMENT_TYPE_POPUP,
|
ENVIRONMENT_TYPE_POPUP,
|
||||||
ENVIRONMENT_TYPE_NOTIFICATION,
|
ENVIRONMENT_TYPE_NOTIFICATION,
|
||||||
} from '../../../../../../shared/constants/app';
|
} from '../../../../../shared/constants/app';
|
||||||
import { getEnvironmentType } from '../../../../../../app/scripts/lib/util';
|
import { getEnvironmentType } from '../../../../../app/scripts/lib/util';
|
||||||
import NetworkDisplay from '../../network-display';
|
import NetworkDisplay from '../../network-display';
|
||||||
import Identicon from '../../../ui/identicon';
|
import Identicon from '../../../ui/identicon';
|
||||||
import { shortenAddress } from '../../../../helpers/utils/util';
|
import { shortenAddress } from '../../../../helpers/utils/util';
|
@ -3,10 +3,10 @@ import { shallow } from 'enzyme';
|
|||||||
import sinon from 'sinon';
|
import sinon from 'sinon';
|
||||||
import { Provider } from 'react-redux';
|
import { Provider } from 'react-redux';
|
||||||
import configureStore from '../../../../store/store';
|
import configureStore from '../../../../store/store';
|
||||||
import testData from '../../../../../../.storybook/test-data';
|
import testData from '../../../../../.storybook/test-data';
|
||||||
import ConfirmPageContainerHeader from './confirm-page-container-header.component';
|
import ConfirmPageContainerHeader from './confirm-page-container-header.component';
|
||||||
|
|
||||||
const util = require('../../../../../../app/scripts/lib/util');
|
const util = require('../../../../../app/scripts/lib/util');
|
||||||
|
|
||||||
describe('Confirm Detail Row Component', () => {
|
describe('Confirm Detail Row Component', () => {
|
||||||
describe('render', () => {
|
describe('render', () => {
|
@ -9,10 +9,10 @@ import {
|
|||||||
NETWORKS_ROUTE,
|
NETWORKS_ROUTE,
|
||||||
NETWORKS_FORM_ROUTE,
|
NETWORKS_FORM_ROUTE,
|
||||||
} from '../../../helpers/constants/routes';
|
} from '../../../helpers/constants/routes';
|
||||||
import { ENVIRONMENT_TYPE_FULLSCREEN } from '../../../../../shared/constants/app';
|
import { ENVIRONMENT_TYPE_FULLSCREEN } from '../../../../shared/constants/app';
|
||||||
import { NETWORK_TYPE_RPC } from '../../../../../shared/constants/network';
|
import { NETWORK_TYPE_RPC } from '../../../../shared/constants/network';
|
||||||
import { isPrefixedFormattedHexString } from '../../../../../shared/modules/network.utils';
|
import { isPrefixedFormattedHexString } from '../../../../shared/modules/network.utils';
|
||||||
import { getEnvironmentType } from '../../../../../app/scripts/lib/util';
|
import { getEnvironmentType } from '../../../../app/scripts/lib/util';
|
||||||
|
|
||||||
import ColorIndicator from '../../ui/color-indicator';
|
import ColorIndicator from '../../ui/color-indicator';
|
||||||
import { COLORS, SIZES } from '../../../helpers/constants/design-system';
|
import { COLORS, SIZES } from '../../../helpers/constants/design-system';
|
@ -1,7 +1,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import configureMockStore from 'redux-mock-store';
|
import configureMockStore from 'redux-mock-store';
|
||||||
import thunk from 'redux-thunk';
|
import thunk from 'redux-thunk';
|
||||||
import { mountWithRouter } from '../../../../../test/lib/render-helpers';
|
import { mountWithRouter } from '../../../../test/lib/render-helpers';
|
||||||
import ColorIndicator from '../../ui/color-indicator';
|
import ColorIndicator from '../../ui/color-indicator';
|
||||||
import NetworkDropdown from './network-dropdown';
|
import NetworkDropdown from './network-dropdown';
|
||||||
import { DropdownMenuItem } from './dropdown';
|
import { DropdownMenuItem } from './dropdown';
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user