Skip to content

Commit c18cdea

Browse files
authored
File Explorer UI - Basic functionality (#89)
- Abstracted File Explorer to use a StorageTable and FileStorage object instead of TreeTables directly - Added WebdavFileStorage and WebdavFileStorageTable to use WebDAV to connect to server, save/read files - Create file, create directory functionality - Opening files as preview, then opening - Deleting files - Renaming files
1 parent 5ee3918 commit c18cdea

Some content is hidden

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

52 files changed

+20630
-208
lines changed

examples/component-template/LICENSE.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

examples/component-template/jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export default {
1+
module.exports = {
22
transform: {
33
'.(ts|tsx|js|jsx)': 'ts-jest',
44
},

examples/component-template/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,24 +48,24 @@
4848
},
4949
"devDependencies": {
5050
"@babel/cli": "^7.14.3",
51-
"@deephaven/tsconfig": "^0.0.1",
51+
"@deephaven/tsconfig": "^0.1.4",
5252
"@storybook/addon-actions": "^6.2.3",
5353
"@storybook/addon-essentials": "^6.2.3",
5454
"@storybook/addon-links": "^6.2.3",
5555
"@storybook/react": "^6.2.3",
5656
"@testing-library/react": "^11.2.7",
57-
"@types/jest": "^26.0.15",
58-
"@types/react": "^16.14.0",
57+
"@types/jest": "^26.0.23",
58+
"@types/react": "^16.14.8",
5959
"cross-env": "^7.0.2",
6060
"gh-pages": "^2.2.0",
6161
"identity-obj-proxy": "^3.0.0",
6262
"jest": "26.6.0",
6363
"npm-run-all": "^4.1.5",
6464
"react": "^16.14.0",
6565
"react-dom": "^16.14.0",
66-
"sass": "^1.32.8",
66+
"sass": "1.32.13",
6767
"ts-jest": "^26.5.6",
68-
"ts-loader": "^8.0.18",
68+
"ts-loader": "^8.3.0",
6969
"typescript": "^4.3.2"
7070
},
7171
"files": [

packages/code-studio/.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ REACT_APP_ROUTER_BASE_NAME=/ide/
77
REACT_APP_VERSION=$npm_package_version
88
REACT_APP_NAME=$npm_package_name
99
REACT_APP_PLUGIN_URL=/ide/plugins/
10+
REACT_APP_NOTEBOOLS_URL=/notebooks
1011
REACT_APP_INTERNAL_PLUGINS=
1112
REACT_APP_ENABLE_LOG_PROXY=true
1213
REACT_APP_SUPPORT_LINK=https://github.com/deephaven/web-client-ui/

packages/code-studio/.env.development

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
REACT_APP_LOG_LEVEL=3
22
REACT_APP_ENABLE_LOG_PROXY=false
33
REACT_APP_CORE_API_URL=http://localhost:10000/jsapi
4+
REACT_APP_NOTEBOOKS_URL=http://localhost:10000/notebooks
45
REACT_APP_ROUTER_BASE_NAME=/
56
REACT_APP_INTERNAL_PLUGINS=ExamplePlugin
67

0 commit comments

Comments
 (0)