Skip to content

Commit

Permalink
feat(blocks): mobile at menu
Browse files Browse the repository at this point in the history
  • Loading branch information
L-Sun committed Nov 8, 2024
1 parent 099b5d5 commit c89cd88
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
8 changes: 8 additions & 0 deletions packages/common/infra/src/modules/feature-flag/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,14 @@ export const AFFINE_FLAGS = {
configurable: false,
defaultState: isMobile,
},
enable_mobile_linked_doc_menu: {
category: 'blocksuite',
bsFlag: 'enable_mobile_linked_doc_menu',
displayName: 'Mobile Linked Doc Widget',
description: 'Enables the mobile linked doc menu.',
configurable: false,
defaultState: isMobile,
},
enable_snapshot_import_export: {
category: 'affine',
displayName: 'Enable Snapshot Import Export',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ import { JournalService } from '@affine/core/modules/journal';
import { I18n } from '@affine/i18n';
import { track } from '@affine/track';
import type { EditorHost } from '@blocksuite/affine/block-std';
import type { AffineInlineEditor } from '@blocksuite/affine/blocks';
import type {
AffineInlineEditor,
LinkedWidgetConfig,
} from '@blocksuite/affine/blocks';
import { LinkedWidgetUtils } from '@blocksuite/affine/blocks';
import type { DocMeta } from '@blocksuite/affine/store';
import { type FrameworkProvider, WorkspaceService } from '@toeverything/infra';
Expand Down Expand Up @@ -74,7 +77,7 @@ function createNewDocMenuGroup(
// TODO: fix the type
export function createLinkedWidgetConfig(
framework: FrameworkProvider
): Partial<Record<string, unknown>> {
): Partial<LinkedWidgetConfig> {
return {
getMenus: (
query: string,
Expand Down Expand Up @@ -142,6 +145,17 @@ export function createLinkedWidgetConfig(
),
]);
},
mobile: {
useScreenHeight: BUILD_CONFIG.isIOS,
scrollContainer: window,
scrollTopOffset: () => {
const header = document.querySelector('header');
if (!header) return 0;

const { y, height } = header.getBoundingClientRect();
return y + height;
},
},
};
}

Expand Down

0 comments on commit c89cd88

Please sign in to comment.