refactor(infra): move initEmptyPage (#4135)

This commit is contained in:
Alex Yang
2023-09-02 22:19:43 -07:00
committed by GitHub
parent c3cca85184
commit d0e8a1f0df
9 changed files with 26 additions and 22 deletions
-14
View File
@@ -1,14 +0,0 @@
import type { Page } from '@blocksuite/store';
/**
* @deprecated
*/
export async function initEmptyPage(page: Page, title?: string) {
await page.waitForLoaded();
const pageBlockId = page.addBlock('affine:page', {
title: new page.Text(title || ''),
});
page.addBlock('affine:surface', {}, pageBlockId);
const noteBlockId = page.addBlock('affine:note', {}, pageBlockId);
page.addBlock('affine:paragraph', {}, noteBlockId);
}