-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathnewFile.ts
56 lines (51 loc) · 2.02 KB
/
newFile.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//===----------------------------------------------------------------------===//
//
// This source file is part of the VS Code Swift open source project
//
// Copyright (c) 2024 Apple Inc. and the VS Code Swift project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of VS Code Swift project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import * as fs from "fs/promises";
import * as path from "path";
import * as vscode from "vscode";
const extension = "swift";
const defaultFileName = `Untitled.${extension}`;
export async function newSwiftFile(
uri?: vscode.Uri,
isDirectory: (uri: vscode.Uri) => Promise<boolean> = async uri => {
return (await vscode.workspace.fs.stat(uri)).type === vscode.FileType.Directory;
}
) {
if (uri) {
// Attempt to create the file at the given directory.
const dir = (await isDirectory(uri)) ? uri.fsPath : path.dirname(uri.fsPath);
const defaultName = vscode.Uri.file(path.join(dir, defaultFileName));
const targetUri = await vscode.window.showSaveDialog({
defaultUri: defaultName,
title: "Enter a file path to be created",
});
if (!targetUri) {
return;
}
try {
await fs.writeFile(targetUri.fsPath, "", "utf-8");
const document = await vscode.workspace.openTextDocument(targetUri);
await vscode.languages.setTextDocumentLanguage(document, "swift");
await vscode.window.showTextDocument(document);
} catch (err) {
vscode.window.showErrorMessage(`Failed to create ${targetUri.fsPath}`);
}
} else {
// If no path is supplied then open an untitled editor w/ Swift language type
const document = await vscode.workspace.openTextDocument({
language: "swift",
});
await vscode.window.showTextDocument(document);
}
}