-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
- Loading branch information
Showing
2 changed files
with
60 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import { basename } from 'node:path' | ||
|
||
class FileSystemEntry { | ||
|
||
private _isFile: boolean | ||
private _fullPath: string | ||
|
||
constructor(isFile: boolean, fullPath: string) { | ||
this._isFile = isFile | ||
this._fullPath = fullPath | ||
} | ||
|
||
get isFile() { | ||
return !!this._isFile | ||
} | ||
|
||
get isDirectory() { | ||
return !this.isFile | ||
} | ||
|
||
get name() { | ||
return basename(this._fullPath) | ||
} | ||
|
||
} | ||
|
||
export class FileSystemFileEntry extends FileSystemEntry { | ||
|
||
private _contents: string | ||
|
||
constructor(fullPath: string, contents: string) { | ||
super(true, fullPath) | ||
this._contents = contents | ||
} | ||
|
||
file(success: (file: File) => void) { | ||
success(new File([this._contents], this.name)) | ||
} | ||
|
||
} | ||
|
||
export class FileSystemDirectoryEntry extends FileSystemEntry { | ||
|
||
private _entries: FileSystemEntry[] | ||
|
||
constructor(fullPath: string, entries: FileSystemEntry[]) { | ||
super(false, fullPath) | ||
this._entries = entries || [] | ||
} | ||
|
||
createReader() { | ||
return { | ||
readEntries: (success: (entries: FileSystemEntry[]) => void) => { | ||
success(this._entries) | ||
}, | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters