mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-01 22:29:44 +08:00
49 lines
1.4 KiB
TypeScript
49 lines
1.4 KiB
TypeScript
import type { Page, Workspace } from '@blocksuite/store';
|
|
import { type Atom, atom, useAtomValue } from 'jotai';
|
|
|
|
import { useBlockSuiteWorkspacePage } from './use-block-suite-workspace-page';
|
|
|
|
const weakMap = new WeakMap<Page, Atom<string[]>>();
|
|
function getPageReferences(page: Page): string[] {
|
|
// todo: is there a way to use page indexer to get all references?
|
|
return ['affine:paragraph', 'affine:list', 'affine:database']
|
|
.flatMap(f => page.getBlockByFlavour(f))
|
|
.flatMap(b => b.text?.toDelta())
|
|
.map(v => v?.attributes?.reference?.pageId)
|
|
.filter(Boolean);
|
|
}
|
|
|
|
const getPageReferencesAtom = (page: Page | null) => {
|
|
if (!page) {
|
|
return atom([]);
|
|
}
|
|
|
|
if (!weakMap.has(page)) {
|
|
const baseAtom = atom<string[]>([]);
|
|
baseAtom.onMount = set => {
|
|
const disposables = [
|
|
page.slots.ready.on(() => {
|
|
set(getPageReferences(page));
|
|
}),
|
|
page.slots.yUpdated.on(() => {
|
|
set(getPageReferences(page));
|
|
}),
|
|
];
|
|
set(getPageReferences(page));
|
|
return () => {
|
|
disposables.forEach(disposable => disposable.dispose());
|
|
};
|
|
};
|
|
weakMap.set(page, baseAtom);
|
|
}
|
|
return weakMap.get(page) as Atom<string[]>;
|
|
};
|
|
|
|
export function useBlockSuitePageReferences(
|
|
blockSuiteWorkspace: Workspace,
|
|
pageId: string
|
|
): string[] {
|
|
const page = useBlockSuiteWorkspacePage(blockSuiteWorkspace, pageId);
|
|
return useAtomValue(getPageReferencesAtom(page));
|
|
}
|