|
|
@ -9,18 +9,33 @@ let snekdownWebview: SnekdownWebView;
|
|
|
|
|
|
|
|
|
|
|
|
export async function activate(context: vscode.ExtensionContext) {
|
|
|
|
export async function activate(context: vscode.ExtensionContext) {
|
|
|
|
const snekdownWrapper = new SnekdownWrapper(context);
|
|
|
|
const snekdownWrapper = new SnekdownWrapper(context);
|
|
|
|
await snekdownWrapper.download();
|
|
|
|
|
|
|
|
|
|
|
|
await vscode.window.withProgress({
|
|
|
|
|
|
|
|
location: vscode.ProgressLocation.Window,
|
|
|
|
|
|
|
|
title: "Downloading Snekdown"
|
|
|
|
|
|
|
|
}, async () => {
|
|
|
|
|
|
|
|
await snekdownWrapper.download()
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
context.subscriptions.push(vscode.commands.registerCommand('snekdown.init', async () => {
|
|
|
|
context.subscriptions.push(vscode.commands.registerCommand('snekdown.init', async () => {
|
|
|
|
await snekdownWrapper.init();
|
|
|
|
await snekdownWrapper.init();
|
|
|
|
vscode.window.showInformationMessage("Snekdown Project initialized.");
|
|
|
|
vscode.window.showInformationMessage("Snekdown Project initialized.");
|
|
|
|
}));
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
context.subscriptions.push(vscode.commands.registerCommand('snekdown.clear-ache', async () => {
|
|
|
|
context.subscriptions.push(vscode.commands.registerCommand('snekdown.clear-cache', async () => {
|
|
|
|
await snekdownWrapper.clearCache();
|
|
|
|
await snekdownWrapper.clearCache();
|
|
|
|
vscode.window.showInformationMessage("Snekdown cache cleared.");
|
|
|
|
vscode.window.showInformationMessage("Snekdown cache cleared.");
|
|
|
|
}))
|
|
|
|
}))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
context.subscriptions.push(vscode.commands.registerCommand('snekdown.update-binary', async () => {
|
|
|
|
|
|
|
|
await vscode.window.withProgress({
|
|
|
|
|
|
|
|
location: vscode.ProgressLocation.Window,
|
|
|
|
|
|
|
|
title: "Downloading Snekdown"
|
|
|
|
|
|
|
|
}, async () => {
|
|
|
|
|
|
|
|
await snekdownWrapper.download(true)
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}))
|
|
|
|
|
|
|
|
|
|
|
|
context.subscriptions.push(vscode.commands.registerTextEditorCommand('snekdown.preview', async () => {
|
|
|
|
context.subscriptions.push(vscode.commands.registerTextEditorCommand('snekdown.preview', async () => {
|
|
|
|
if (!snekdownWebview || snekdownWebview.isDisposed) {
|
|
|
|
if (!snekdownWebview || snekdownWebview.isDisposed) {
|
|
|
|
snekdownWebview = new SnekdownWebView(context, snekdownWrapper, vscode.ViewColumn.One);
|
|
|
|
snekdownWebview = new SnekdownWebView(context, snekdownWrapper, vscode.ViewColumn.One);
|
|
|
@ -43,7 +58,10 @@ export async function activate(context: vscode.ExtensionContext) {
|
|
|
|
value: placeholderOutput,
|
|
|
|
value: placeholderOutput,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
if (outputFile) {
|
|
|
|
if (outputFile) {
|
|
|
|
await vscode.window.withProgress({ location: vscode.ProgressLocation.Window, title: "Rendering HTML" }, async () => {
|
|
|
|
await vscode.window.withProgress({
|
|
|
|
|
|
|
|
location: vscode.ProgressLocation.Window,
|
|
|
|
|
|
|
|
title: "Rendering HTML"
|
|
|
|
|
|
|
|
}, async () => {
|
|
|
|
await snekdownWrapper.renderToFile(inputFile, outputFile as string, RenderingFormat.html);
|
|
|
|
await snekdownWrapper.renderToFile(inputFile, outputFile as string, RenderingFormat.html);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -57,7 +75,10 @@ export async function activate(context: vscode.ExtensionContext) {
|
|
|
|
value: placeholderOutput,
|
|
|
|
value: placeholderOutput,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
if (outputFile) {
|
|
|
|
if (outputFile) {
|
|
|
|
await vscode.window.withProgress({ location: vscode.ProgressLocation.Window, title: "Rendering PDF" }, async () => {
|
|
|
|
await vscode.window.withProgress({
|
|
|
|
|
|
|
|
location: vscode.ProgressLocation.Window,
|
|
|
|
|
|
|
|
title: "Rendering PDF"
|
|
|
|
|
|
|
|
}, async () => {
|
|
|
|
await snekdownWrapper.renderToFile(inputFile, outputFile as string, RenderingFormat.pdf);
|
|
|
|
await snekdownWrapper.renderToFile(inputFile, outputFile as string, RenderingFormat.pdf);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|