import React from "react";
import ReactDOM from "react-dom";
import hljs from "highlight.js/lib/core";
// const hljs = window.hljs;
import "highlight.js/styles/devibeans.css";
import markdown from "highlight.js/lib/languages/markdown.js";
import javascript from "highlight.js/lib/languages/javascript.js";
import python from "highlight.js/lib/languages/python.js";
import C from "highlight.js/lib/languages/c.js";
import bash from "highlight.js/lib/languages/bash.js";
import "../index.css";
import mit from "markdown-it";
import mithljs from "markdown-it-highlightjs";
import mittexmath from "markdown-it-texmath";
import mitmmdtable from "markdown-it-multimd-table";
import katex from "katex";
import { mdrtlConfig } from "../config.js";
hljs.registerLanguage("markdown", markdown);
hljs.registerLanguage("javascript", javascript);
hljs.registerLanguage("python", python);
hljs.registerLanguage("c", C);
hljs.registerLanguage("bash", bash);
const md = new mit({ html: true })
.enable(["table"])
.use(mittexmath, {
engine: katex,
delimiters: "gitlab",
katexOptions: { output: "mathml" },
})
.use(mitmmdtable)
.use(mithljs, { inline: true, auto: true, code: true, hljs: hljs });
export default class Editor extends React.Component {
constructor(props) {
super(props);
this.handleInput = this.handleInput.bind(this);
this.handleScroll = this.handleScroll.bind(this);
this.handleKeyDown = this.handleKeyDown.bind(this);
this.updateCodeSyntaxHighlighting =
this.updateCodeSyntaxHighlighting.bind(this);
this.handleChange = this.handleChange.bind(this);
this.parseMarkdown = this.parseMarkdown.bind(this);
this.handleTitleClick = this.handleTitleClick.bind(this);
this.handleLoad = this.handleLoad.bind(this);
this.handleSave = this.handleSave.bind(this);
this.handleDelete = this.handleDelete.bind(this);
this.genNewRandId = this.genNewRandId.bind(this);
this.state = { value: "", drawerActive: false };
// this.hljs_worker = new Worker("../highlight_worker.js");
// this.md_worker = new Worker("../parse_worker.js");
this.docId = localStorage.getItem("docId");
if (this.docId === null) {
this.docId = this.genNewRandId();
localStorage.setItem("docId", this.docId);
}
console.log(this.docId);
}
// TODO-use web worker instead
/**
* Highlights all the pre-code elements in the page, both the left-hand
* and righ-hand side.
*/
updateCodeSyntaxHighlighting() {
document.querySelectorAll("pre code").forEach((block) => {
hljs.highlightElement(block);
});
// this.hljs_worker.postMessage("message");
// this.hljs_worker.ouMessage = (event) => {
// console.log("highlighed successfully");
// };
}
// TODO-use web worker instead
/**
* Parses the markdown to create the rendered HTML for the right-hand
* side of the page.
*/
parseMarkdown(event) {
let element = document.getElementById("markdown-placeholder");
let htm = md.render(event.target.value);
element.innerHTML = htm;
// this.md_worker.postMessage(event);
// this.md_worker.onMessage((htm) => {
// element.innerHTML = htm;
// });
}
handleChange(event) {
// this.setState({ value: event.target.value });
}
/**
* Updates the syntax highlighting and markdown rendering when the
* text changes inside the left-hand side editor.
*/
handleInput(event) {
let result_element = document.getElementById("highlight-content");
result_element.textContent = event.target.value;
this.updateCodeSyntaxHighlighting();
this.parseMarkdown(event);
result_element.scrollTop = event.currentTarget.scrollTop;
result_element.scrollLeft = event.currentTarget.scrollLeft;
let result_element_2 = document.querySelector("#highlight");
result_element_2.scrollTop = event.currentTarget.scrollTop;
result_element_2.scrollLeft = event.currentTarget.scrollLeft;
this.setState({ value: event.target.value });
}
/**
* Scrolls both the pre-code area and the text area together so
* we get the illusion of the two elements moving together.
*/
handleScroll(event) {
let result_element = document.querySelector("#highlight-content");
result_element.scrollTop = event.currentTarget.scrollTop;
result_element.scrollLeft = event.currentTarget.scrollLeft;
let result_element_2 = document.querySelector("#highlight");
result_element_2.scrollTop = event.currentTarget.scrollTop;
result_element_2.scrollLeft = event.currentTarget.scrollLeft;
}
/**
* Handles Tab correctly so the text area acts like an editor.
*/
handleKeyDown(event) {
let element = event.currentTarget;
let code = this.state.value;
if (event.key == "Tab") {
event.preventDefault();
let before_tab = code.slice(0, element.selectionStart);
let after_tab = code.slice(element.selectionEnd, element.value.length);
let cursor_pos = element.selectionEnd + 1;
element.value = before_tab + "\t" + after_tab;
element.selectionStart = cursor_pos;
element.selectionEnd = cursor_pos;
this.handleInput(event);
}
}
handleTitleClick() {
this.setState((prevState) => ({ drawerActive: !prevState.drawerActive }));
}
/**
* generates a random ID that's will be used to store the document.
*/
genNewRandId() {
return Math.floor(Math.random() * (0x1 << 16));
}
/**
* The document DELETE method. simply sends a DELETE request to delete
* the document from the database.
*/
handleDelete() {
fetch(`${mdrtlConfig.serverURL}/${this.docId}`, {
method: "DELETE",
headers: {
Accept: "application/json",
},
}).then((response) => {
if (!response.ok) {
throw new Error(`request failed with status ${response.status}`);
}
});
}
/**
* The document LOAD method. sends a GET request to the database with
* the document id ID which is saved in local storage.
*/
handleLoad(event) {
let res;
fetch(`${mdrtlConfig.serverURL}/${this.docId}`).then((response) => {
if (!response.ok) {
throw new Error(`request failed with status ${response.status}`);
}
res = response.json().then((json) => {
this.setState({ value: json.body });
let result_element = document.getElementById("highlight-content");
result_element.textContent = this.state.value;
let element = document.getElementById("markdown-placeholder");
let htm = md.render(this.state.value);
element.innerHTML = htm;
this.updateCodeSyntaxHighlighting();
});
});
}
/**
* The SAVE method. If no document with the given ID exists sends a POST
* request to the database to create the document with document id ID.
* If the document has been previously saved, then sends a PUT request
* to update the last modified date and document text.
*/
async handleSave() {
let obj = {
id: this.docId,
name: `${this.docId}`,
lastModified: Math.floor(Date.now() / 1000),
body: this.state.value,
};
let response = await fetch(`${mdrtlConfig.serverURL}/${this.docId}`, {
method: "POST",
body: JSON.stringify(obj),
mode: "cors",
headers: {
Accept: "application/json",
"Content-Type": "application/json",
},
});
if (!response.ok) {
let obj = {
id: this.docId,
name: `${this.docId}`,
lastModified: Math.floor(Date.now() / 1000),
body: this.state.value,
};
let response = await fetch(`${mdrtlConfig.serverURL}/${this.docId}`, {
method: "PUT",
body: JSON.stringify(obj),
mode: "cors",
headers: {
Accept: "application/json",
"Content-Type": "application/json",
},
});
if (!response.ok) {
throw new Error(`request failed with status code ${response.status}`);
}
}
}
render(props) {
return (
<div>
<div>
<pre id="highlight" aria-hidden="true" direction="rtl">
<code
id="highlight-content"
className="language-markdown"
direction="rtl"
></code>
</pre>
<textarea
spellcheck="false"
name="editor"
className="editor"
id="editor"
value={this.state.value}
onChange={this.handleChange.bind(this)}
onInput={this.handleInput.bind(this)}
onScroll={this.handleScroll.bind(this)}
onKeyDown={this.handleKeyDown.bind(this)}
direction="rtl"
tabIndex="0"
></textarea>
</div>
<div className="split right">
<div direction="rtl" id="markdown-placeholder"></div>
</div>
<img
className="icon"
src="load.jpg"
width="20"
height="20"
onClick={this.handleLoad.bind(this)}
/>
<img
className="icon"
src="trash3.png"
width="20"
height="20"
onClick={this.handleDelete.bind(this)}
/>
<img
className="icon"
src="save.png"
width="20"
height="20"
onClick={this.handleSave.bind(this)}
/>
</div>
);
}
}