Skip to content

Commit f990ca5

Browse files
Merge pull request #354 from RedisInsight/feature/RI-781_Tree_view
#RI-781 - Tree view
2 parents bd6ce9c + e3191f6 commit f990ca5

File tree

86 files changed

+2545
-1541
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+2545
-1541
lines changed

babel.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ module.exports = (api) => {
4848
require('@babel/plugin-syntax-import-meta'),
4949
[require('@babel/plugin-proposal-class-properties'), { loose: true }],
5050
require('@babel/plugin-proposal-json-strings'),
51+
[require('@babel/plugin-proposal-private-property-in-object'), { loose: true }],
52+
[require('@babel/plugin-proposal-private-methods'), { loose: true }],
5153

5254
...(development ? developmentPlugins : productionPlugins),
5355
],

configs/webpack.config.renderer.dev.babel.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,7 @@ export default merge(baseConfig, {
209209
BASE_API_URL: 'http://localhost',
210210
RESOURCES_BASE_URL: 'http://localhost',
211211
SCAN_COUNT_DEFAULT: '500',
212+
SCAN_TREE_COUNT_DEFAULT: '10000',
212213
BUILD_TYPE: 'ELECTRON',
213214
APP_VERSION: version,
214215
SEGMENT_WRITE_KEY:

configs/webpack.config.renderer.dev.dll.babel.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ export default merge(baseConfig, {
5151
BASE_API_URL: 'http://localhost',
5252
RESOURCES_BASE_URL: 'http://localhost',
5353
SCAN_COUNT_DEFAULT: '500',
54+
SCAN_TREE_COUNT_DEFAULT: '10000',
5455
SEGMENT_WRITE_KEY:
5556
'SEGMENT_WRITE_KEY' in process.env ? process.env.SEGMENT_WRITE_KEY : 'SOURCE_WRITE_KEY',
5657
}),

configs/webpack.config.renderer.prod.babel.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ export default merge(baseConfig, {
197197
RESOURCES_BASE_URL: process.env.SERVER_TLS_CERT && process.env.SERVER_TLS_KEY ? 'https://localhost' : 'http://localhost',
198198
APP_ENV: 'electron',
199199
SCAN_COUNT_DEFAULT: '500',
200+
SCAN_TREE_COUNT_DEFAULT: '10000',
200201
SEGMENT_WRITE_KEY:
201202
'SEGMENT_WRITE_KEY' in process.env ? process.env.SEGMENT_WRITE_KEY : 'SOURCE_WRITE_KEY',
202203
}),

configs/webpack.config.renderer.stage.babel.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export default merge(baseConfig, {
2020
RESOURCES_BASE_URL: process.env.SERVER_TLS_CERT && process.env.SERVER_TLS_KEY ? 'https://localhost' : 'http://localhost',
2121
APP_ENV: 'electron',
2222
SCAN_COUNT_DEFAULT: '500',
23+
SCAN_COUNT_MEMORY_ANALYSES: '10000',
2324
SEGMENT_WRITE_KEY:
2425
'SEGMENT_WRITE_KEY' in process.env ? process.env.SEGMENT_WRITE_KEY : 'SOURCE_WRITE_KEY',
2526
}),

configs/webpack.config.web.dev.babel.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,10 +183,11 @@ export default merge(commonConfig, {
183183
NODE_ENV: 'development',
184184
APP_ENV: 'web',
185185
API_PREFIX: 'api',
186-
API_PORT: '5000',
186+
API_PORT: '5001',
187187
BASE_API_URL: `http://${require('os').hostname()}`,
188188
RESOURCES_BASE_URL: `http://${require('os').hostname()}`,
189189
SCAN_COUNT_DEFAULT: '500',
190+
SCAN_TREE_COUNT_DEFAULT: '10000',
190191
SEGMENT_WRITE_KEY:
191192
'SEGMENT_WRITE_KEY' in process.env ? process.env.SEGMENT_WRITE_KEY : 'SOURCE_WRITE_KEY',
192193
}),

configs/webpack.config.web.prod.babel.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,13 @@ export default merge(commonConfig, {
4646
new webpack.EnvironmentPlugin({
4747
NODE_ENV: 'production',
4848
APP_ENV: 'web',
49-
API_PORT: '5000',
49+
API_PORT: '5001',
5050
API_PREFIX: '',
5151
BASE_API_URL: 'api/',
5252
RESOURCES_BASE_URL:
5353
process.env.SERVER_TLS_CERT && process.env.SERVER_TLS_KEY ? 'https://localhost' : 'http://localhost',
5454
SCAN_COUNT_DEFAULT: '500',
55+
SCAN_TREE_COUNT_DEFAULT: '10000',
5556
SEGMENT_WRITE_KEY:
5657
'SEGMENT_WRITE_KEY' in process.env ? process.env.SEGMENT_WRITE_KEY : 'SOURCE_WRITE_KEY',
5758
}),

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@
134134
"@teamsupercell/typings-for-css-modules-loader": "^2.4.0",
135135
"@testing-library/jest-dom": "^5.11.6",
136136
"@testing-library/react": "^11.2.2",
137-
"@testing-library/react-hooks": "^5.0.3",
138137
"@types/axios": "^0.14.0",
139138
"@types/classnames": "^2.2.11",
140139
"@types/date-fns": "^2.6.0",
@@ -254,6 +253,9 @@
254253
"react-rnd": "^10.3.5",
255254
"react-router-dom": "^5.2.0",
256255
"react-virtualized": "^9.22.2",
256+
"react-virtualized-auto-sizer": "^1.0.6",
257+
"react-vtree": "^3.0.0-beta.3",
258+
"react-window": "^1.8.6",
257259
"rehype-stringify": "^9.0.2",
258260
"remark-gfm": "^3.0.1",
259261
"remark-parse": "^10.0.1",
Lines changed: 6 additions & 0 deletions
Loading
Lines changed: 6 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)