mirror of
https://github.com/Eugeny/tabby.git
synced 2025-09-15 21:04:35 +00:00
Lint pass
This commit is contained in:
@@ -94,15 +94,15 @@ export class DirectoryUpload {
|
|||||||
// Just set name for now.
|
// Just set name for now.
|
||||||
}
|
}
|
||||||
|
|
||||||
getName () {
|
getName (): string {
|
||||||
return this.name
|
return this.name
|
||||||
}
|
}
|
||||||
|
|
||||||
getChildrens () {
|
getChildrens (): (FileUpload|DirectoryUpload)[] {
|
||||||
return this.childrens
|
return this.childrens
|
||||||
}
|
}
|
||||||
|
|
||||||
pushChildren (item: FileUpload|DirectoryUpload) {
|
pushChildren (item: FileUpload|DirectoryUpload): void {
|
||||||
this.childrens.push(item)
|
this.childrens.push(item)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -54,7 +54,7 @@ export class ElectronPlatformService extends PlatformService {
|
|||||||
if (item.isDirectory()) {
|
if (item.isDirectory()) {
|
||||||
root.pushChildren(await this.getAllFiles(path.join(dir, item.name), new DirectoryUpload(item.name)))
|
root.pushChildren(await this.getAllFiles(path.join(dir, item.name), new DirectoryUpload(item.name)))
|
||||||
} else {
|
} else {
|
||||||
let file = new ElectronFileUpload(path.join(dir, item.name), this.electron)
|
const file = new ElectronFileUpload(path.join(dir, item.name), this.electron)
|
||||||
root.pushChildren(file)
|
root.pushChildren(file)
|
||||||
await wrapPromise(this.zone, file.open())
|
await wrapPromise(this.zone, file.open())
|
||||||
this.fileTransferStarted.next(file)
|
this.fileTransferStarted.next(file)
|
||||||
@@ -248,7 +248,7 @@ export class ElectronPlatformService extends PlatformService {
|
|||||||
paths = result.filePaths
|
paths = result.filePaths
|
||||||
}
|
}
|
||||||
|
|
||||||
let root = new DirectoryUpload()
|
const root = new DirectoryUpload()
|
||||||
root.pushChildren(await this.getAllFiles(paths[0].split(path.sep).join(path.posix.sep), new DirectoryUpload(path.basename(paths[0]))))
|
root.pushChildren(await this.getAllFiles(paths[0].split(path.sep).join(path.posix.sep), new DirectoryUpload(path.basename(paths[0]))))
|
||||||
return root
|
return root
|
||||||
}
|
}
|
||||||
|
@@ -135,7 +135,7 @@ export class WebPlatformService extends PlatformService {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
async startUploadDirectory (paths?: string[]): Promise<DirectoryUpload> {
|
async startUploadDirectory (_paths?: string[]): Promise<DirectoryUpload> {
|
||||||
return new DirectoryUpload()
|
return new DirectoryUpload()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user