writefreely/prose/prose.js

113 lines
3.8 KiB
JavaScript
Raw Normal View History

2020-03-10 23:11:32 +01:00
// class MarkdownView {
// constructor(target, content) {
// this.textarea = target.appendChild(document.createElement("textarea"))
// this.textarea.value = content
// }
// get content() { return this.textarea.value }
// focus() { this.textarea.focus() }
// destroy() { this.textarea.remove() }
// }
2021-01-08 00:33:35 +01:00
import { EditorView } from "prosemirror-view";
import { EditorState, TextSelection } from "prosemirror-state";
import { exampleSetup } from "prosemirror-example-setup";
import { keymap } from "prosemirror-keymap";
import { writeFreelyMarkdownParser } from "./markdownParser";
import { writeFreelyMarkdownSerializer } from "./markdownSerializer";
2021-01-08 00:33:35 +01:00
import { writeFreelySchema } from "./schema";
import { getMenu } from "./menu";
2020-03-10 23:11:32 +01:00
2021-01-08 00:33:35 +01:00
let $title = document.querySelector("#title");
let $content = document.querySelector("#content");
2020-09-09 23:46:47 +02:00
2021-01-08 00:33:35 +01:00
// Bugs:
// 1. When there's just an empty line and a hard break is inserted with shift-enter then two enters are inserted
2021-01-08 00:33:35 +01:00
// which do not show up in the markdown ( maybe bc. they are training enters )
2021-01-08 00:33:35 +01:00
class ProseMirrorView {
constructor(target, content) {
2021-01-08 01:41:36 +01:00
let typingTimer;
2021-01-08 00:33:35 +01:00
let localDraft = localStorage.getItem(window.draftKey);
if (localDraft != null) {
content = localDraft;
2020-09-09 16:02:00 +02:00
}
2021-01-08 00:33:35 +01:00
if (content.indexOf("# ") === 0) {
let eol = content.indexOf("\n");
let title = content.substring("# ".length, eol);
content = content.substring(eol + "\n\n".length);
$title.value = title;
2020-09-09 16:02:00 +02:00
}
2020-03-10 23:11:32 +01:00
const doc = writeFreelyMarkdownParser.parse(content)
2021-01-08 00:33:35 +01:00
this.view = new EditorView(target, {
state: EditorState.create({
doc,
plugins: [
keymap({
"Mod-Enter": () => {
document.getElementById("publish").click();
return true;
},
"Mod-k": () => {
const linkButton = document.querySelector(
".ProseMirror-icon[title='Add or remove link']"
);
linkButton.dispatchEvent(new Event("mousedown"));
2021-01-08 00:33:35 +01:00
return true;
},
}),
...exampleSetup({
schema: writeFreelySchema,
menuContent: getMenu(),
}),
],
}),
dispatchTransaction(transaction) {
2021-01-08 01:41:36 +01:00
let newState = this.state.apply(transaction);
const newContent = writeFreelyMarkdownSerializer
2021-01-08 01:41:36 +01:00
.serialize(newState.doc)
2021-01-08 00:33:35 +01:00
// Replace all \\\ns ( not followed by a \n ) with \n
.replace(/(\\\n)(\n{0,1})/g, (match, p1, p2) =>
p2 !== "\n" ? "\n" + p2 : match
);
2021-01-08 00:33:35 +01:00
$content.value = newContent;
let draft = "";
if ($title.value != null && $title.value !== "") {
draft = "# " + $title.value + "\n\n";
}
draft += newContent;
2021-01-08 01:41:36 +01:00
clearTimeout(typingTimer);
typingTimer = setTimeout(doneTyping, doneTypingInterval);
2021-01-08 00:33:35 +01:00
this.updateState(newState);
},
});
// Editor is focused to the last position. This is a workaround for a bug:
// 1. 1 type something in an existing entry
// 2. reload - works fine, the draft is reloaded
// 3. reload again - the draft is somehow removed from localStorage and the original content is loaded
// When the editor is focused the content is re-saved to localStorage
// This is also useful for editing, so it's not a bad thing even
const lastPosition = this.view.state.doc.content.size;
const selection = TextSelection.create(this.view.state.doc, lastPosition);
this.view.dispatch(this.view.state.tr.setSelection(selection));
this.view.focus();
}
get content() {
return writeFreelyMarkdownSerializer.serialize(this.view.state.doc);
2021-01-08 00:33:35 +01:00
}
focus() {
this.view.focus();
}
destroy() {
this.view.destroy();
}
}
2020-03-10 23:11:32 +01:00
2021-01-08 00:33:35 +01:00
let place = document.querySelector("#editor");
let view = new ProseMirrorView(place, $content.value);