mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 12:55:00 +00:00
feat(core): ai poc (#5317)
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
import { registerTOCPanelComponents } from '@blocksuite/presets';
|
||||
import { registerFramePanelComponents } from '@blocksuite/presets';
|
||||
import {
|
||||
registerFramePanelComponents,
|
||||
registerTOCPanelComponents,
|
||||
} from '@blocksuite/presets';
|
||||
|
||||
registerTOCPanelComponents(components => {
|
||||
for (const compName in components) {
|
||||
|
||||
@@ -12,7 +12,7 @@ import type { Page, Workspace } from '@blocksuite/store';
|
||||
import { useBlockSuitePageMeta } from '@toeverything/hooks/use-block-suite-page-meta';
|
||||
import { useWorkspaceStatus } from '@toeverything/hooks/use-workspace-status';
|
||||
import { appSettingAtom, currentPageIdAtom } from '@toeverything/infra/atom';
|
||||
import { useAtomValue, useSetAtom } from 'jotai';
|
||||
import { useAtom, useAtomValue, useSetAtom } from 'jotai';
|
||||
import {
|
||||
memo,
|
||||
type ReactElement,
|
||||
@@ -43,7 +43,6 @@ import {
|
||||
EditorSidebar,
|
||||
editorSidebarOpenAtom,
|
||||
editorSidebarResizingAtom,
|
||||
editorSidebarStateAtom,
|
||||
editorSidebarWidthAtom,
|
||||
} from './editor-sidebar';
|
||||
|
||||
@@ -64,17 +63,13 @@ const DetailPageLayout = ({
|
||||
footer,
|
||||
sidebar,
|
||||
}: DetailPageLayoutProps): ReactElement => {
|
||||
const sidebarState = useAtomValue(editorSidebarStateAtom);
|
||||
const setSidebarWidth = useSetAtom(editorSidebarWidthAtom);
|
||||
const [width, setWidth] = useAtom(editorSidebarWidthAtom);
|
||||
const { clientBorder } = useAtomValue(appSettingAtom);
|
||||
const setResizing = useSetAtom(editorSidebarResizingAtom);
|
||||
const setOpen = useSetAtom(editorSidebarOpenAtom);
|
||||
const [resizing, setResizing] = useAtom(editorSidebarResizingAtom);
|
||||
const [open, setOpen] = useAtom(editorSidebarOpenAtom);
|
||||
|
||||
return (
|
||||
<div
|
||||
className={styles.root}
|
||||
data-client-border={clientBorder && sidebarState.isOpen}
|
||||
>
|
||||
<div className={styles.root} data-client-border={clientBorder && open}>
|
||||
<div className={styles.mainContainer}>
|
||||
{header}
|
||||
{main}
|
||||
@@ -85,13 +80,13 @@ const DetailPageLayout = ({
|
||||
enableAnimation={false}
|
||||
resizeHandlePos="left"
|
||||
resizeHandleOffset={clientBorder ? 4 : 0}
|
||||
width={sidebarState.width}
|
||||
width={width}
|
||||
className={styles.sidebarContainer}
|
||||
onResizing={setResizing}
|
||||
resizing={sidebarState.resizing}
|
||||
open={sidebarState.isOpen}
|
||||
resizing={resizing}
|
||||
open={open}
|
||||
onOpen={setOpen}
|
||||
onWidthChange={setSidebarWidth}
|
||||
onWidthChange={setWidth}
|
||||
minWidth={MIN_SIDEBAR_WIDTH}
|
||||
maxWidth={MAX_SIDEBAR_WIDTH}
|
||||
>
|
||||
|
||||
@@ -3,6 +3,7 @@ import { assertExists } from '@blocksuite/global/utils';
|
||||
import { atom } from 'jotai';
|
||||
import { selectAtom } from 'jotai/utils';
|
||||
|
||||
import { copilotExtension } from './extensions/copilot';
|
||||
import { framePanelExtension } from './extensions/frame';
|
||||
import { outlineExtension } from './extensions/outline';
|
||||
import type { EditorExtension, EditorExtensionName } from './types';
|
||||
@@ -12,6 +13,7 @@ import type { EditorExtension, EditorExtensionName } from './types';
|
||||
export const extensions: EditorExtension[] = [
|
||||
outlineExtension,
|
||||
framePanelExtension,
|
||||
copilotExtension,
|
||||
];
|
||||
|
||||
export interface EditorSidebarState {
|
||||
@@ -30,8 +32,6 @@ const baseStateAtom = atom<EditorSidebarState>({
|
||||
extensions: extensions, // todo: maybe should be dynamic (by feature flag?)
|
||||
});
|
||||
|
||||
export const editorSidebarStateAtom = atom(get => get(baseStateAtom));
|
||||
|
||||
const isOpenAtom = selectAtom(baseStateAtom, state => state.isOpen);
|
||||
const resizingAtom = selectAtom(baseStateAtom, state => state.resizing);
|
||||
const activeExtensionAtom = selectAtom(
|
||||
@@ -40,9 +40,10 @@ const activeExtensionAtom = selectAtom(
|
||||
);
|
||||
const widthAtom = selectAtom(baseStateAtom, state => state.width);
|
||||
|
||||
export const editorExtensionsAtom = selectAtom(
|
||||
baseStateAtom,
|
||||
state => state.extensions
|
||||
export const editorExtensionsAtom = selectAtom(baseStateAtom, state =>
|
||||
state.extensions.filter(e => {
|
||||
return e.name !== 'copilot' || runtimeConfig.enableCopilot;
|
||||
})
|
||||
);
|
||||
|
||||
// get/set sidebar open state
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
import { useAtomValue } from 'jotai';
|
||||
|
||||
import { editorSidebarStateAtom } from './atoms';
|
||||
import { editorSidebarActiveExtensionAtom } from './atoms';
|
||||
import * as styles from './editor-sidebar.css';
|
||||
|
||||
export const EditorSidebar = () => {
|
||||
const sidebarState = useAtomValue(editorSidebarStateAtom);
|
||||
const Component = sidebarState.activeExtension?.Component;
|
||||
const activeExtension = useAtomValue(editorSidebarActiveExtensionAtom);
|
||||
const Component = activeExtension?.Component;
|
||||
|
||||
return <div className={styles.root}>{Component ? <Component /> : null}</div>;
|
||||
};
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
import { style } from '@vanilla-extract/css';
|
||||
|
||||
export const root = style({
|
||||
display: 'flex',
|
||||
height: '100%',
|
||||
width: '100%',
|
||||
});
|
||||
@@ -0,0 +1,46 @@
|
||||
import { editorContainerAtom } from '@affine/component/block-suite-editor';
|
||||
import { assertExists } from '@blocksuite/global/utils';
|
||||
import { AiIcon } from '@blocksuite/icons';
|
||||
import { CopilotPanel } from '@blocksuite/presets';
|
||||
import { useAtom } from 'jotai';
|
||||
import { useCallback, useRef } from 'react';
|
||||
|
||||
import type { EditorExtension } from '../types';
|
||||
import * as styles from './outline.css';
|
||||
|
||||
// A wrapper for CopilotPanel
|
||||
const EditorCopilotPanel = () => {
|
||||
const copilotPanelRef = useRef<CopilotPanel | null>(null);
|
||||
const [editorContainer] = useAtom(editorContainerAtom);
|
||||
|
||||
const onRefChange = useCallback((container: HTMLDivElement | null) => {
|
||||
if (container) {
|
||||
assertExists(
|
||||
copilotPanelRef.current,
|
||||
'copilot panel should be initialized'
|
||||
);
|
||||
container.append(copilotPanelRef.current);
|
||||
}
|
||||
}, []);
|
||||
|
||||
if (!editorContainer) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!copilotPanelRef.current) {
|
||||
copilotPanelRef.current = new CopilotPanel();
|
||||
}
|
||||
|
||||
if (editorContainer !== copilotPanelRef.current?.editor) {
|
||||
(copilotPanelRef.current as CopilotPanel).editor = editorContainer;
|
||||
// (copilotPanelRef.current as CopilotPanel).fitPadding = [20, 20, 20, 20];
|
||||
}
|
||||
|
||||
return <div className={styles.root} ref={onRefChange} />;
|
||||
};
|
||||
|
||||
export const copilotExtension: EditorExtension = {
|
||||
name: 'copilot',
|
||||
icon: <AiIcon />,
|
||||
Component: EditorCopilotPanel,
|
||||
};
|
||||
@@ -1,4 +1,4 @@
|
||||
export type EditorExtensionName = 'outline' | 'frame';
|
||||
export type EditorExtensionName = 'outline' | 'frame' | 'copilot';
|
||||
|
||||
export interface EditorExtension {
|
||||
name: EditorExtensionName;
|
||||
|
||||
Reference in New Issue
Block a user