Skip to content

Commit 1b2739b

Browse files
committed
Multi tabs for New API Request and loading seperate views for history endpoints
1 parent 269b116 commit 1b2739b

File tree

3 files changed

+52
-4
lines changed

3 files changed

+52
-4
lines changed

extensions/src/apiRequest/apiRequestProvider.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export class ApiRequestProvider {
3131
}
3232

3333
public openApiRequestView() {
34-
// console.log("API Request View : This is the request view");
34+
console.log("API Request View : This is the request view");
3535
// if (!this.view) {
3636
// this.view = new ApiRequestView(this.context, this.handleApiRequest);
3737
// }

extensions/src/apiRequest/apiRequestView.ts

+50-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,57 @@ export class ApiRequestView {
2121
this.context = context;
2222
this.apiRequestCallback = apiRequestCallback;
2323
}
24-
24+
// public show(method?: string, url?: string, headers?: Record<string, string>, body?: string) {
25+
// console.log("Show from View");
26+
27+
// // Create a new panel every time this method is called
28+
// const newPanel = vscode.window.createWebviewPanel(
29+
// 'apiRequest',
30+
// 'API Request',
31+
// vscode.ViewColumn.One,
32+
// {
33+
// enableScripts: true,
34+
// retainContextWhenHidden: true,
35+
// }
36+
// );
37+
38+
// // Set up webview content
39+
// newPanel.webview.html = this.getWebviewContent();
40+
41+
// // Populate fields if provided
42+
// if (method && url) {
43+
// newPanel.webview.postMessage({
44+
// command: 'populateFields',
45+
// method: method,
46+
// url: url,
47+
// headers: headers || {},
48+
// body: body || ''
49+
// });
50+
// }
51+
52+
// // Handle messages from the webview
53+
// newPanel.webview.onDidReceiveMessage(
54+
// message => {
55+
// switch (message.command) {
56+
// case 'sendRequest':
57+
// this.apiRequestCallback(message.method, message.url, message.headers, message.queryParams, message.formData, message.body, message.bodyType);
58+
// return;
59+
// case 'saveEndpoint':
60+
// this.saveEndpoint(message.method, message.url);
61+
// return;
62+
// }
63+
// },
64+
// undefined,
65+
// this.context.subscriptions
66+
// );
67+
68+
// // Clean up when the panel is disposed
69+
// newPanel.onDidDispose(() => {
70+
// // Optionally handle any cleanup or state management here
71+
// });
72+
// }
2573
public show() {
26-
// console.log("Show from View");
74+
console.log("Show from View");
2775
// if (this.panel) {
2876
// console.log("Show from View : if condition");
2977
// this.panel.reveal();

extensions/src/utils/httpClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export class HttpClient {
22
public async sendRequest(url: string, method: string, headers: Record<string, string>, body?: string | FormData) {
3-
// console.log("Request sent from https client");
3+
console.log("Request sent from https client");
44
try {
55
const options: RequestInit = {
66
method,

0 commit comments

Comments
 (0)