mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
perf(word-cloud): reduce render to improve performance (#21504)
This commit is contained in:
@@ -36,6 +36,7 @@
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@types/react": "*",
|
||||
"@types/lodash": "*",
|
||||
"@superset-ui/chart-controls": "*",
|
||||
"@superset-ui/core": "*",
|
||||
"react": "^16.13.1"
|
||||
|
||||
@@ -31,6 +31,7 @@ import {
|
||||
seed,
|
||||
CategoricalColorScale,
|
||||
} from '@superset-ui/core';
|
||||
import { isEqual } from 'lodash';
|
||||
|
||||
const seedRandom = seed('superset-ui');
|
||||
export const ROTATION = {
|
||||
@@ -134,8 +135,8 @@ class WordCloud extends React.PureComponent<
|
||||
const { data, encoding, width, height, rotation } = this.props;
|
||||
|
||||
if (
|
||||
prevProps.data !== data ||
|
||||
prevProps.encoding !== encoding ||
|
||||
!isEqual(prevProps.data, data) ||
|
||||
!isEqual(prevProps.encoding, encoding) ||
|
||||
prevProps.width !== width ||
|
||||
prevProps.height !== height ||
|
||||
prevProps.rotation !== rotation
|
||||
|
||||
Reference in New Issue
Block a user