forked from github/plane
e1ae0d3b56
* remirror instances commented out to avoid prosemirror conflicts * styles migrated for remirror to tiptap transition * added bubblemenu support with extensions * fixed css for task lists and code with syntax highlighting * added support for slash command * fixed bubble menu to match styles and added better seperation in UI * saving with debounce logic added and it's stored in backend * added migration support by updating to html * Image uploads done * improved file structure and delete image function implemented * Integrated tiptap with Issue Modal * added additional props and Tiptap Integration with Comments * added tiptap integration with user activity feeds * added ref control support and bubble menu support for readonly editor * added tiptap support for plane pages * added tiptap support to gpt assistant modal (yet to be tested) * removed remirror instances and cleaned up code * improved code structure for extracting props in Tiptap * fixing ts errors for next build * fixing node ts error for Horizontal Rule * added ts fix for node types * temp fix * temp fix * added min height for issue description in modal * added resolutions to prosemirror-model version * trying pnpm overrides * explicitly added prosemirror deps * bugfixes * removed extra gap at the top and moved saved indicator to the bottom * fix: slash command scroll position * chore: update custom css variables * matched theme colours * fixed gpt-assistant modal * updated yarn lock * added debounced updates for the title and removed saved state after timeout * added css animations for saved state * build fixes and remove remirror instances * minor commenting fixes --------- Co-authored-by: Palanikannan1437 <73993394+Palanikannan1437@users.noreply.github.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
121 lines
3.2 KiB
TypeScript
121 lines
3.2 KiB
TypeScript
// @ts-nocheck
|
|
import { EditorState, Plugin, PluginKey } from "@tiptap/pm/state";
|
|
import { Decoration, DecorationSet, EditorView } from "@tiptap/pm/view";
|
|
import fileService from "services/file.service";
|
|
|
|
const uploadKey = new PluginKey("upload-image");
|
|
|
|
const UploadImagesPlugin = () =>
|
|
new Plugin({
|
|
key: uploadKey,
|
|
state: {
|
|
init() {
|
|
return DecorationSet.empty;
|
|
},
|
|
apply(tr, set) {
|
|
set = set.map(tr.mapping, tr.doc);
|
|
// See if the transaction adds or removes any placeholders
|
|
const action = tr.getMeta(uploadKey);
|
|
if (action && action.add) {
|
|
const { id, pos, src } = action.add;
|
|
|
|
const placeholder = document.createElement("div");
|
|
placeholder.setAttribute("class", "img-placeholder");
|
|
const image = document.createElement("img");
|
|
image.setAttribute(
|
|
"class",
|
|
"opacity-10 rounded-lg border border-custom-border-300",
|
|
);
|
|
image.src = src;
|
|
placeholder.appendChild(image);
|
|
const deco = Decoration.widget(pos + 1, placeholder, {
|
|
id,
|
|
});
|
|
set = set.add(tr.doc, [deco]);
|
|
} else if (action && action.remove) {
|
|
set = set.remove(set.find(undefined, undefined, (spec) => spec.id == action.remove.id));
|
|
}
|
|
return set;
|
|
},
|
|
},
|
|
props: {
|
|
decorations(state) {
|
|
return this.getState(state);
|
|
},
|
|
},
|
|
});
|
|
|
|
export default UploadImagesPlugin;
|
|
|
|
function findPlaceholder(state: EditorState, id: {}) {
|
|
const decos = uploadKey.getState(state);
|
|
const found = decos.find(
|
|
undefined,
|
|
undefined,
|
|
(spec: { id: number | undefined }) => spec.id == id
|
|
);
|
|
return found.length ? found[0].from : null;
|
|
}
|
|
|
|
export async function startImageUpload(file: File, view: EditorView, pos: number) {
|
|
if (!file.type.includes("image/")) {
|
|
return;
|
|
} else if (file.size / 1024 / 1024 > 20) {
|
|
return;
|
|
}
|
|
|
|
const id = {};
|
|
|
|
const tr = view.state.tr;
|
|
if (!tr.selection.empty) tr.deleteSelection();
|
|
|
|
const reader = new FileReader();
|
|
reader.readAsDataURL(file);
|
|
reader.onload = () => {
|
|
tr.setMeta(uploadKey, {
|
|
add: {
|
|
id,
|
|
pos,
|
|
src: reader.result,
|
|
},
|
|
});
|
|
view.dispatch(tr);
|
|
};
|
|
|
|
const src = await UploadImageHandler(file);
|
|
const { schema } = view.state;
|
|
pos = findPlaceholder(view.state, id);
|
|
|
|
if (pos == null) return;
|
|
const imageSrc = typeof src === "object" ? reader.result : src;
|
|
|
|
const node = schema.nodes.image.create({ src: imageSrc });
|
|
const transaction = view.state.tr
|
|
.replaceWith(pos, pos, node)
|
|
.setMeta(uploadKey, { remove: { id } });
|
|
view.dispatch(transaction);
|
|
}
|
|
|
|
const UploadImageHandler = (file: File): Promise<string> => {
|
|
try {
|
|
const formData = new FormData();
|
|
formData.append("asset", file);
|
|
formData.append("attributes", JSON.stringify({}));
|
|
|
|
return new Promise(async (resolve, reject) => {
|
|
const imageUrl = await fileService
|
|
.uploadFile("plane", formData)
|
|
.then((response) => response.asset);
|
|
|
|
const image = new Image();
|
|
image.src = imageUrl;
|
|
image.onload = () => {
|
|
resolve(imageUrl);
|
|
};
|
|
});
|
|
} catch (error) {
|
|
console.log(error);
|
|
return Promise.reject(error);
|
|
}
|
|
};
|