forked from github/plane
d3b73dc32f
* feat: manual ordering for issues in kanban * refactor: issues folder structure * refactor: modules and states folder structure * refactor: datepicker code * fix: create issue modal bug * feat: custom progress bar added * refactor: created global component for kanban board * refactor: update cycle and module issue create * refactor: return modules created * refactor: integrated global kanban view everywhere * refactor: integrated global list view everywhere * refactor: removed unnecessary api calls * refactor: update nomenclature for consistency * refactor: global select component for issue view * refactor: track cycles and modules for issue * fix: tracking new cycles and modules in activities * feat: segregate api token workspace * fix: workpsace id during token creation * refactor: update model association to cascade on delete * feat: sentry integrated (#235) * feat: sentry integrated * fix: removed unnecessary env variable * fix: update remirror description to save empty string and empty paragraph (#237) * Update README.md * fix: description and comment_json default value to remove warnings * feat: link option in remirror (#240) * feat: link option in remirror * fix: removed link import from remirror toolbar * feat: module and cycle settings under project * fix: module issue assignment * fix: module issue updation and activity logging * fix: typo while creating module issues * fix: string comparison for update operation * fix: ui fixes (#246) * style: shortcut command label bg color change * sidebar shortcut ui fix --------- Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia1001@gmail.com> * fix: update empty passwords to hashed string and add hashing for magic sign in * refactor: remove print logs from back migrations * build(deps): bump django in /apiserver/requirements Bumps [django](https://github.com/django/django) from 3.2.16 to 3.2.17. - [Release notes](https://github.com/django/django/releases) - [Commits](https://github.com/django/django/compare/3.2.16...3.2.17) --- updated-dependencies: - dependency-name: django dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * feat: cycles and modules toggle in settings, refactor: folder structure (#247) * feat: link option in remirror * fix: removed link import from remirror toolbar * refactor: constants folder * refactor: layouts folder structure * fix: issue view context * feat: cycles and modules toggle in settings --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com> Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia1001@gmail.com> Co-authored-by: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com> Co-authored-by: pablohashescobar <118773738+pablohashescobar@users.noreply.github.com> Co-authored-by: sphynxux <122926002+sphynxux@users.noreply.github.com> Co-authored-by: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
210 lines
5.5 KiB
TypeScript
210 lines
5.5 KiB
TypeScript
import { useCallback, FC, useState, useEffect } from "react";
|
|
import { useRouter } from "next/router";
|
|
import { InvalidContentHandler } from "remirror";
|
|
import {
|
|
BoldExtension,
|
|
ItalicExtension,
|
|
CalloutExtension,
|
|
PlaceholderExtension,
|
|
CodeBlockExtension,
|
|
CodeExtension,
|
|
HistoryExtension,
|
|
LinkExtension,
|
|
UnderlineExtension,
|
|
HeadingExtension,
|
|
OrderedListExtension,
|
|
ListItemExtension,
|
|
BulletListExtension,
|
|
ImageExtension,
|
|
DropCursorExtension,
|
|
StrikeExtension,
|
|
MentionAtomExtension,
|
|
FontSizeExtension,
|
|
} from "remirror/extensions";
|
|
import {
|
|
Remirror,
|
|
useRemirror,
|
|
EditorComponent,
|
|
OnChangeJSON,
|
|
OnChangeHTML,
|
|
} from "@remirror/react";
|
|
import { TableExtension } from "@remirror/extension-react-tables";
|
|
// services
|
|
import fileService from "services/file.service";
|
|
// ui
|
|
import { Spinner } from "components/ui";
|
|
// components
|
|
import { RichTextToolbar } from "./toolbar";
|
|
import { MentionAutoComplete } from "./mention-autocomplete";
|
|
import { FloatingLinkToolbar } from "./toolbar/link";
|
|
|
|
export interface IRemirrorRichTextEditor {
|
|
placeholder?: string;
|
|
mentions?: any[];
|
|
tags?: any[];
|
|
onBlur?: (jsonValue: any, htmlValue: any) => void;
|
|
onJSONChange?: (jsonValue: any) => void;
|
|
onHTMLChange?: (htmlValue: any) => void;
|
|
value?: any;
|
|
showToolbar?: boolean;
|
|
editable?: boolean;
|
|
customClassName?: string;
|
|
}
|
|
|
|
const RemirrorRichTextEditor: FC<IRemirrorRichTextEditor> = (props) => {
|
|
const {
|
|
placeholder,
|
|
mentions = [],
|
|
tags = [],
|
|
onBlur = () => {},
|
|
onJSONChange = () => {},
|
|
onHTMLChange = () => {},
|
|
value = "",
|
|
showToolbar = true,
|
|
editable = true,
|
|
customClassName,
|
|
} = props;
|
|
|
|
const [imageLoader, setImageLoader] = useState(false);
|
|
const [jsonValue, setJsonValue] = useState<any>();
|
|
const [htmlValue, setHtmlValue] = useState<any>();
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug } = router.query;
|
|
|
|
// remirror error handler
|
|
const onError: InvalidContentHandler = useCallback(
|
|
({ json, invalidContent, transformers }: any) =>
|
|
// Automatically remove all invalid nodes and marks.
|
|
transformers.remove(json, invalidContent),
|
|
[]
|
|
);
|
|
|
|
const uploadImageHandler = (value: any): any => {
|
|
setImageLoader(true);
|
|
|
|
try {
|
|
const formData = new FormData();
|
|
formData.append("asset", value[0].file);
|
|
formData.append("attributes", JSON.stringify({}));
|
|
|
|
setImageLoader(true);
|
|
|
|
return [
|
|
() =>
|
|
new Promise(async (resolve, reject) => {
|
|
const imageUrl = await fileService
|
|
.uploadFile(workspaceSlug as string, formData)
|
|
.then((response) => response.asset);
|
|
|
|
resolve({
|
|
align: "left",
|
|
alt: "Not Found",
|
|
height: "100%",
|
|
width: "100%",
|
|
src: imageUrl,
|
|
});
|
|
setImageLoader(false);
|
|
}),
|
|
];
|
|
} catch {
|
|
return [];
|
|
}
|
|
};
|
|
|
|
// remirror manager
|
|
const { manager, state } = useRemirror({
|
|
extensions: () => [
|
|
new BoldExtension(),
|
|
new ItalicExtension(),
|
|
new UnderlineExtension(),
|
|
new HeadingExtension({ levels: [1, 2, 3] }),
|
|
new FontSizeExtension({ defaultSize: "16", unit: "px" }),
|
|
new OrderedListExtension(),
|
|
new ListItemExtension(),
|
|
new BulletListExtension({ enableSpine: true }),
|
|
new CalloutExtension({ defaultType: "warn" }),
|
|
new CodeBlockExtension(),
|
|
new CodeExtension(),
|
|
new PlaceholderExtension({ placeholder: placeholder || "Enter text..." }),
|
|
new HistoryExtension(),
|
|
new LinkExtension({ autoLink: true }),
|
|
new ImageExtension({
|
|
enableResizing: true,
|
|
uploadHandler: uploadImageHandler,
|
|
}),
|
|
new DropCursorExtension(),
|
|
new StrikeExtension(),
|
|
new MentionAtomExtension({
|
|
matchers: [
|
|
{ name: "at", char: "@" },
|
|
{ name: "tag", char: "#" },
|
|
],
|
|
}),
|
|
new TableExtension(),
|
|
],
|
|
content: value,
|
|
selection: "start",
|
|
stringHandler: "html",
|
|
onError,
|
|
});
|
|
|
|
const updateState = useCallback(
|
|
(value: any) => {
|
|
// Clear out old state when setting data from outside
|
|
// This prevents e.g. the user from using CTRL-Z to go back to the old state
|
|
manager.view.updateState(manager.createState({ content: value ? value : "" }));
|
|
},
|
|
[manager]
|
|
);
|
|
|
|
useEffect(() => {
|
|
updateState(value);
|
|
}, [updateState, value]);
|
|
|
|
const handleJSONChange = (json: any) => {
|
|
setJsonValue(json);
|
|
onJSONChange(json);
|
|
};
|
|
|
|
const handleHTMLChange = (value: string) => {
|
|
setHtmlValue(value);
|
|
onHTMLChange(value);
|
|
};
|
|
|
|
return (
|
|
<div className="mt-2 mb-4">
|
|
<Remirror
|
|
manager={manager}
|
|
initialContent={state}
|
|
classNames={[`p-4 focus:outline-none ${customClassName}`]}
|
|
editable={editable}
|
|
onBlur={() => {
|
|
onBlur(jsonValue, htmlValue);
|
|
}}
|
|
>
|
|
<div className="rounded-md border">
|
|
{showToolbar && editable && (
|
|
<div className="box-border w-full border-b py-2">
|
|
<RichTextToolbar />
|
|
</div>
|
|
)}
|
|
<EditorComponent />
|
|
{imageLoader && (
|
|
<div className="p-4">
|
|
<Spinner />
|
|
</div>
|
|
)}
|
|
{/* <TableComponents /> */}
|
|
<FloatingLinkToolbar />
|
|
<MentionAutoComplete mentions={mentions} tags={tags} />
|
|
{<OnChangeJSON onChange={handleJSONChange} />}
|
|
{<OnChangeHTML onChange={handleHTMLChange} />}
|
|
</div>
|
|
</Remirror>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default RemirrorRichTextEditor;
|