tabby-sftp-ui 0.2.0 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +145 -136
- package/dist/index.js +801 -399
- package/dist/index.js.map +1 -1
- package/dist/sftp-manager-tab.component.d.ts +17 -0
- package/package.json +44 -44
|
@@ -62,6 +62,13 @@ export declare class SftpManagerTabComponent extends BaseTabComponent implements
|
|
|
62
62
|
deleteConfirmText: string;
|
|
63
63
|
private pendingLocalDelete;
|
|
64
64
|
private pendingRemoteDelete;
|
|
65
|
+
inputDialogVisible: boolean;
|
|
66
|
+
inputDialogTitle: string;
|
|
67
|
+
inputDialogPlaceholder: string;
|
|
68
|
+
inputDialogValue: string;
|
|
69
|
+
private inputDialogMode;
|
|
70
|
+
private inputDialogTargetPath;
|
|
71
|
+
private inputDialogRemotePath;
|
|
65
72
|
private platform;
|
|
66
73
|
private openedRemoteFiles;
|
|
67
74
|
localPathPresets: Array<{
|
|
@@ -106,6 +113,11 @@ export declare class SftpManagerTabComponent extends BaseTabComponent implements
|
|
|
106
113
|
onDragStartRemote(ev: DragEvent, item: SFTPFile): void;
|
|
107
114
|
onDropOnRemote(ev: DragEvent): Promise<void>;
|
|
108
115
|
onDropOnLocal(ev: DragEvent): Promise<void>;
|
|
116
|
+
private uploadLocalPathToRemote;
|
|
117
|
+
private copyLocalPathIntoLocalDir;
|
|
118
|
+
private uploadDirectoryUploadToRemote;
|
|
119
|
+
private writeDirectoryUploadToLocal;
|
|
120
|
+
private getDroppedOsPaths;
|
|
109
121
|
getFilteredLocalEntries(): LocalEntry[];
|
|
110
122
|
getFilteredRemoteEntries(): SFTPFile[];
|
|
111
123
|
private sortLocalEntries;
|
|
@@ -159,6 +171,9 @@ export declare class SftpManagerTabComponent extends BaseTabComponent implements
|
|
|
159
171
|
remoteRename(): void;
|
|
160
172
|
remoteDelete(): void;
|
|
161
173
|
remoteNewFolder(): void;
|
|
174
|
+
private openInputDialog;
|
|
175
|
+
cancelInputDialog(): void;
|
|
176
|
+
confirmInputDialog(): Promise<void>;
|
|
162
177
|
remoteEditPermissions(): void;
|
|
163
178
|
remoteShowSize(): void;
|
|
164
179
|
remoteDownload(): void;
|
|
@@ -184,6 +199,8 @@ export declare class SftpManagerTabComponent extends BaseTabComponent implements
|
|
|
184
199
|
private deleteLocalPathRecursive;
|
|
185
200
|
private deleteRemotePathRecursive;
|
|
186
201
|
private openRemoteFile;
|
|
202
|
+
private scheduleSyncBackRemoteFile;
|
|
203
|
+
private waitForStableLocalFile;
|
|
187
204
|
private syncBackRemoteFile;
|
|
188
205
|
}
|
|
189
206
|
export {};
|
package/package.json
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "tabby-sftp-ui",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "SFTP UI for Tabby (Termius-like file manager).",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"tabby-plugin"
|
|
7
|
-
],
|
|
8
|
-
"main": "dist/index.js",
|
|
9
|
-
"typings": "dist/index.d.ts",
|
|
10
|
-
"scripts": {
|
|
11
|
-
"build": "webpack --progress --color",
|
|
12
|
-
"watch": "webpack --progress --color --watch",
|
|
13
|
-
"prepublishOnly": "npm run build"
|
|
14
|
-
},
|
|
15
|
-
"files": [
|
|
16
|
-
"dist"
|
|
17
|
-
],
|
|
18
|
-
"author": "gr0w1ng",
|
|
19
|
-
"license": "MIT",
|
|
20
|
-
"dependencies": {},
|
|
21
|
-
"devDependencies": {
|
|
22
|
-
"@angular/animations": "^9.1.13",
|
|
23
|
-
"@angular/common": "^9.1.13",
|
|
24
|
-
"@angular/core": "^9.1.13",
|
|
25
|
-
"@angular/forms": "^9.1.13",
|
|
26
|
-
"@angular/platform-browser": "^9.1.13",
|
|
27
|
-
"@angular/platform-browser-dynamic": "^9.1.13",
|
|
28
|
-
"@types/node": "^22.13.10",
|
|
29
|
-
"@types/webpack-env": "^1.18.8",
|
|
30
|
-
"apply-loader": "^2.0.0",
|
|
31
|
-
"css-loader": "^7.1.2",
|
|
32
|
-
"rxjs": "^6.6.7",
|
|
33
|
-
"sass": "^1.86.0",
|
|
34
|
-
"sass-loader": "^16.0.5",
|
|
35
|
-
"style-loader": "^4.0.0",
|
|
36
|
-
"tabby-core": "^1.0.163",
|
|
37
|
-
"tabby-settings": "^1.0.163",
|
|
38
|
-
"tabby-terminal": "^1.0.163",
|
|
39
|
-
"ts-loader": "^9.5.2",
|
|
40
|
-
"typescript": "^5.8.2",
|
|
41
|
-
"webpack": "^5.98.0",
|
|
42
|
-
"webpack-cli": "^6.0.1"
|
|
43
|
-
}
|
|
44
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "tabby-sftp-ui",
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"description": "SFTP UI for Tabby (Termius-like file manager).",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"tabby-plugin"
|
|
7
|
+
],
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"typings": "dist/index.d.ts",
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "webpack --progress --color",
|
|
12
|
+
"watch": "webpack --progress --color --watch",
|
|
13
|
+
"prepublishOnly": "npm run build"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"author": "gr0w1ng",
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"dependencies": {},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@angular/animations": "^9.1.13",
|
|
23
|
+
"@angular/common": "^9.1.13",
|
|
24
|
+
"@angular/core": "^9.1.13",
|
|
25
|
+
"@angular/forms": "^9.1.13",
|
|
26
|
+
"@angular/platform-browser": "^9.1.13",
|
|
27
|
+
"@angular/platform-browser-dynamic": "^9.1.13",
|
|
28
|
+
"@types/node": "^22.13.10",
|
|
29
|
+
"@types/webpack-env": "^1.18.8",
|
|
30
|
+
"apply-loader": "^2.0.0",
|
|
31
|
+
"css-loader": "^7.1.2",
|
|
32
|
+
"rxjs": "^6.6.7",
|
|
33
|
+
"sass": "^1.86.0",
|
|
34
|
+
"sass-loader": "^16.0.5",
|
|
35
|
+
"style-loader": "^4.0.0",
|
|
36
|
+
"tabby-core": "^1.0.163",
|
|
37
|
+
"tabby-settings": "^1.0.163",
|
|
38
|
+
"tabby-terminal": "^1.0.163",
|
|
39
|
+
"ts-loader": "^9.5.2",
|
|
40
|
+
"typescript": "^5.8.2",
|
|
41
|
+
"webpack": "^5.98.0",
|
|
42
|
+
"webpack-cli": "^6.0.1"
|
|
43
|
+
}
|
|
44
|
+
}
|