-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.js
146 lines (132 loc) · 4.89 KB
/
extension.js
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
// The module 'vscode' contains the VS Code extensibility API
// Import the module and reference it with the alias vscode in your code below
const vscode = require('vscode');
const axios = require('axios');
const fs = require('fs');
const path = require('path');
// This method is called when your extension is activated
// Your extension is activated the very first time the command is executed
/**
* @param {vscode.ExtensionContext} context
*/
function activate(context) {
// Check if API key is set on extension activation
const apiKey = vscode.workspace.getConfiguration().get('readogen.apiKey');
if (!apiKey) {
vscode.window
.showInformationMessage(
'To activate the extension, please set the OpenAI API key in the extension settings.',
'Go to Settings'
)
.then((selection) => {
if (selection === 'Go to Settings') {
vscode.commands.executeCommand(
'workbench.action.openSettings',
'readogen.apiKey'
);
}
});
}
let disposable = vscode.commands.registerCommand(
'readogen.generateReadme',
async () => {
/* const apiKey = vscode.workspace.getConfiguration().get('readogen.apiKey');
if (!apiKey) {
vscode.window.showErrorMessage(
'Please set the OpenAI API key in the extension settings.'
);
return;
} */
const projectTitle = await vscode.window.showInputBox({
prompt: 'Enter project title',
});
const projectDescription = await vscode.window.showInputBox({
prompt: 'Enter project description',
});
const techStack = await vscode.window.showInputBox({
prompt: 'Enter tech stack (comma-separated)',
});
if (!projectTitle || !projectDescription || !techStack) {
vscode.window.showErrorMessage(
'Please provide all required information.'
);
return;
}
const techStackArray = techStack.split(',').map((stack) => stack.trim());
// Use withProgress to show loading message while fetching data
await vscode.window.withProgress(
{
location: vscode.ProgressLocation.Notification,
title: 'Generating README, please wait...',
cancellable: false,
},
async (progress, token) => {
try {
const response = await axios.post(
'https://api.openai.com/v1/chat/completions',
{
model: 'gpt-3.5-turbo',
messages: [
{ role: 'system', content: 'You are a helpful assistant.' },
{
role: 'user',
content: `generate github README for ${projectTitle} with ${projectDescription}, tech stack ${techStackArray} in latest badges, highlight key features of project and add emojis to all headings`,
},
],
temperature: 0.25,
max_tokens: 1500,
},
{
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${apiKey}`,
},
}
);
const generatedReadme = `# ${projectTitle}\n\n${projectDescription}\n\nTech Stack: ${techStack}\n\n${response.data.choices[0].message.content}`;
// Check if there is an active workspace
const rootPath =
vscode.workspace.workspaceFolders &&
vscode.workspace.workspaceFolders[0].uri.fsPath;
if (rootPath) {
const readmePath = path.join(rootPath, 'README.md');
try {
// Check if README file exists
if (fs.existsSync(readmePath)) {
// Write/overwrite content to the README.md file
fs.writeFileSync(readmePath, generatedReadme);
vscode.window.showInformationMessage(
'README.md updated successfully!'
);
} else {
// If it doesn't exist, create it and write content
fs.writeFileSync(readmePath, generatedReadme);
vscode.window.showInformationMessage(
'README.md created successfully!'
);
}
} catch (error) {
vscode.window.showErrorMessage(
`Error updating README.md: ${error.message}`
);
}
} else {
vscode.window.showErrorMessage('No active workspace found.');
}
} catch (error) {
vscode.window.showErrorMessage(
`Error generating README: ${error.message}`
);
}
}
);
}
);
context.subscriptions.push(disposable);
}
// This method is called when your extension is deactivated
function deactivate() {}
module.exports = {
activate,
deactivate,
};