[WEB-1682] refactor: editor code splitting (#4893)
* refactor: lite and rich text editors * refactor: document editor migration * fix: add missing css import * refactor: issue embed widget splitting * chore: remove extensions folder from ee * chore: update web ee folder structure * fix: build errors --------- Co-authored-by: Satish Gandham <satish.iitg@gmail.com>
This commit is contained in:
parent
367ccba17e
commit
dcdd1ef065
256 changed files with 1027 additions and 2401 deletions
|
|
@ -1,12 +1,18 @@
|
|||
import React, { useCallback, useEffect, useMemo, useState } from "react";
|
||||
import useSWR from "swr";
|
||||
// editor
|
||||
import { applyUpdates, mergeUpdates, proseMirrorJSONToBinaryString } from "@plane/document-editor";
|
||||
import { EditorRefApi, generateJSONfromHTML } from "@plane/editor-core";
|
||||
import {
|
||||
EditorRefApi,
|
||||
applyUpdates,
|
||||
generateJSONfromHTML,
|
||||
mergeUpdates,
|
||||
proseMirrorJSONToBinaryString,
|
||||
} from "@plane/editor";
|
||||
// hooks
|
||||
import useReloadConfirmations from "@/hooks/use-reload-confirmation";
|
||||
// services
|
||||
import { ProjectPageService } from "@/services/page";
|
||||
// store
|
||||
import { IPage } from "@/store/pages/page";
|
||||
const projectPageService = new ProjectPageService();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue