-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathReloadExtension.ts
62 lines (56 loc) · 2.16 KB
/
ReloadExtension.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
57
58
59
60
61
62
//===----------------------------------------------------------------------===//
//
// This source file is part of the VS Code Swift open source project
//
// Copyright (c) 2024 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 vscode from "vscode";
import { Workbench } from "../utilities/commands";
// eslint-disable-next-line @typescript-eslint/no-require-imports
import debounce = require("lodash.debounce");
/**
* Prompts the user to reload the extension in cases where we are unable to do
* so automatically. Only one of these prompts will be shown at a time.
*
* @param message the warning message to display to the user
* @param items extra buttons to display
* @returns the selected button or undefined if cancelled
*/
export function showReloadExtensionNotificationInstance<T extends string>() {
let inFlight: Promise<"Reload Extensions" | T | undefined> | null = null;
return async function (
message: string,
...items: T[]
): Promise<"Reload Extensions" | T | undefined> {
if (inFlight) {
return inFlight;
}
const buttons: ("Reload Extensions" | T)[] = ["Reload Extensions", ...items];
inFlight = (async () => {
try {
const selected = await vscode.window.showWarningMessage(message, ...buttons);
if (selected === "Reload Extensions") {
await vscode.commands.executeCommand(Workbench.ACTION_RELOADWINDOW);
}
return selected;
} finally {
inFlight = null;
}
})();
return inFlight;
};
}
// In case the user closes the dialog immediately we want to debounce showing it again
// for 10 seconds to prevent another popup perhaps immediately appearing.
export const showReloadExtensionNotification = debounce(
showReloadExtensionNotificationInstance(),
10_000,
{ leading: true }
);