mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
feat(component): react wrapper for blocksuite editor (#5606)
A React wrapper for blocksuite editor from title/meta/doc/edgless fragments. This PR only **clones** the `AffineEditorContainer`'s existing behavior and make it easier for extension in affine later. fix TOV-315 ### Some core issues: A customized version of `createComponent` from `@lit/react`. The [existing and solutions in the community](https://github.com/lit/lit/issues/4435) does not work well in our case. Alternatively in this PR the approach we have is to create web component instances in React lifecycle and then append them to DOM. However this make it hard to wrap the exported Lit component's using React and therefore we will have an additional wrapper tag for the wrapped web component. To mitigate the migration issue on using React instead of Lit listed on last day, we now use [a proxy to mimic the wrapped React component](https://github.com/toeverything/AFFiNE/pull/5606/files#diff-5b7f0ae7b52a08739d50e78e9ec803c26ff3d3e5437581c692add0de12d3ede5R142-R183) into an `AffineEditorContainer` instance.
This commit is contained in:
340
packages/frontend/component/src/lit-react/create-component.ts
Normal file
340
packages/frontend/component/src/lit-react/create-component.ts
Normal file
@@ -0,0 +1,340 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2018 Google LLC
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
import type React from 'react';
|
||||
|
||||
const DEV_MODE = process.env.NODE_ENV !== 'production';
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
type DistributiveOmit<T, K extends string | number | symbol> = T extends any
|
||||
? K extends keyof T
|
||||
? Omit<T, K>
|
||||
: T
|
||||
: T;
|
||||
type PropsWithoutRef<T> = DistributiveOmit<T, 'ref'>;
|
||||
|
||||
/**
|
||||
* Creates a type to be used for the props of a web component used directly in
|
||||
* React JSX.
|
||||
*
|
||||
* Example:
|
||||
*
|
||||
* ```ts
|
||||
* declare module "react" {
|
||||
* namespace JSX {
|
||||
* interface IntrinsicElements {
|
||||
* 'x-foo': WebComponentProps<XFoo>;
|
||||
* }
|
||||
* }
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
export type WebComponentProps<I extends HTMLElement> = React.DetailedHTMLProps<
|
||||
React.HTMLAttributes<I>,
|
||||
I
|
||||
> &
|
||||
ElementProps<I>;
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/ban-types
|
||||
type EmptyObject = {};
|
||||
|
||||
/**
|
||||
* Type of the React component wrapping the web component. This is the return
|
||||
* type of `createComponent`.
|
||||
*/
|
||||
export type ReactWebComponent<
|
||||
I extends HTMLElement,
|
||||
E extends EventNames = EmptyObject,
|
||||
> = React.ForwardRefExoticComponent<
|
||||
// TODO(augustjk): Remove and use `React.PropsWithoutRef` when
|
||||
// https://github.com/preactjs/preact/issues/4124 is fixed.
|
||||
PropsWithoutRef<ComponentProps<I, E>> & React.RefAttributes<I>
|
||||
>;
|
||||
|
||||
// Props derived from custom element class. Currently has limitations of making
|
||||
// all properties optional and also surfaces life cycle methods in autocomplete.
|
||||
// TODO(augustjk) Consider omitting keyof LitElement to remove "internal"
|
||||
// lifecycle methods or allow user to explicitly provide props.
|
||||
type ElementProps<I> = Partial<Omit<I, keyof HTMLElement>>;
|
||||
|
||||
// Acceptable props to the React component.
|
||||
type ComponentProps<I, E extends EventNames = EmptyObject> = Omit<
|
||||
React.HTMLAttributes<I>,
|
||||
// Prefer type of provided event handler props or those on element over
|
||||
// built-in HTMLAttributes
|
||||
keyof E | keyof ElementProps<I>
|
||||
> &
|
||||
EventListeners<E> &
|
||||
ElementProps<I>;
|
||||
|
||||
/**
|
||||
* Type used to cast an event name with an event type when providing the
|
||||
* `events` option to `createComponent` for better typing of the event handler
|
||||
* prop.
|
||||
*
|
||||
* Example:
|
||||
*
|
||||
* ```ts
|
||||
* const FooComponent = createComponent({
|
||||
* ...
|
||||
* events: {
|
||||
* onfoo: 'foo' as EventName<FooEvent>,
|
||||
* }
|
||||
* });
|
||||
* ```
|
||||
*
|
||||
* `onfoo` prop will have the type `(e: FooEvent) => void`.
|
||||
*/
|
||||
export type EventName<T extends Event = Event> = string & {
|
||||
__eventType: T;
|
||||
};
|
||||
|
||||
// A key value map matching React prop names to event names.
|
||||
type EventNames = Record<string, EventName | string>;
|
||||
|
||||
// A map of expected event listener types based on EventNames.
|
||||
type EventListeners<R extends EventNames> = {
|
||||
[K in keyof R]?: R[K] extends EventName
|
||||
? (e: R[K]['__eventType']) => void
|
||||
: (e: Event) => void;
|
||||
};
|
||||
|
||||
export interface Options<
|
||||
I extends HTMLElement,
|
||||
E extends EventNames = EmptyObject,
|
||||
> {
|
||||
react: typeof React;
|
||||
tagName?: string; // default to `div`
|
||||
elementClass: Constructor<I>;
|
||||
events?: E;
|
||||
displayName?: string;
|
||||
}
|
||||
|
||||
type Constructor<T> = { new (): T };
|
||||
|
||||
const reservedReactProperties = new Set([
|
||||
'children',
|
||||
'localName',
|
||||
'ref',
|
||||
'style',
|
||||
'className',
|
||||
]);
|
||||
|
||||
const listenedEvents = new WeakMap<Element, Map<string, EventListenerObject>>();
|
||||
|
||||
/**
|
||||
* Adds an event listener for the specified event to the given node. In the
|
||||
* React setup, there should only ever be one event listener. Thus, for
|
||||
* efficiency only one listener is added and the handler for that listener is
|
||||
* updated to point to the given listener function.
|
||||
*/
|
||||
const addOrUpdateEventListener = (
|
||||
node: Element,
|
||||
event: string,
|
||||
listener: (event?: Event) => void
|
||||
) => {
|
||||
let events = listenedEvents.get(node);
|
||||
if (events === undefined) {
|
||||
listenedEvents.set(node, (events = new Map()));
|
||||
}
|
||||
let handler = events.get(event);
|
||||
if (listener !== undefined) {
|
||||
// If necessary, add listener and track handler
|
||||
if (handler === undefined) {
|
||||
events.set(event, (handler = { handleEvent: listener }));
|
||||
node.addEventListener(event, handler);
|
||||
// Otherwise just update the listener with new value
|
||||
} else {
|
||||
handler.handleEvent = listener;
|
||||
}
|
||||
// Remove listener if one exists and value is undefined
|
||||
} else if (handler !== undefined) {
|
||||
events.delete(event);
|
||||
node.removeEventListener(event, handler);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Sets properties and events on custom elements. These properties and events
|
||||
* have been pre-filtered so we know they should apply to the custom element.
|
||||
*/
|
||||
const setProperty = <E extends Element>(
|
||||
node: E,
|
||||
name: string,
|
||||
value: unknown,
|
||||
old: unknown,
|
||||
events?: EventNames
|
||||
) => {
|
||||
const event = events?.[name];
|
||||
// Dirty check event value.
|
||||
if (event !== undefined && value !== old) {
|
||||
addOrUpdateEventListener(node, event, value as (e?: Event) => void);
|
||||
return;
|
||||
}
|
||||
// But don't dirty check properties; elements are assumed to do this.
|
||||
node[name as keyof E] = value as E[keyof E];
|
||||
|
||||
// This block is to replicate React's behavior for attributes of native
|
||||
// elements where `undefined` or `null` values result in attributes being
|
||||
// removed.
|
||||
// https://github.com/facebook/react/blob/899cb95f52cc83ab5ca1eb1e268c909d3f0961e7/packages/react-dom-bindings/src/client/DOMPropertyOperations.js#L107-L141
|
||||
//
|
||||
// It's only needed here for native HTMLElement properties that reflect
|
||||
// attributes of the same name but don't have that behavior like "id" or
|
||||
// "draggable".
|
||||
if (
|
||||
(value === undefined || value === null) &&
|
||||
name in HTMLElement.prototype
|
||||
) {
|
||||
node.removeAttribute(name);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Creates a React component for a custom element. Properties are distinguished
|
||||
* from attributes automatically, and events can be configured so they are added
|
||||
* to the custom element as event listeners.
|
||||
*
|
||||
* note from pengx17:
|
||||
* This is a workaround for https://github.com/lit/lit/issues/4435
|
||||
*
|
||||
* Instead of directly using tag names of the custom elements, we create instance and then
|
||||
* append to the container instead. An issue in this workaround is that the custom element
|
||||
* will always be wrapped in an additional tag (the container, e.g. a div).
|
||||
*
|
||||
* @param options An options bag containing the parameters needed to generate a
|
||||
* wrapped web component.
|
||||
*
|
||||
* @param options.react The React module, typically imported from the `react`
|
||||
* npm package.
|
||||
* @param options.tagName The custom element tag name registered via
|
||||
* `customElements.define`.
|
||||
* @param options.elementClass The custom element class registered via
|
||||
* `customElements.define`.
|
||||
* @param options.events An object listing events to which the component can
|
||||
* listen. The object keys are the event property names passed in via React
|
||||
* props and the object values are the names of the corresponding events
|
||||
* generated by the custom element. For example, given `{onactivate:
|
||||
* 'activate'}` an event function may be passed via the component's `onactivate`
|
||||
* prop and will be called when the custom element fires its `activate` event.
|
||||
* @param options.displayName A React component display name, used in debugging
|
||||
* messages. Default value is inferred from the name of custom element class
|
||||
* registered via `customElements.define`.
|
||||
*/
|
||||
export const createComponent = <
|
||||
I extends HTMLElement,
|
||||
E extends EventNames = EmptyObject,
|
||||
>({
|
||||
react: React,
|
||||
tagName = 'div',
|
||||
elementClass,
|
||||
events,
|
||||
displayName,
|
||||
}: Options<I, E>): ReactWebComponent<I, E> => {
|
||||
const eventProps = new Set(Object.keys(events ?? {}));
|
||||
|
||||
if (DEV_MODE) {
|
||||
for (const p of reservedReactProperties) {
|
||||
if (p in elementClass.prototype && !(p in HTMLElement.prototype)) {
|
||||
// Note, this effectively warns only for `ref` since the other
|
||||
// reserved props are on HTMLElement.prototype. To address this
|
||||
// would require crawling down the prototype, which doesn't feel worth
|
||||
// it since implementing these properties on an element is extremely
|
||||
// rare.
|
||||
console.warn(
|
||||
`${tagName} contains property ${p} which is a React reserved ` +
|
||||
`property. It will be used by React and not set on the element.`
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
type Props = ComponentProps<I, E>;
|
||||
|
||||
const ReactComponent = React.forwardRef<I, Props>((props, ref) => {
|
||||
const containerRef = React.useRef<HTMLElement | null>(null);
|
||||
const prevPropsRef = React.useRef<Props | null>(null);
|
||||
const elementRef = React.useRef<I | null>(null);
|
||||
|
||||
// Props to be passed to React.createElement
|
||||
const reactProps: Record<string, unknown> = {
|
||||
'data-lit-react-wrapper': elementClass.name,
|
||||
};
|
||||
const elementProps: Record<string, unknown> = {};
|
||||
|
||||
if (elementRef.current === null) {
|
||||
const element = new elementClass();
|
||||
elementRef.current = element;
|
||||
if (typeof ref === 'function') {
|
||||
ref(elementRef.current);
|
||||
} else if (ref) {
|
||||
ref.current = element;
|
||||
}
|
||||
}
|
||||
|
||||
const element = elementRef.current;
|
||||
|
||||
for (const [k, v] of Object.entries(props)) {
|
||||
if (reservedReactProperties.has(k)) {
|
||||
reactProps[k] = v;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (eventProps.has(k) || k in elementClass.prototype) {
|
||||
elementProps[k] = v;
|
||||
continue;
|
||||
}
|
||||
|
||||
reactProps[k] = v;
|
||||
}
|
||||
|
||||
// This one has no dependency array so it'll run on every re-render.
|
||||
React.useLayoutEffect(() => {
|
||||
if (elementRef.current === null) {
|
||||
return;
|
||||
}
|
||||
for (const prop in elementProps) {
|
||||
setProperty(
|
||||
elementRef.current,
|
||||
prop,
|
||||
props[prop],
|
||||
prevPropsRef.current ? prevPropsRef.current[prop] : undefined,
|
||||
events
|
||||
);
|
||||
}
|
||||
// Note, the spirit of React might be to "unset" any old values that
|
||||
// are no longer included; however, there's no reasonable value to set
|
||||
// them to so we just leave the previous state as is.
|
||||
|
||||
prevPropsRef.current = props;
|
||||
});
|
||||
|
||||
React.useLayoutEffect(() => {
|
||||
const container = containerRef.current;
|
||||
if (!container) {
|
||||
return;
|
||||
}
|
||||
container.append(element);
|
||||
return () => {
|
||||
element.remove();
|
||||
};
|
||||
}, [element]);
|
||||
|
||||
return React.createElement(tagName, {
|
||||
...reactProps,
|
||||
ref: React.useCallback(
|
||||
(node: HTMLElement) => {
|
||||
containerRef.current = node;
|
||||
},
|
||||
[containerRef]
|
||||
),
|
||||
});
|
||||
});
|
||||
|
||||
ReactComponent.displayName = displayName ?? elementClass.name;
|
||||
|
||||
return ReactComponent;
|
||||
};
|
||||
1
packages/frontend/component/src/lit-react/index.ts
Normal file
1
packages/frontend/component/src/lit-react/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export { createComponent as createReactComponentFromLit } from './create-component';
|
||||
3
packages/frontend/component/src/lit-react/readme.md
Normal file
3
packages/frontend/component/src/lit-react/readme.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# our custom @lit/react wrapper
|
||||
|
||||
The official @lit/react createComponent has an issue with properties that accessed in `connectedCallback` lifecycle hook in lit.
|
||||
Reference in New Issue
Block a user