Skip to content

Commit

Permalink
fix(core): add switch button to switch-to-edgeless notification (#8300)
Browse files Browse the repository at this point in the history
  • Loading branch information
pengx17 committed Sep 19, 2024
1 parent a88e82a commit f6cd029
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { notify } from '@affine/component';
import { AIProvider } from '@affine/core/blocksuite/presets/ai';
import { toggleGeneralAIOnboarding } from '@affine/core/components/affine/ai-onboarding/apis';
import { authAtom, openSettingModalAtom } from '@affine/core/components/atoms';
Expand All @@ -7,7 +6,6 @@ import {
type getCopilotHistoriesQuery,
type RequestOptions,
} from '@affine/graphql';
import { Trans } from '@affine/i18n';
import { track } from '@affine/track';
import { UnauthorizedError } from '@blocksuite/blocks';
import { assertExists } from '@blocksuite/global/utils';
Expand Down Expand Up @@ -480,13 +478,5 @@ Could you make a new website based on these notes and send back just the html fi
}));
});

AIProvider.slots.requestRunInEdgeless.on(() => {
notify.warning({
title: (
<Trans i18nKey="com.affine.ai.action.edgeless-only.dialog-title" />
),
});
});

setupTracker();
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Scrollable, useHasScrollTop } from '@affine/component';
import { notify, Scrollable, useHasScrollTop } from '@affine/component';
import { PageDetailSkeleton } from '@affine/component/page-detail-skeleton';
import type { ChatPanel } from '@affine/core/blocksuite/presets/ai';
import { AIProvider } from '@affine/core/blocksuite/presets/ai';
Expand All @@ -9,6 +9,7 @@ import { useDocMetaHelper } from '@affine/core/components/hooks/use-block-suite-
import { EditorService } from '@affine/core/modules/editor';
import { RecentDocsService } from '@affine/core/modules/quicksearch';
import { ViewService } from '@affine/core/modules/workbench/services/view';
import { useI18n } from '@affine/i18n';
import { RefNodeSlotsProvider } from '@blocksuite/blocks';
import { DisposableGroup } from '@blocksuite/global/utils';
import { AiIcon, FrameIcon, TocIcon, TodayIcon } from '@blocksuite/icons/rc';
Expand Down Expand Up @@ -94,6 +95,8 @@ const DetailPageImpl = memo(function DetailPageImpl() {
// TODO(@eyhn): remove jotai here
const [_, setActiveBlockSuiteEditor] = useActiveBlocksuiteEditor();

const t = useI18n();

useEffect(() => {
if (isActiveView) {
setActiveBlockSuiteEditor(editorContainer);
Expand Down Expand Up @@ -187,6 +190,22 @@ const DetailPageImpl = memo(function DetailPageImpl() {
}
}

disposable.add(
AIProvider.slots.requestRunInEdgeless.on(({ host }) => {
if (host === editorHost) {
notify.warning({
title: t['com.affine.ai.action.edgeless-only.dialog-title'](),
action: {
label: t['Switch'](),
onClick: () => {
editor.setMode('edgeless');
},
},
});
}
})
);

editor.setEditorContainer(editorContainer);
const unbind = editor.bindEditorContainer(
editorContainer,
Expand All @@ -199,7 +218,7 @@ const DetailPageImpl = memo(function DetailPageImpl() {
disposable.dispose();
};
},
[editor, openPage, docCollection.id, jumpToPageBlock]
[editor, openPage, docCollection.id, jumpToPageBlock, t]
);

const [refCallback, hasScrollTop] = useHasScrollTop();
Expand Down

0 comments on commit f6cd029

Please sign in to comment.