2022-05-14 12:45:29 +00:00
|
|
|
import { AppLayout } from "components/AppLayout";
|
|
|
|
import { Button } from "components/Inputs/Button";
|
|
|
|
import { Markdawn } from "components/Markdown/Markdawn";
|
|
|
|
import {
|
|
|
|
ContentPanel,
|
2022-02-17 16:55:44 +00:00
|
|
|
ContentPanelWidthSizes,
|
|
|
|
} from "components/Panels/ContentPanel";
|
2022-05-14 12:45:29 +00:00
|
|
|
import { Popup } from "components/Popup";
|
|
|
|
import { ToolTip } from "components/ToolTip";
|
2022-05-08 10:26:36 +00:00
|
|
|
import { AppStaticProps, getAppStaticProps } from "graphql/getAppStaticProps";
|
2022-05-08 19:37:41 +00:00
|
|
|
import { Immutable } from "helpers/types";
|
|
|
|
import { GetStaticPropsContext } from "next";
|
2022-03-26 16:09:42 +00:00
|
|
|
import { useCallback, useState } from "react";
|
2022-04-04 09:08:41 +00:00
|
|
|
import TurndownService from "turndown";
|
2022-05-27 11:17:37 +00:00
|
|
|
import { Icon } from "components/Ico";
|
2022-05-27 11:10:19 +00:00
|
|
|
import { TOC } from "components/Markdown/TOC";
|
2022-02-17 16:55:44 +00:00
|
|
|
|
2022-04-03 08:34:21 +00:00
|
|
|
interface Props extends AppStaticProps {}
|
2022-02-17 16:55:44 +00:00
|
|
|
|
2022-05-08 19:37:41 +00:00
|
|
|
export default function Editor(props: Immutable<Props>): JSX.Element {
|
2022-04-04 09:08:41 +00:00
|
|
|
const handleInput = useCallback((text: string) => {
|
|
|
|
setMarkdown(text);
|
2022-02-17 16:55:44 +00:00
|
|
|
}, []);
|
|
|
|
|
|
|
|
const [markdown, setMarkdown] = useState("");
|
2022-04-04 09:08:41 +00:00
|
|
|
const [converterOpened, setConverterOpened] = useState(false);
|
|
|
|
|
2022-05-27 11:10:19 +00:00
|
|
|
function wrap(
|
|
|
|
wrapper: string,
|
|
|
|
properties?: Record<string, string>,
|
|
|
|
addInnerNewLines?: boolean
|
|
|
|
) {
|
|
|
|
transformationWrapper((value, selectionStart, selectionEnd) => {
|
|
|
|
let prepend = wrapper;
|
|
|
|
let append = wrapper;
|
|
|
|
|
|
|
|
if (properties) {
|
|
|
|
prepend = `<${wrapper}${Object.entries(properties).map(
|
|
|
|
([propertyName, propertyValue]) =>
|
|
|
|
` ${propertyName}="${propertyValue}"`
|
|
|
|
)}>`;
|
|
|
|
append = `</${wrapper}>`;
|
|
|
|
}
|
|
|
|
|
2022-06-18 02:02:20 +00:00
|
|
|
if (addInnerNewLines === true) {
|
2022-05-27 11:10:19 +00:00
|
|
|
prepend = `${prepend}\n`;
|
|
|
|
append = `\n${append}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
let newValue = "";
|
|
|
|
newValue += value.slice(0, selectionStart);
|
|
|
|
newValue += prepend;
|
|
|
|
newValue += value.slice(selectionStart, selectionEnd);
|
|
|
|
newValue += append;
|
|
|
|
newValue += value.slice(selectionEnd);
|
|
|
|
return { prependLength: prepend.length, transformedValue: newValue };
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleWrap(
|
|
|
|
wrapper: string,
|
|
|
|
properties?: Record<string, string>,
|
|
|
|
addInnerNewLines?: boolean
|
|
|
|
) {
|
|
|
|
const textarea = document.querySelector(
|
|
|
|
"#editorTextArea"
|
|
|
|
) as HTMLTextAreaElement;
|
|
|
|
const { value, selectionStart, selectionEnd } = textarea;
|
|
|
|
|
|
|
|
if (
|
|
|
|
value.slice(selectionStart - wrapper.length, selectionStart) ===
|
|
|
|
wrapper &&
|
|
|
|
value.slice(selectionEnd, selectionEnd + wrapper.length) === wrapper
|
|
|
|
) {
|
|
|
|
unwrap(wrapper);
|
|
|
|
} else {
|
|
|
|
wrap(wrapper, properties, addInnerNewLines);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function unwrap(wrapper: string) {
|
|
|
|
transformationWrapper((value, selectionStart, selectionEnd) => {
|
|
|
|
let newValue = "";
|
|
|
|
newValue += value.slice(0, selectionStart - wrapper.length);
|
|
|
|
newValue += value.slice(selectionStart, selectionEnd);
|
|
|
|
newValue += value.slice(wrapper.length + selectionEnd);
|
|
|
|
return { prependLength: -wrapper.length, transformedValue: newValue };
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function preline(prepend: string) {
|
|
|
|
transformationWrapper((value, selectionStart) => {
|
|
|
|
const lastNewLine = value.slice(0, selectionStart).lastIndexOf("\n") + 1;
|
|
|
|
|
|
|
|
let newValue = "";
|
|
|
|
newValue += value.slice(0, lastNewLine);
|
|
|
|
newValue += prepend;
|
|
|
|
newValue += value.slice(lastNewLine);
|
|
|
|
|
|
|
|
return { prependLength: prepend.length, transformedValue: newValue };
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function insert(prepend: string) {
|
|
|
|
transformationWrapper((value, selectionStart) => {
|
|
|
|
let newValue = "";
|
|
|
|
newValue += value.slice(0, selectionStart);
|
|
|
|
newValue += prepend;
|
|
|
|
newValue += value.slice(selectionStart);
|
|
|
|
|
|
|
|
return { prependLength: prepend.length, transformedValue: newValue };
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function appendDoc(append: string) {
|
|
|
|
transformationWrapper((value) => {
|
2022-05-27 11:17:37 +00:00
|
|
|
const newValue = value + append;
|
2022-05-27 11:10:19 +00:00
|
|
|
return { prependLength: 0, transformedValue: newValue };
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function transformationWrapper(
|
|
|
|
transformation: (
|
|
|
|
value: string,
|
|
|
|
selectionStart: number,
|
|
|
|
selectedEnd: number
|
|
|
|
) => { prependLength: number; transformedValue: string }
|
|
|
|
) {
|
|
|
|
const textarea = document.querySelector(
|
|
|
|
"#editorTextArea"
|
|
|
|
) as HTMLTextAreaElement;
|
|
|
|
const { value, selectionStart, selectionEnd } = textarea;
|
|
|
|
|
|
|
|
const { prependLength, transformedValue } = transformation(
|
|
|
|
value,
|
|
|
|
selectionStart,
|
|
|
|
selectionEnd
|
|
|
|
);
|
|
|
|
|
|
|
|
textarea.value = transformedValue;
|
|
|
|
handleInput(textarea.value);
|
|
|
|
|
|
|
|
textarea.focus();
|
|
|
|
textarea.selectionStart = selectionStart + prependLength;
|
|
|
|
textarea.selectionEnd = selectionEnd + prependLength;
|
2022-04-04 09:08:41 +00:00
|
|
|
}
|
2022-02-17 16:55:44 +00:00
|
|
|
|
|
|
|
const contentPanel = (
|
2022-06-15 05:33:20 +00:00
|
|
|
<ContentPanel width={ContentPanelWidthSizes.Full}>
|
2022-04-04 09:08:41 +00:00
|
|
|
<Popup setState={setConverterOpened} state={converterOpened}>
|
|
|
|
<div className="text-center">
|
|
|
|
<h2 className="mt-4">Convert HTML to markdown</h2>
|
|
|
|
<p>
|
|
|
|
Copy and paste any HTML content (content from web pages) here.{" "}
|
|
|
|
<br />
|
|
|
|
The text will immediatly be converted to valid Markdown.
|
|
|
|
<br />
|
|
|
|
You can then copy the converted text and paste it anywhere you want
|
|
|
|
in the editor
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<textarea
|
|
|
|
readOnly
|
|
|
|
id="htmlMdTextArea"
|
|
|
|
title="Ouput textarea"
|
|
|
|
onPaste={(event) => {
|
|
|
|
const turndownService = new TurndownService({
|
|
|
|
headingStyle: "atx",
|
|
|
|
codeBlockStyle: "fenced",
|
|
|
|
bulletListMarker: "-",
|
|
|
|
emDelimiter: "_",
|
|
|
|
strongDelimiter: "**",
|
|
|
|
});
|
|
|
|
|
|
|
|
let paste = event.clipboardData.getData("text/html");
|
|
|
|
paste = paste.replace(/<!--.*?-->/u, "");
|
|
|
|
paste = turndownService.turndown(paste);
|
|
|
|
paste = paste.replace(/<!--.*?-->/u, "");
|
|
|
|
|
|
|
|
const target = event.target as HTMLTextAreaElement;
|
|
|
|
target.value = paste;
|
|
|
|
target.select();
|
|
|
|
event.preventDefault();
|
|
|
|
}}
|
2022-06-10 23:19:19 +00:00
|
|
|
className="h-[50vh] w-[50vw] mobile:w-[75vw]"
|
2022-04-04 09:08:41 +00:00
|
|
|
/>
|
|
|
|
</Popup>
|
2022-05-27 11:10:19 +00:00
|
|
|
|
2022-05-21 11:18:57 +00:00
|
|
|
<div className="mb-4 flex flex-row gap-2">
|
2022-05-27 11:10:19 +00:00
|
|
|
<ToolTip
|
|
|
|
content={
|
|
|
|
<div className="grid gap-2">
|
|
|
|
<h3 className="text-lg">Headers</h3>
|
|
|
|
<Button onClick={() => preline("# ")} text={"H1"} />
|
|
|
|
<Button onClick={() => preline("## ")} text={"H2"} />
|
|
|
|
<Button onClick={() => preline("### ")} text={"H3"} />
|
|
|
|
<Button onClick={() => preline("#### ")} text={"H4"} />
|
|
|
|
<Button onClick={() => preline("##### ")} text={"H5"} />
|
|
|
|
<Button onClick={() => preline("###### ")} text={"H6"} />
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<Button icon={Icon.Title} />
|
|
|
|
</ToolTip>
|
|
|
|
|
|
|
|
<ToolTip
|
|
|
|
placement="bottom"
|
|
|
|
content={<h3 className="text-lg">Toggle Bold</h3>}
|
|
|
|
>
|
|
|
|
<Button onClick={() => toggleWrap("**")} icon={Icon.FormatBold} />
|
|
|
|
</ToolTip>
|
|
|
|
|
|
|
|
<ToolTip
|
|
|
|
placement="bottom"
|
|
|
|
content={<h3 className="text-lg">Toggle Italic</h3>}
|
|
|
|
>
|
|
|
|
<Button onClick={() => toggleWrap("_")} icon={Icon.FormatItalic} />
|
|
|
|
</ToolTip>
|
|
|
|
|
2022-04-04 09:08:41 +00:00
|
|
|
<ToolTip
|
|
|
|
placement="bottom"
|
|
|
|
content={
|
|
|
|
<>
|
2022-05-27 11:10:19 +00:00
|
|
|
<h3 className="text-lg">Toggle Inline Code</h3>
|
2022-04-04 09:08:41 +00:00
|
|
|
<p>
|
2022-05-27 11:10:19 +00:00
|
|
|
Makes the text monospace (like text from a computer terminal).
|
|
|
|
Usually used for stylistic purposes in transcripts.
|
2022-04-04 09:08:41 +00:00
|
|
|
</p>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
>
|
2022-05-27 11:10:19 +00:00
|
|
|
<Button onClick={() => toggleWrap("`")} icon={Icon.Code} />
|
2022-04-04 09:08:41 +00:00
|
|
|
</ToolTip>
|
2022-05-27 11:10:19 +00:00
|
|
|
|
2022-04-04 09:08:41 +00:00
|
|
|
<ToolTip
|
|
|
|
placement="bottom"
|
|
|
|
content={
|
|
|
|
<>
|
2022-05-27 11:10:19 +00:00
|
|
|
<h3 className="text-lg">Insert footnote</h3>
|
|
|
|
<p>When inserted “x”</p>
|
2022-04-04 09:08:41 +00:00
|
|
|
</>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<Button
|
|
|
|
onClick={() => {
|
2022-05-27 11:10:19 +00:00
|
|
|
insert("[^x]");
|
|
|
|
appendDoc("\n\n[^x]: This is a footnote.");
|
2022-04-04 09:08:41 +00:00
|
|
|
}}
|
2022-05-27 11:10:19 +00:00
|
|
|
icon={Icon.Superscript}
|
2022-05-22 14:24:16 +00:00
|
|
|
/>
|
2022-04-04 09:08:41 +00:00
|
|
|
</ToolTip>
|
2022-05-27 11:10:19 +00:00
|
|
|
|
2022-04-04 09:08:41 +00:00
|
|
|
<ToolTip
|
|
|
|
placement="bottom"
|
2022-05-27 11:10:19 +00:00
|
|
|
content={
|
|
|
|
<>
|
|
|
|
<h3 className="text-lg">Transcripts</h3>
|
|
|
|
<p>
|
|
|
|
Use this to create dialogues and transcripts. Start by adding a
|
|
|
|
container, then add transcript speech line within.
|
|
|
|
</p>
|
|
|
|
<div className="grid gap-2">
|
|
|
|
<ToolTip
|
|
|
|
placement="right"
|
|
|
|
content={
|
|
|
|
<>
|
|
|
|
<h3 className="text-lg">Transcript container</h3>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<Button
|
|
|
|
onClick={() => wrap("Transcript", {}, true)}
|
|
|
|
icon={Icon.AddBox}
|
|
|
|
/>
|
|
|
|
</ToolTip>
|
|
|
|
<ToolTip
|
|
|
|
placement="right"
|
|
|
|
content={
|
|
|
|
<>
|
|
|
|
<h3 className="text-lg">Transcript speech line</h3>
|
|
|
|
<p>
|
|
|
|
Use to add a dialogue/transcript line. Change the{" "}
|
|
|
|
<kbd>name</kbd> property to chang the name of the
|
|
|
|
speaker
|
|
|
|
</p>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<Button
|
|
|
|
onClick={() => wrap("Line", { name: "speaker" })}
|
|
|
|
icon={Icon.RecordVoiceOver}
|
|
|
|
/>
|
|
|
|
</ToolTip>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
}
|
2022-04-04 09:08:41 +00:00
|
|
|
>
|
2022-05-27 11:10:19 +00:00
|
|
|
<Button icon={Icon.RecordVoiceOver} />
|
2022-04-04 09:08:41 +00:00
|
|
|
</ToolTip>
|
|
|
|
|
|
|
|
<ToolTip
|
|
|
|
placement="bottom"
|
|
|
|
content={<h3 className="text-lg">Inset box</h3>}
|
|
|
|
>
|
|
|
|
<Button
|
2022-05-27 11:10:19 +00:00
|
|
|
onClick={() => wrap("InsetBox", {}, true)}
|
2022-05-22 14:24:16 +00:00
|
|
|
icon={Icon.CheckBoxOutlineBlank}
|
|
|
|
/>
|
2022-04-04 09:08:41 +00:00
|
|
|
</ToolTip>
|
|
|
|
<ToolTip
|
|
|
|
placement="bottom"
|
|
|
|
content={<h3 className="text-lg">Scene break</h3>}
|
|
|
|
>
|
2022-05-27 11:10:19 +00:00
|
|
|
<Button onClick={() => insert("\n* * *\n")} icon={Icon.MoreHoriz} />
|
2022-04-04 09:08:41 +00:00
|
|
|
</ToolTip>
|
|
|
|
<ToolTip
|
|
|
|
content={
|
|
|
|
<div className="flex flex-col place-items-center gap-2">
|
2022-05-27 11:10:19 +00:00
|
|
|
<h3 className="text-lg">Links</h3>
|
|
|
|
<ToolTip
|
|
|
|
placement="right"
|
|
|
|
content={
|
|
|
|
<>
|
|
|
|
<h3 className="text-lg">External Link</h3>
|
|
|
|
<p className="text-xs">
|
|
|
|
Provides a link to another webpage / website
|
|
|
|
</p>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<Button
|
|
|
|
onClick={() => insert("[Link name](https://domain.com)")}
|
|
|
|
icon={Icon.Link}
|
|
|
|
text={"External"}
|
|
|
|
/>
|
|
|
|
</ToolTip>
|
|
|
|
|
2022-04-04 09:08:41 +00:00
|
|
|
<ToolTip
|
|
|
|
placement="right"
|
|
|
|
content={
|
|
|
|
<>
|
|
|
|
<h3 className="text-lg">Intralink</h3>
|
|
|
|
<p className="text-xs">
|
|
|
|
Interlinks are used to add links to a header within the
|
|
|
|
same document
|
|
|
|
</p>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<Button
|
2022-05-27 11:10:19 +00:00
|
|
|
onClick={() => wrap("IntraLink", {})}
|
2022-05-22 14:24:16 +00:00
|
|
|
icon={Icon.Link}
|
2022-05-27 11:10:19 +00:00
|
|
|
text={"Internal"}
|
2022-05-22 14:24:16 +00:00
|
|
|
/>
|
2022-04-04 09:08:41 +00:00
|
|
|
</ToolTip>
|
|
|
|
<ToolTip
|
|
|
|
placement="right"
|
|
|
|
content={
|
|
|
|
<>
|
|
|
|
<h3 className="text-lg">Intralink (with target)</h3>{" "}
|
|
|
|
<p className="text-xs">
|
|
|
|
Use this one if you want the intralink text to be
|
|
|
|
different from the target header’s name.
|
|
|
|
</p>
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<Button
|
2022-05-27 11:10:19 +00:00
|
|
|
onClick={() => wrap("IntraLink", { target: "target" })}
|
2022-05-22 14:24:16 +00:00
|
|
|
icon={Icon.Link}
|
2022-05-27 11:10:19 +00:00
|
|
|
text="Internal (w/ target)"
|
2022-05-22 14:24:16 +00:00
|
|
|
/>
|
2022-04-04 09:08:41 +00:00
|
|
|
</ToolTip>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
>
|
2022-05-22 14:24:16 +00:00
|
|
|
<Button icon={Icon.Link} />
|
2022-04-04 09:08:41 +00:00
|
|
|
</ToolTip>
|
|
|
|
|
|
|
|
<ToolTip
|
|
|
|
placement="bottom"
|
|
|
|
content={<h3 className="text-lg">Player’s name placeholder</h3>}
|
|
|
|
>
|
2022-05-27 11:10:19 +00:00
|
|
|
<Button onClick={() => insert("<player>")} icon={Icon.Person} />
|
2022-04-04 09:08:41 +00:00
|
|
|
</ToolTip>
|
|
|
|
|
|
|
|
<ToolTip
|
|
|
|
placement="bottom"
|
|
|
|
content={<h3 className="text-lg">Open HTML Converter</h3>}
|
|
|
|
>
|
|
|
|
<Button
|
|
|
|
onClick={() => {
|
|
|
|
setConverterOpened(true);
|
|
|
|
}}
|
2022-05-22 14:24:16 +00:00
|
|
|
icon={Icon.Html}
|
|
|
|
/>
|
2022-04-04 09:08:41 +00:00
|
|
|
</ToolTip>
|
|
|
|
</div>
|
2022-02-17 16:55:44 +00:00
|
|
|
|
2022-02-17 18:49:28 +00:00
|
|
|
<div className="grid grid-cols-2 gap-8">
|
2022-02-17 16:55:44 +00:00
|
|
|
<div>
|
|
|
|
<h2>Editor</h2>
|
|
|
|
<textarea
|
|
|
|
id="editorTextArea"
|
2022-04-04 09:08:41 +00:00
|
|
|
onInput={(event) => {
|
|
|
|
const textarea = event.target as HTMLTextAreaElement;
|
|
|
|
handleInput(textarea.value);
|
|
|
|
}}
|
2022-06-10 23:19:19 +00:00
|
|
|
className="h-[70vh] w-full rounded-xl bg-mid !bg-opacity-40 p-8
|
2022-06-12 11:54:57 +00:00
|
|
|
font-mono text-black outline-none"
|
2022-02-17 18:49:28 +00:00
|
|
|
value={markdown}
|
2022-03-07 14:50:00 +00:00
|
|
|
title="Input textarea"
|
2022-02-17 18:49:28 +00:00
|
|
|
/>
|
2022-02-17 16:55:44 +00:00
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<h2>Preview</h2>
|
2022-05-21 11:18:57 +00:00
|
|
|
<div className="h-[70vh] overflow-scroll rounded-xl bg-mid bg-opacity-40 p-8">
|
2022-04-04 09:08:41 +00:00
|
|
|
<Markdawn className="w-full" text={markdown} />
|
2022-02-17 16:55:44 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-05-27 11:10:19 +00:00
|
|
|
|
|
|
|
<div className="mt-8">
|
|
|
|
<TOC text={markdown} />
|
|
|
|
</div>
|
2022-02-17 16:55:44 +00:00
|
|
|
</ContentPanel>
|
|
|
|
);
|
2022-02-17 18:49:28 +00:00
|
|
|
return (
|
|
|
|
<AppLayout
|
2022-02-24 03:50:00 +00:00
|
|
|
navTitle="Markdawn Editor"
|
2022-02-17 18:49:28 +00:00
|
|
|
contentPanel={contentPanel}
|
2022-03-07 14:50:00 +00:00
|
|
|
{...props}
|
2022-02-17 18:49:28 +00:00
|
|
|
/>
|
|
|
|
);
|
2022-02-17 16:55:44 +00:00
|
|
|
}
|
|
|
|
|
2022-03-27 15:01:14 +00:00
|
|
|
export async function getStaticProps(
|
|
|
|
context: GetStaticPropsContext
|
2022-04-03 08:34:21 +00:00
|
|
|
): Promise<{ notFound: boolean } | { props: Props }> {
|
|
|
|
const props: Props = {
|
2022-03-07 14:50:00 +00:00
|
|
|
...(await getAppStaticProps(context)),
|
|
|
|
};
|
|
|
|
return {
|
|
|
|
props: props,
|
|
|
|
};
|
2022-03-27 15:01:14 +00:00
|
|
|
}
|