From 18712c01fc0adbdc7859319a835807e856963dbb Mon Sep 17 00:00:00 2001 From: JUDIT GRESKOVITS Date: Thu, 6 Apr 2017 11:24:53 +0100 Subject: [PATCH] Remove all new perf tools - debug broken build --- frontend/src/containers/app.js | 9 ++++----- frontend/src/index.js | 4 ++-- frontend/src/state/store.js | 8 ++++---- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/frontend/src/containers/app.js b/frontend/src/containers/app.js index ae0bb15d..411f3d2b 100644 --- a/frontend/src/containers/app.js +++ b/frontend/src/containers/app.js @@ -3,7 +3,7 @@ import Article from '@components/article'; import Base, { global } from '@ui/components/base'; import BaselineGrid from '@ui/components/baseline-grid'; import { isProduction } from '@utils'; -import PerfProfiler from '@perf-profiler'; +// import PerfProfiler from '@perf-profiler'; import React from 'react'; class App extends React.Component { @@ -29,17 +29,16 @@ class App extends React.Component { ) : ( - {children} ); - const profiler = !isProduction() ? - : null; + /*const profiler = !isProduction() ? + : null;*/ return (
- {profiler} + {/*profiler*/}
{content}
diff --git a/frontend/src/index.js b/frontend/src/index.js index d880dcaf..fe48f2c4 100644 --- a/frontend/src/index.js +++ b/frontend/src/index.js @@ -4,7 +4,7 @@ import qs from 'querystring'; import a11y from 'react-a11y'; import ReactDOM from 'react-dom'; import React from 'react'; -import Perf from 'react-addons-perf'; +// import Perf from 'react-addons-perf'; import MockStateTesting from '@mock-states/testing'; import MockState from '@mock-states'; @@ -19,7 +19,7 @@ if ( !isProduction() ) { ReactDOM }); - window.Perf = Perf; + // window.Perf = Perf; } const states = { diff --git a/frontend/src/state/store.js b/frontend/src/state/store.js index b68d334e..2afe48c8 100644 --- a/frontend/src/state/store.js +++ b/frontend/src/state/store.js @@ -3,10 +3,10 @@ import { enableBatching } from 'redux-batched-actions'; import promiseMiddleware from 'redux-promise-middleware'; import { createStore, compose, applyMiddleware } from 'redux'; import thunk from 'redux-thunk'; -import perflogger from 'redux-perf-middleware'; +// import perflogger from 'redux-perf-middleware'; import createReducer from '@state/reducers'; -import { isProduction } from '@utils'; +// import { isProduction } from '@utils'; const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose; @@ -18,8 +18,8 @@ export default (state = Object.freeze({})) => { applyMiddleware( createLogger(), promiseMiddleware(), - thunk, - !isProduction() && perflogger + thunk/*, + !isProduction() && perflogger*/ ) ) );