generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.ts
564 lines (497 loc) · 18.8 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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
import { App, Editor, MarkdownView, Plugin, PluginSettingTab, Setting } from 'obsidian';
import { Prec, Extension } from '@codemirror/state';
import { keymap } from '@codemirror/view';
interface LatexAlgoSettings{
algorithmTitle_toggle:boolean;
subtitles_toggle:boolean;
loops_toggle:boolean;
conditionals_toggle:boolean;
fastIndentation_toggle: boolean;
proofs_toggle: boolean;
}
const DEFAULT_SETTINGS: LatexAlgoSettings ={
algorithmTitle_toggle: true,
subtitles_toggle:true,
loops_toggle: true,
conditionals_toggle: true,
fastIndentation_toggle: true,
proofs_toggle: true,
}
export default class LatexAlgorithms extends Plugin {
settings: LatexAlgoSettings;
lversion = this.manifest.version;
private readonly makeExtension = (): Extension => Prec.high(keymap.of([
{
key: "Space",
run: () :boolean => {
const view = this.app.workspace.getActiveViewOfType(MarkdownView);
if (!view) return false;
const editor = view.editor;
const cursorPlace = editor.getCursor();
const line = editor.getLine(cursorPlace.line)
const commandCutoff = this.getCommand(line.slice(0,cursorPlace.ch));
if (commandCutoff === null) return false;
const command = line.slice(commandCutoff, cursorPlace.ch);
switch (command) {
case "\\Algorithm":
if (this.settings.algorithmTitle_toggle){
if (!this.withinMath(editor)) {
editor.replaceRange(" ", {line:cursorPlace.line, ch:commandCutoff}, {line:cursorPlace.line, ch:cursorPlace.ch});
editor.replaceSelection( "\n$$\\begin{align*}\\\\ \n&\\textbf{Algorithm } \\text{}\\\\ \n&\\textbf{Input: } \\text{}\\\\ \n&\\textbf{Output: } \\text{}\\\\ \n\\end{align*}$$")
editor.setCursor({line:cursorPlace.line+2, ch:27});
}
else{
editor.replaceRange(`\\textbf{Algorithm } \\text{}`, {line:cursorPlace.line, ch:commandCutoff}, {line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:26 + commandCutoff});
}
}
else{
editor.replaceSelection(" ");
}
break;
case "\\Input":
if (!this.withinMath(editor)) return false;
if (this.settings.subtitles_toggle){
editor.replaceRange("\\textbf{Input: } \\text{}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:23 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\Output":
if (!this.withinMath(editor)) return false;
if (this.settings.subtitles_toggle){
editor.replaceRange("\\textbf{Output: } \\text{}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:24 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\Ensure":
if (!this.withinMath(editor)) return false;
if (this.settings.subtitles_toggle){
editor.replaceRange("\\textbf{Ensure: } \\text{}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:24 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\State":
if (!this.withinMath(editor)) return false;
if (this.settings.subtitles_toggle){
editor.replaceRange("\\text{}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:6 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\For":
if (!this.withinMath(editor)) return false;
if (this.settings.loops_toggle){
editor.replaceRange("\\textbf{For } \\text{} \\textbf{ do:}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:20 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\While":
if (!this.withinMath(editor)) return false;
if (this.settings.loops_toggle){
editor.replaceRange("\\textbf{While } \\text{} \\textbf{ do:}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:22 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\EndFor":
if (!this.withinMath(editor)) return false;
if (this.settings.loops_toggle){
editor.replaceRange("\\textbf{end for}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:16 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\EndWhile":
if (!this.withinMath(editor)) return false;
if (this.settings.loops_toggle){
editor.replaceRange("\\textbf{end while}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:18 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\Continue":
if (!this.withinMath(editor)) return false;
if (this.settings.loops_toggle){
editor.replaceRange("\\textbf{continue}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:17 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\Break":
if (!this.withinMath(editor)) return false;
if (this.settings.loops_toggle){
editor.replaceRange("\\textbf{break}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:14 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\If":
if (!this.withinMath(editor)) return false;
if (this.settings.conditionals_toggle){
editor.replaceRange("\\textbf{If } \\text{} \\textbf{ then:}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:19 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\Else":
if (!this.withinMath(editor)) return false;
if (this.settings.conditionals_toggle){
editor.replaceRange("\\textbf{Else:}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:15 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\ElseIf":
if (!this.withinMath(editor)) return false;
if (this.settings.conditionals_toggle){
editor.replaceRange("\\textbf{Else if } \\text{} \\textbf{then:}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:24 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\EndIf":
if (!this.withinMath(editor)) return false;
if (this.settings.conditionals_toggle){
editor.replaceRange("\\textbf{end if}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:15 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\Switch":
if (!this.withinMath(editor)) return false;
if (this.settings.conditionals_toggle){
editor.replaceRange("\\textbf{Switch } \\text{} \\textbf{ do:}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:23 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\Case":
if (!this.withinMath(editor)) return false;
if (this.settings.conditionals_toggle){
editor.replaceRange("\\textbf{Case } \\text{} \\textbf{:}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:21 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\Default":
if (!this.withinMath(editor)) return false;
if (this.settings.conditionals_toggle){
editor.replaceRange("\\textbf{Default } \\text{} \\textbf{:}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:24 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\Return":
if (!this.withinMath(editor)) return false;
if (this.settings.subtitles_toggle){
editor.replaceRange("\\textbf{return } \\text{}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:23 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\EndSwitch":
if (!this.withinMath(editor)) return false;
if (this.settings.conditionals_toggle){
editor.replaceRange("\\textbf{end switch}", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:19 + commandCutoff});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\Theorem":
if (this.settings.proofs_toggle && !this.withinMath(editor)){
editor.replaceRange("$\\textbf{Theorem}$ ", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch: commandCutoff + 19});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\Lemma":
if (this.settings.proofs_toggle && !this.withinMath(editor)){
editor.replaceRange("$\\textbf{Lemma}$ ", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch: commandCutoff + 17});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\Corollary":
if (this.settings.proofs_toggle && !this.withinMath(editor)){
editor.replaceRange("$\\textbf{Corollary}$ ", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch: commandCutoff + 21});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\Definition":
if (this.settings.proofs_toggle && !this.withinMath(editor)){
editor.replaceRange("$\\textbf{Definition}$ ", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch:commandCutoff + 22});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\Remark":
if (this.settings.proofs_toggle && !this.withinMath(editor)){
editor.replaceRange("$\\textbf{Remark}$ ", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch: commandCutoff + 18});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\Proof":
if (this.settings.proofs_toggle && !this.withinMath(editor)){
editor.replaceRange("$\\textit{Proof.}$ ", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch: commandCutoff + 18});
}
else{
editor.replaceSelection(" ");
}
break;
case "\\QED":
if (this.settings.proofs_toggle && !this.withinMath(editor)){
editor.replaceRange("$\\text{QED}$ ", {line:cursorPlace.line, ch:commandCutoff},{line:cursorPlace.line, ch:cursorPlace.ch});
editor.setCursor({line:cursorPlace.line, ch: commandCutoff + 13});
}
else{
editor.replaceSelection(" ");
}
break;
default:
editor.replaceSelection(" ");
}
return true;
}
},
{
key: "Shift-Tab",
run: () :boolean => {
const view = this.app.workspace.getActiveViewOfType(MarkdownView);
if (!view) return false;
const editor = view.editor;
if (!this.withinMath(editor)) return false;
const currLine = editor.getLine(editor.getCursor().line);
let cutOff = 0;
while (currLine[cutOff] === "&") cutOff++;
editor.setSelection({line:editor.getCursor().line, ch:cutOff});
editor.replaceSelection("\\quad ");
editor.setCursor({line:editor.getCursor().line, ch: cutOff});
return true;
}
}
]));
async onload() {
console.log("Loading Latex Algorithms")
this.registerEditorExtension(this.makeExtension());
await this.loadSettings();
this.addSettingTab(new LatexAlgorithmsSetting(this.app, this));
}
onunload() {
console.log("Closing Latex Algorithms")
}
async loadSettings() {
this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData());
}
async saveSettings() {
await this.saveData(this.settings);
}
private getCommand = (str:string) => {
for (let i = str.length-1;i>= 0; i--){
if (str[i] === "\\") {
return i;
}
}
return null;
}
private readonly withinMath = (
editor: Editor
): Boolean => {
// check if cursor within $$
const position = editor.getCursor()
const current_line = editor.getLine(position.line);
let cursor_index = position.ch
let from = 0;
let found = current_line.indexOf('$', from);
while (found != -1 && found < cursor_index) {
let next_char = editor.getRange(
{ line: position.line, ch: found + 1 },
{ line: position.line, ch: found + 2 })
let prev_char = editor.getRange(
{ line: position.line, ch: found - 1 },
{ line: position.line, ch: found })
if (next_char == '$' || prev_char == '$' || next_char == ' ') {
from = found + 1;
found = current_line.indexOf('$', from);
continue;
} else {
from = found + 1;
let next_found = current_line.indexOf('$', from);
if (next_found == -1) {
return false;
} else if (cursor_index > found && cursor_index <= next_found) {
return true;
} else {
from = next_found + 1;
found = current_line.indexOf('$', from);
continue;
}
}
}
const document_text = editor.getValue();
cursor_index = editor.posToOffset(position);
from = 0;
found = document_text.indexOf('$$', from);
let count = 0;
while (found != -1 && found < cursor_index) {
count += 1;
from = found + 2;
found = document_text.indexOf('$$', from);
}
return count % 2 == 1;
};
}
class LatexAlgorithmsSetting extends PluginSettingTab {
plugin: LatexAlgorithms;
constructor(app: App, plugin: LatexAlgorithms) {
super(app, plugin);
this.plugin = plugin;
}
display(): void {
const {containerEl} = this;
containerEl.empty();
containerEl.createEl('h1', {text: 'LaTeX Proofs and Algorithms'});
containerEl.createEl('h2', {text: 'Proofs'});
new Setting(containerEl)
.setName('Automatic Proof Keywords')
.setDesc('Proof shortcuts are to be used outside of math mode. Automatic generation of proof keywords with shortcuts such as \\Proof, \\Theorem, etc...\n')
.addToggle((toggle) => toggle
.setValue(this.plugin.settings.proofs_toggle)
.onChange(async (value) => {
this.plugin.settings.proofs_toggle= value;
await this.plugin.saveData(this.plugin.settings);
this.display();
}
));
containerEl.createEl('h2', {text: 'Algorithms'});
new Setting(containerEl)
.setName("Fast indentation")
.setDesc("SHIFT + TAB will indent the current line by 4 spaces.")
.addToggle((toggle) => toggle
.setValue(this.plugin.settings.fastIndentation_toggle)
.onChange(async (value) => {
this.plugin.settings.fastIndentation_toggle= value;
await this.plugin.saveData(this.plugin.settings);
this.display();
}));
new Setting(containerEl)
.setName('Automatic Title for Algorithm')
.setDesc('Typing \\Algorithm within math mode will automatically generate a title for an algorithm block. Typing \\Algorithm outside of math mode will generate a small algorithm block template within a math block.')
.addToggle((toggle) => toggle
.setValue(this.plugin.settings.algorithmTitle_toggle)
.onChange(async (value) => {
this.plugin.settings.algorithmTitle_toggle= value;
await this.plugin.saveData(this.plugin.settings);
this.display();
}));
new Setting(containerEl)
.setName('Automatic Subtitles')
.setDesc('Typing \\Input, \\Output, \\Ensure, \\State will automatically generate the appropriate subtitle.')
.addToggle((toggle) => toggle
.setValue(this.plugin.settings.subtitles_toggle)
.onChange(async (value) => {
this.plugin.settings.subtitles_toggle= value;
await this.plugin.saveData(this.plugin.settings);
this.display();
}
));
new Setting(containerEl)
.setName('Automatic Loops')
.setDesc('Typing \\For or \\While will automatically generate a loop.' + ' End the loop with \\End<For/While>.')
.addToggle((toggle) => toggle
.setValue(this.plugin.settings.loops_toggle)
.onChange(async (value) => {
this.plugin.settings.loops_toggle= value;
await this.plugin.saveData(this.plugin.settings);
this.display();
}
));
new Setting(containerEl)
.setName('Automatic Conditionals')
.setDesc('Typing \\If, \\ElseIf, \\Else; \\Switch, \\Case, \\Default will automatically generate the approriate conditional statement.')
.addToggle((toggle) => toggle
.setValue(this.plugin.settings.conditionals_toggle)
.onChange(async (value) => {
this.plugin.settings.conditionals_toggle= value;
await this.plugin.saveData(this.plugin.settings);
this.display();
}
));
containerEl.createEl('h2', {text: 'Information'});
new Setting(containerEl)
.setName("Version " + this.plugin.manifest.version)
.setDesc('If you find an issue with the software or would like to contribute, visit the GitHub reposity of this plugin.')
.addButton((button) => button
.setButtonText('Take me there!')
.setClass('mod-cta')
.onClick(() => {
window.open("https://www.github.com/SamZhang02/obsidian-latex-algorithms");
}
));
containerEl.createEl('h2', {text: 'Support the developer!'});
new Setting(containerEl)
.setName('Buy me a coffee!')
.setDesc('If you like this plugin, consider buying me a coffee!')
.addButton((button) => button
.setButtonText('Buy me a coffee!')
.setClass('mod-cta')
.onClick(() => {
window.open('https://www.buymeacoffee.com/samzhang');
}
));
}
}