mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 09:27:24 +00:00
fixed multiple sftp uploads - fixes #4001
This commit is contained in:
parent
5ef0ae6d44
commit
907ebc0fd5
2 changed files with 6 additions and 7 deletions
|
@ -29,7 +29,7 @@ export class DropZoneDirective implements AfterViewInit {
|
|||
})
|
||||
this.el.nativeElement.addEventListener('drop', (event: DragEvent) => {
|
||||
this.removeHint()
|
||||
for (const transfer of this.platform.startUploadFromDragEvent(event)) {
|
||||
for (const transfer of this.platform.startUploadFromDragEvent(event, true)) {
|
||||
this.transfer.emit(transfer)
|
||||
}
|
||||
})
|
||||
|
|
|
@ -91,18 +91,14 @@ export class SFTPPanelComponent {
|
|||
|
||||
async upload (): Promise<void> {
|
||||
const transfers = await this.platform.startUpload({ multiple: true })
|
||||
const savedPath = this.path
|
||||
for (const transfer of transfers) {
|
||||
this.uploadOne(transfer).then(() => {
|
||||
if (this.path === savedPath) {
|
||||
this.navigate(this.path)
|
||||
}
|
||||
})
|
||||
this.uploadOne(transfer)
|
||||
}
|
||||
}
|
||||
|
||||
async uploadOne (transfer: FileUpload): Promise<void> {
|
||||
const itemPath = path.join(this.path, transfer.getName())
|
||||
const savedPath = this.path
|
||||
try {
|
||||
const handle = await this.sftp.open(itemPath, 'w')
|
||||
while (true) {
|
||||
|
@ -114,6 +110,9 @@ export class SFTPPanelComponent {
|
|||
}
|
||||
handle.close()
|
||||
transfer.close()
|
||||
if (this.path === savedPath) {
|
||||
this.navigate(this.path)
|
||||
}
|
||||
} catch (e) {
|
||||
transfer.cancel()
|
||||
throw e
|
||||
|
|
Loading…
Reference in a new issue