generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
main.ts
308 lines (267 loc) · 12.4 KB
/
main.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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
// ----------------------------------------------------------------------------------------
// File : main.ts
// Author : Stefan Wolfrum (@metawops)
// Date : 2022-05-27
// Last Update: 2022-06-12
// Description: Implementation of my very first Obsidian plugin.
// It allows to export rendered HTML tables (i.e. from a pane in reading mode)
// to be exported to a CSV file and optionally to the clipboard, too.
// Purely based on the Obsidian sample plugin.
// ----------------------------------------------------------------------------------------
import { App, MarkdownView, Notice, Plugin, PluginSettingTab, Setting } from 'obsidian';
interface Table2CSVSettings {
exportPath: string;
baseFilename: string;
fileNumber: string;
sepChar: string;
quoteDataChar: string;
saveToClipboardToo: boolean;
removeCRLF: string;
}
const DEFAULT_SETTINGS: Table2CSVSettings = {
exportPath: './',
baseFilename: 'table-export',
fileNumber: '001',
sepChar: 'sepChar-semicolon',
quoteDataChar: 'quoteChar-noQuote',
saveToClipboardToo: false,
removeCRLF: 'removeCRLF-space'
}
export default class Table2CSVPlugin extends Plugin {
settings: Table2CSVSettings;
async onload() {
await this.loadSettings();
this.addCommand({
id: 'obsidian-table-to-csv-exporter',
name: 'Export table to CSV file',
checkCallback: (checking: boolean) => {
const view = this.app.workspace.getActiveViewOfType(MarkdownView);
if (view) {
if (!checking) {
// Here we can actually start with our work
const viewMode = view.getMode();
if (viewMode=="preview") {
// Now convert the tables
const csvString = htmlToCSV(view.previewMode.containerEl, this.settings.sepChar, this.settings.quoteDataChar, this.settings.removeCRLF);
// If csvString is not empty, create file:
if (csvString.length > 0) {
const filename = `${this.settings.baseFilename}-${this.settings.fileNumber}.csv`;
this.app.vault.create(filename, csvString)
.then( () => {
// increment the file number addition string
// first, convert the current string to a number:
let fn: number = +this.settings.fileNumber;
// then increment the number:
fn++;
// don't allow more that 999; restart with 001 in that case:
if (fn==1000) fn = 1;
// convert the number to a string again:
let newFileNumberString: string = fn + "";
// add leading zeroes to the string:
while (newFileNumberString.length < 3) newFileNumberString = "0" + newFileNumberString;
this.settings.fileNumber = newFileNumberString;
if (this.settings.saveToClipboardToo) {
navigator.clipboard
.writeText(csvString)
.then(() => {
new Notice(`The file ${filename} was successfully created in your vault. The contents was also copied to the clipboard.`);
})
.catch((err) => {
new Notice('There was an error with copying the contents to the clipboard.');
});
} else {
new Notice(`The file ${filename} was successfully created in your vault.`)
}
})
.catch( (error) => {
const errorMessage = `Error: ${error.message}`;
new Notice(errorMessage);
})
}
else {
new Notice(`No table was found. No CSV file was written.`);
}
}
else {
new Notice('This command only works on panes in reading mode! – No CSV files were written.');
}
}
return true;
}
return false;
}
});
// This adds a settings tab so the user can configure various aspects of the plugin
this.addSettingTab(new Table2CSVSettingTab(this.app, this));
console.log(`Table to CSV plugin: Version ${this.manifest.version} loaded.`);
}
onunload() {
}
async loadSettings() {
this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData());
}
async saveSettings() {
await this.saveData(this.settings);
}
}
function htmlToCSV(html: HTMLElement, sepMode: string, quoteChar: string, removeCRLF: string) {
var data = [];
var table = html.querySelector("table");
//console.log(`htmlToCSV::table: ${table}`);
if (table) {
var rows = table.rows;
//console.log(`htmlToCSV::rows: ${rows}`);
for (var i = 0; i < rows.length; i++) {
var row = [], cols = rows[i].querySelectorAll("td, th");
for (var j = 0; j < cols.length; j++) {
var cellContent = (cols[j] as HTMLElement).innerText;
// handle the optional replacement of CR/LF characters:
if (removeCRLF=='removeCRLF-clear') {
cellContent = cellContent.replace(/(\r\n|\n|\r)/gm, "");
} else if (removeCRLF=='removeCRLF-space') {
cellContent = cellContent.replace(/(\r\n|\n|\r)/gm, " ");
} else if (removeCRLF=='removeCRLF-string1') {
cellContent = cellContent.replace(/(\r\n|\n|\r)/gm, "[CR]");
}
// handle the quoting of data cells:
// for now it's just the hard-coded character "
if (quoteChar=='quoteChar-doubleQuotes') {
cellContent = '"' + cellContent + '"';
} else if (quoteChar=='quoteChar-singleQuotes') {
cellContent = "'" + cellContent + "'";
}
row.push(cellContent);
}
var sepChar = ';';
switch(sepMode) {
case 'sepChar-semicolon':
sepChar = ';';
break;
case 'sepChar-comma':
sepChar = ',';
break;
case 'sepChar-tab':
sepChar = '\t';
break;
case 'sepChar-pipe':
sepChar = '|';
break;
case 'sepChar-tilde':
sepChar = '~';
break;
case 'sepChar-caret':
sepChar = '^';
break;
case 'sepChar-colon':
sepChar = ':';
break;
}
data.push(row.join(sepChar));
}
}
//console.log(`htmlToCSV::data.length: ${data.length}`);
if (data.length > 0)
return data.join("\n");
else
return "";
}
class Table2CSVSettingTab extends PluginSettingTab {
plugin: Table2CSVPlugin;
constructor(app: App, plugin: Table2CSVPlugin) {
super(app, plugin);
this.plugin = plugin;
}
display(): void {
const {containerEl} = this;
containerEl.empty();
containerEl.createEl('h2', {text: 'Settings for the Table to CSV Plugin.'});
containerEl.createEl('p', {text: 'NOTE: Currently, the exported CSV files are saved inside your vault main folder.'});
// Being able to set a path for the exports will be a future addition
// ------------------------------------------------------------------
// new Setting(containerEl)
// .setName('CSV file export path')
// .setDesc('Enter the path where the exported CSV file should be saved. If no path is set the CSV file will be saved into your vault folder.')
// .addText(text => text
// .setPlaceholder('<enter a path>')
// .setValue(this.plugin.settings.exportPath)
// .onChange(async (value) => {
// console.log('path: ' + value);
// this.plugin.settings.exportPath = value;
// await this.plugin.saveSettings();
// }));
new Setting(containerEl)
.setName('CSV file base filename')
.setDesc('Enter the base filename. The "File Number addendum" gets added after that and finally .csv')
.addText(text => text
.setPlaceholder('<enter a base filename')
.setValue(this.plugin.settings.baseFilename)
.onChange(async (value) => {
//console.log('base filename: ' + value);
this.plugin.settings.baseFilename = value;
await this.plugin.saveSettings();
}));
new Setting(containerEl)
.setName('File Number addendum')
.setDesc('This number gets added to the base filename and incremented after each export. Normally, you shouldn\'t need to edit this.')
.addText(text => text
.setPlaceholder('')
.setValue(this.plugin.settings.fileNumber)
.onChange(async (value) => {
//console.log('fileNumber: ' + value);
this.plugin.settings.fileNumber = value;
await this.plugin.saveSettings();
}));
new Setting(containerEl)
.setName('Data fields separation character/string')
.setDesc('This character will be put between each cell\'s data. Defaults to a semicolon.')
.addDropdown(dropdown => dropdown
.addOption('sepChar-semicolon', '; (semicolon)')
.addOption('sepChar-comma', ', (comma)')
.addOption('sepChar-tab', '\\t (tab)')
.addOption('sepChar-pipe', '| (pipe)')
.addOption('sepChar-tilde', '~ (tilde)')
.addOption('sepChar-caret', '^ (caret)')
.addOption('sepChar-colon', ': (colon)')
.setValue(this.plugin.settings.sepChar)
.onChange(async (value) => {
//console.log('sepChar: ' + value);
this.plugin.settings.sepChar = value;
await this.plugin.saveSettings();
}));
new Setting(containerEl)
.setName('Quote data')
.setDesc('Do you want quotation marks around each cell\'s data?')
.addDropdown( dropdown => dropdown
.addOption('quoteChar-noQuote', 'Don\'t quote data')
.addOption('quoteChar-doubleQuotes', 'Quote data with double quote character (")')
.addOption('quoteChar-singleQuotes', 'Quote data with single quote character (\')')
.setValue(this.plugin.settings.quoteDataChar)
.onChange(async (value) => {
//console.log('quote data toggle: ' + value);
this.plugin.settings.quoteDataChar = value;
await this.plugin.saveSettings();
}));
new Setting(containerEl)
.setName('Handling of CR/LF in data')
.setDesc('Choose how to handle the occurance of return and linefeed characters in data cells.')
.addDropdown( dropdown => dropdown
.addOption('removeCRLF-clear', 'Remove all CR & LF characters')
.addOption('removeCRLF-space', 'Replace all CR & LF characters with one space')
.addOption('removeCRLF-string1', 'Replace all CR & LF characters with string [CR]')
.setValue(this.plugin.settings.removeCRLF)
.onChange(async (value) => {
this.plugin.settings.removeCRLF = value;
await this.plugin.saveSettings();
}))
new Setting(containerEl)
.setName('Copy to clipboard, too')
.setDesc('Do you want to copy the contents of the CSV file to the system clipboard, too?')
.addToggle( toggle => toggle
.setValue(this.plugin.settings.saveToClipboardToo)
.onChange(async (value) => {
//console.log('save to clipboard, too: ' + value);
this.plugin.settings.saveToClipboardToo = value;
await this.plugin.saveSettings();
}));
}
}