Skip to content

Commit

Permalink
using per function lodash throttle
Browse files Browse the repository at this point in the history
  • Loading branch information
wuweiweiwu committed Mar 10, 2018
1 parent 535d0b9 commit a61b043
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions lib/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"lodash.debounce": "^4.0.8",
"lodash.pick": "^4.4.0",
"lodash.sortby": "^4.7.0",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.6.1",
"qs": "^6.5.1",
"react-fuzzy": "^0.5.2",
Expand Down
4 changes: 2 additions & 2 deletions lib/ui/src/modules/ui/components/layout/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { localStorage } from 'global';
import PropTypes from 'prop-types';
import React from 'react';
import SplitPane from 'react-split-pane';
import _ from 'lodash'; /* eslint-disable-line import/no-extraneous-dependencies */
import throttle from 'lodash.throttle';

import USplit from './usplit';
import Dimensions from './dimensions';
Expand Down Expand Up @@ -136,7 +136,7 @@ class Layout extends React.Component {
isDragging: false,
};

this.onThrottledResize = _.throttle(this.onResize.bind(this), 200);
this.onThrottledResize = throttle(this.onResize.bind(this), 200);
this.onDragStart = this.onDragStart.bind(this);
this.onDragEnd = this.onDragEnd.bind(this);
}
Expand Down
4 changes: 4 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9729,6 +9729,10 @@ lodash.templatesettings@^4.0.0:
dependencies:
lodash._reinterpolate "~3.0.0"

lodash.throttle@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4"

lodash.union@~4.6.0:
version "4.6.0"
resolved "https://registry.yarnpkg.com/lodash.union/-/lodash.union-4.6.0.tgz#48bb5088409f16f1821666641c44dd1aaae3cd88"
Expand Down

0 comments on commit a61b043

Please sign in to comment.