-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpaste-python.js
More file actions
127 lines (114 loc) · 3.91 KB
/
paste-python.js
File metadata and controls
127 lines (114 loc) · 3.91 KB
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
const vscode = require("vscode");
const { parseClipboard } = require("./parse-table");
const { addTrailingZeroes, normalizeBool } = require("./utils");
async function clipboardToPyDataFrame(framework = null) {
try {
// 1: Read the clipboard content
const clipboardContent = await vscode.env.clipboard.readText();
if (!clipboardContent) {
vscode.window.showErrorMessage(
"Clipboard is empty or contains unsupported content."
);
return;
}
// 2: Try to extract the table from clipboard content
let formattedData = null;
formattedData = parseClipboard(clipboardContent);
// 3: Ask the user which framework they want to use
if (framework === null) {
framework = await vscode.window.showQuickPick(
["pandas 🐼", "polars 🐻", "datatable 🎩"],
{
placeHolder: "Select the Python framework for creating the dataframe",
}
);
}
framework = framework.split(" ")[0];
if (!framework) {
vscode.window.showErrorMessage("No framework selected.");
return;
}
// 4: Generate the Python code using the selected framework
const pyCode = createPyDataFrame(formattedData, framework);
if (!pyCode) {
vscode.window.showErrorMessage("Failed to generate Python code.");
return;
}
// 5: Insert the generated code into the active editor
const editor = vscode.window.activeTextEditor;
if (editor) {
editor.edit((editBuilder) => {
editBuilder.insert(editor.selection.active, pyCode);
});
}
} catch (error) {
vscode.window.showErrorMessage(`Error: ${error.message}`);
}
}
/**
* Generates Python dataframe objects.
* Supports pandas, polars, and datatable frameworks.
*
* Modified from: https://web-apps.thecoatlessprofessor.com/data/html-table-to-dataframe-tool.html
*
*/
function createPyDataFrame(tableData, framework) {
const { headers, data, columnTypes } = tableData;
const config = vscode.workspace.getConfiguration("pastum");
const libraryDeclaration = config.get("libraryDeclaration");
let code = "";
/**
* Formats a value according to its column type for R syntax
* @param {any} value - The value to format
* @param {number} colIndex - Column index for type lookup
* @returns {string} Formatted value
*/
function formatValue(value, colIndex) {
if (value === "") {
return "None";
} else if (columnTypes[colIndex] === "string") {
return `"${value}"`;
} else if (columnTypes[colIndex] === "numeric") {
return addTrailingZeroes(value);
} else if (columnTypes[colIndex] === "boolean") {
return normalizeBool(value, "python");
} else if (columnTypes[colIndex] === "integer") {
return value;
} else {
return `"${value}"`;
}
}
// pandas
if (framework === "pandas") {
code = libraryDeclaration ? `import pandas as pd\n\n` : "";
code += `pd.DataFrame({\n`;
headers.forEach((header, i) => {
const values = data.map((row) => formatValue(row[i], i)).join(", ");
code += ` "${header}": [${values}]${i < headers.length - 1 ? ",\n" : "\n"
}`;
});
code += `})`;
} else if (framework === "datatable") {
code = libraryDeclaration ? `import datatable as dt\n\n` : "";
code += `dt.Frame({\n`;
headers.forEach((header, i) => {
const values = data.map((row) => formatValue(row[i], i)).join(", ");
code += ` "${header}": [${values}]${i < headers.length - 1 ? ",\n" : "\n"
}`;
});
code += `})`;
} else if (framework === "polars") {
code = libraryDeclaration ? `import polars as pl\n\n` : "";
code += `pl.DataFrame({\n`;
headers.forEach((header, i) => {
const values = data.map((row) => formatValue(row[i], i)).join(", ");
code += ` "${header}": [${values}]${i < headers.length - 1 ? ",\n" : "\n"
}`;
});
code += `})`;
}
return code;
}
module.exports = {
clipboardToPyDataFrame,
};