forked from amdecker/obsidian-argdown-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
258 lines (208 loc) · 7.63 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
import {
MarkdownPostProcessorContext,
Plugin,
PluginSettingTab,
Setting,
App
} from 'obsidian';
import './lib/codemirror';
import './lib/simple';
import "./mode/codemirror-argdown";
import "./mode/codemirror-argdown.css";
import {
IArgdownPlugin,
IRequestHandler,
ArgdownApplication,
IArgdownRequest,
ParserPlugin,
DataPlugin,
ModelPlugin,
ColorPlugin,
HighlightSourcePlugin,
WebComponentExportPlugin,
MapPlugin,
GroupPlugin,
ClosedGroupPlugin,
DotExportPlugin,
PreselectionPlugin,
StatementSelectionPlugin,
ArgumentSelectionPlugin,
ExplodeArgumentsPlugin
} from "./lib/argown-core";
import {SyncDotToSvgExportPlugin } from "@argdown/core/dist/plugins/SyncDotToSvgExportPlugin"; // it needs to be exported explicitly
import {argdownMapScript, webComponentStyle, webcomponentsBundle} from "webComponentScriptAndStyle";
class AddLinkstoSVG implements IArgdownPlugin{
name: string = "AddLinkstoSVG";
run: IRequestHandler = (_request: Request, response: Response) => {
var parser = new DOMParser();
var doc = parser.parseFromString(response.svg, "image/svg+xml");
var nodes = response.map.nodes;
for (var node of nodes) {
if (!node.labelTextRanges) {
continue;
}
var current_node_id = node.id;
//Creating the ID of the nodes according to the formula: 'nx' = 'node(x+1)'
var svg_id = "node" + (parseInt(current_node_id[1]) + 1);
var current_svg_element = doc.getElementById(svg_id);
//only the first obsidian link found will be used to wrap the title
for (var range of node.labelTextRanges) {
if (range.type == 'obsidian-link') {
//the first text element is the title
var text_title = current_svg_element.getElementsByTagName("text")[0];
text_title.innerHTML = `<a data-href="${range.text}" href="${range.text}" class="internal-link" target="_blank" rel="noopener">` +
text_title.innerHTML +
`</a>`;
break;
}
}
}
response.svg = doc.documentElement.outerHTML;
return response;
}
}
interface MyPluginSettings {
initialView: string;
}
const DEFAULT_SETTINGS: MyPluginSettings = {
initialView: 'map'
}
let pluginSettings = {};
export default class MyPlugin extends Plugin {
settings: MyPluginSettings;
async onload() {
console.log("loading Argdown Plugin");
setupScripts();
await this.loadSettings()
this.addSettingTab(new ArgdownSettingsTab(this.app, this));
this.registerMarkdownCodeBlockProcessor("argdown", this.codeBlockProcessor);
this.registerMarkdownCodeBlockProcessor("argdown-map", this.codeBlockProcessor);
}
async loadSettings() {
this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData());
pluginSettings = this.settings;
}
async saveSettings() {
pluginSettings = this.settings;
await this.saveData(this.settings);
}
onunload() {
console.log('unloading Argdown plugin');
}
/**
* updates the preview pane, replaces the codeblock preview with the argument map
*/
codeBlockProcessor(source: string, el: HTMLElement, ctx: MarkdownPostProcessorContext) {
el.innerHTML = `${argdownInputToComponent(source)}`;
}
}
/**
* Takes in argdown syntax and returns a web component with the map
* @param input: argdown text (without the ```argdown``` or ```argdown-map```)
*/
function argdownInputToComponent(input: string) {
const app = new ArgdownApplication();
const parserPlugin = new ParserPlugin();
app.addPlugin(parserPlugin, "parse-input");
const dataPlugin = new DataPlugin();
app.addPlugin(dataPlugin, "data");
const modelPlugin = new ModelPlugin();
app.addPlugin(modelPlugin, "build-model");
const explodeArgumentsPlugin = new ExplodeArgumentsPlugin();
app.addPlugin(explodeArgumentsPlugin, "explode-arguments");
const preSelectionPlugin = new PreselectionPlugin();
app.addPlugin(preSelectionPlugin, "pre");
const statementSelection = new StatementSelectionPlugin();
app.addPlugin(statementSelection, "statement");
const argumentSelectionPlugin = new ArgumentSelectionPlugin();
app.addPlugin(argumentSelectionPlugin, "argument");
const mapPlugin = new MapPlugin();
app.addPlugin(mapPlugin, "build-map");
const groupPlugin = new GroupPlugin();
app.addPlugin(groupPlugin, "groups");
const closedGroupPlugin = new ClosedGroupPlugin();
app.addPlugin(closedGroupPlugin, "transform-closed-groups");
const colorPlugin = new ColorPlugin();
app.addPlugin(colorPlugin, "colorize");
const dotExportPlugin = new DotExportPlugin();
app.addPlugin(dotExportPlugin, "export-dot");
const dotToSvgPlugin = new SyncDotToSvgExportPlugin();
app.addPlugin(dotToSvgPlugin, "export-svg")
const highlightSourcePlugin = new HighlightSourcePlugin();
app.addPlugin(highlightSourcePlugin, "highlight-source");
const addLinkstoSVG = new AddLinkstoSVG();
app.addPlugin(addLinkstoSVG, "addLinksSVG");
const webComponentExportPlugin = new WebComponentExportPlugin({initialView: pluginSettings.initialView});
app.addPlugin(webComponentExportPlugin, "export-web-component");
const request:IArgdownRequest = {
input,
process: [
"parse-input",
"data",
"build-model",
"explode-arguments",
"pre",
"statement",
"argument",
"build-map",
"groups",
"transform-closed-groups",
"colorize",
"export-dot",
"export-svg",
"highlight-source",
"addLinksSVG",
"export-web-component"
],
logLevel: "verbose"
}
return app.run(request).webComponent;
}
class ArgdownSettingsTab extends PluginSettingTab {
plugin: MyPlugin;
constructor(app: App, plugin: MyPlugin) {
super(app, plugin);
this.plugin = plugin;
}
display(): void {
let {containerEl} = this;
containerEl.empty();
containerEl.createEl('h2', {text: 'Argdown Plugin Settings'});
const firstOption = pluginSettings.initialView;
const secondOption = pluginSettings.initialView === "map" ? "source" : "map";
new Setting(containerEl)
.setName('Initial View')
.setDesc('What should display by default when you edit your Argdown')
.addDropdown(dropdown => dropdown
.addOption(firstOption, firstOption)
.onChange(async (value) => {
this.plugin.settings.initialView = value;
await this.plugin.saveSettings();
})
.addOption(secondOption, secondOption)
.onChange(async (value) => {
this.plugin.settings.initialView = value;
await this.plugin.saveSettings();
})
);
}
}
/**
* grabs all the scripts that are saved offline so that all the styles and functionality is still there even when there is no internet
*/
const setupScripts = () => {
//"https://cdn.jsdelivr.net/npm/@argdown/web-components/dist/argdown-map.css";
const stylesheet = document.createElement("style");//document.createElement("link");
stylesheet.innerHTML = webComponentStyle;
const webComponentScript = document.createElement("script");
webComponentScript.src = "data:text/javascript;charset=utf-8," + webcomponentsBundle;
// webComponentScript.src = "https://cdn.jsdelivr.net/npm/@webcomponents/webcomponentsjs/webcomponents-bundle.js";
webComponentScript.type = "module";
const mapScript = document.createElement("script");
mapScript.src = "data:text/javascript;charset=utf-8," + argdownMapScript;
// mapScript.src = "https://cdn.jsdelivr.net/npm/@argdown/web-components/dist/argdown-map.js";
mapScript.type = "text/javascript";
document.getElementsByTagName("head")[0].appendChild(stylesheet);
document.getElementsByTagName("head")[0].appendChild(webComponentScript);
document.getElementsByTagName("head")[0].appendChild(mapScript);
}