diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/_shared/view_title/ViewTitleInput.tsx b/frontend/appflowy_tauri/src/appflowy_app/components/_shared/view_title/ViewTitleInput.tsx
index ff3923109e..2c69bb4d76 100644
--- a/frontend/appflowy_tauri/src/appflowy_app/components/_shared/view_title/ViewTitleInput.tsx
+++ b/frontend/appflowy_tauri/src/appflowy_app/components/_shared/view_title/ViewTitleInput.tsx
@@ -23,7 +23,7 @@ function ViewTitleInput({ value, onChange }: { value: string; onChange?: (value:
autoFocus
value={value}
onInput={onTitleChange}
- className={`min-h-[40px] resize-none text-4xl font-bold leading-[50px] caret-text-title`}
+ className={`min-h-[40px] resize-none text-5xl font-bold leading-[50px] caret-text-title`}
/>
);
}
diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/database/DatabaseTitle.tsx b/frontend/appflowy_tauri/src/appflowy_app/components/database/DatabaseTitle.tsx
index 793e14c2e0..cd94947d8d 100644
--- a/frontend/appflowy_tauri/src/appflowy_app/components/database/DatabaseTitle.tsx
+++ b/frontend/appflowy_tauri/src/appflowy_app/components/database/DatabaseTitle.tsx
@@ -22,7 +22,7 @@ export const DatabaseTitle = () => {
return (
setFilterAnchorEl(null)}
+ transformOrigin={{
+ vertical: 'top',
+ horizontal: 'right',
+ }}
anchorOrigin={{
vertical: 'bottom',
horizontal: 'right',
diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/database/components/database_settings/SortSettings.tsx b/frontend/appflowy_tauri/src/appflowy_app/components/database/components/database_settings/SortSettings.tsx
index 09a0f48129..7f978120df 100644
--- a/frontend/appflowy_tauri/src/appflowy_app/components/database/components/database_settings/SortSettings.tsx
+++ b/frontend/appflowy_tauri/src/appflowy_app/components/database/components/database_settings/SortSettings.tsx
@@ -39,6 +39,10 @@ function SortSettings({ onToggleCollection }: Props) {
open={open}
anchorEl={sortAnchorEl}
onClose={handleClose}
+ transformOrigin={{
+ vertical: 'top',
+ horizontal: 'right',
+ }}
anchorOrigin={{
vertical: 'bottom',
horizontal: 'right',
diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/EditRecord.tsx b/frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/EditRecord.tsx
index b14a3a9783..13f29a7dfc 100644
--- a/frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/EditRecord.tsx
+++ b/frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/EditRecord.tsx
@@ -60,4 +60,4 @@ function EditRecord({ rowId }: Props) {
);
}
-export default React.memo(EditRecord);
+export default EditRecord;
diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/ExpandRecordModal.tsx b/frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/ExpandRecordModal.tsx
index cf3b1878dd..7056cd353d 100644
--- a/frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/ExpandRecordModal.tsx
+++ b/frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/ExpandRecordModal.tsx
@@ -1,10 +1,10 @@
import React, { useState } from 'react';
import { DialogProps, IconButton, Portal } from '@mui/material';
-import DialogContent from '@mui/material/DialogContent';
import Dialog from '@mui/material/Dialog';
import { ReactComponent as DetailsIcon } from '$app/assets/details.svg';
import RecordActions from '$app/components/database/components/edit_record/RecordActions';
import EditRecord from '$app/components/database/components/edit_record/EditRecord';
+import { AFScroller } from '$app/components/_shared/scroller';
interface Props extends DialogProps {
rowId: string;
@@ -25,9 +25,9 @@ function ExpandRecordModal({ open, onClose, rowId }: Props) {
className: 'h-[calc(100%-144px)] w-[80%] max-w-[960px] overflow-visible',
}}
>
-
+
-
+
;
}
-export default React.memo(RecordDocument);
+export default RecordDocument;
diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/editor/command/index.ts b/frontend/appflowy_tauri/src/appflowy_app/components/editor/command/index.ts
index 3fa48ffa5a..557b91f936 100644
--- a/frontend/appflowy_tauri/src/appflowy_app/components/editor/command/index.ts
+++ b/frontend/appflowy_tauri/src/appflowy_app/components/editor/command/index.ts
@@ -11,9 +11,10 @@ import {
Path,
EditorBeforeOptions,
Text,
+ addMark,
} from 'slate';
import { LIST_TYPES, tabBackward, tabForward } from '$app/components/editor/command/tab';
-import { isMarkActive, removeMarks, toggleMark } from '$app/components/editor/command/mark';
+import { getAllMarks, isMarkActive, removeMarks, toggleMark } from '$app/components/editor/command/mark';
import {
deleteFormula,
insertFormula,
@@ -31,6 +32,7 @@ import {
inlineNodeTypes,
FormulaNode,
ImageNode,
+ EditorMarkFormat,
} from '$app/application/document/document.types';
import cloneDeep from 'lodash-es/cloneDeep';
import { generateId } from '$app/components/editor/provider/utils/convert';
@@ -235,6 +237,10 @@ export const CustomEditor = {
},
toggleAlign(editor: ReactEditor, format: string) {
+ const isIncludeRoot = CustomEditor.selectionIncludeRoot(editor);
+
+ if (isIncludeRoot) return;
+
const matchNodes = Array.from(
Editor.nodes(editor, {
// Note: we need to select the text node instead of the element node, otherwise the parent node will be selected
@@ -670,4 +676,40 @@ export const CustomEditor = {
return level;
},
+
+ getLinks(editor: ReactEditor): string[] {
+ const marks = getAllMarks(editor);
+
+ if (!marks) return [];
+
+ return Object.entries(marks)
+ .filter(([key]) => key === 'href')
+ .map(([_, val]) => val as string);
+ },
+
+ extendLineBackward(editor: ReactEditor) {
+ Transforms.move(editor, {
+ unit: 'line',
+ edge: 'focus',
+ reverse: true,
+ });
+ },
+
+ extendLineForward(editor: ReactEditor) {
+ Transforms.move(editor, { unit: 'line', edge: 'focus' });
+ },
+
+ insertPlainText(editor: ReactEditor, text: string) {
+ const [appendText, ...lines] = text.split('\n');
+
+ editor.insertText(appendText);
+ lines.forEach((line) => {
+ editor.insertBreak();
+ editor.insertText(line);
+ });
+ },
+
+ highlight(editor: ReactEditor) {
+ addMark(editor, EditorMarkFormat.BgColor, 'appflowy_them_color_tint5');
+ },
};
diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/editor/command/mark.ts b/frontend/appflowy_tauri/src/appflowy_app/components/editor/command/mark.ts
index 45f3362f53..649eaca564 100644
--- a/frontend/appflowy_tauri/src/appflowy_app/components/editor/command/mark.ts
+++ b/frontend/appflowy_tauri/src/appflowy_app/components/editor/command/mark.ts
@@ -1,6 +1,7 @@
import { ReactEditor } from 'slate-react';
import { Editor, Text, Range, Element } from 'slate';
import { EditorInlineNodeType, EditorMarkFormat } from '$app/application/document/document.types';
+import { CustomEditor } from '$app/components/editor/command/index';
export function toggleMark(
editor: ReactEditor,
@@ -9,6 +10,10 @@ export function toggleMark(
value: string | boolean;
}
) {
+ if (CustomEditor.selectionIncludeRoot(editor)) {
+ return;
+ }
+
const { key, value } = mark;
const isActive = isMarkActive(editor, key);
@@ -48,7 +53,7 @@ export function isMarkActive(editor: ReactEditor, format: EditorMarkFormat | Edi
return marks ? !!marks[format] : false;
}
-function getSelectionTexts(editor: ReactEditor) {
+export function getSelectionTexts(editor: ReactEditor) {
const selection = editor.selection;
if (!selection) return [];
diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/editor/components/blocks/page/Page.tsx b/frontend/appflowy_tauri/src/appflowy_app/components/editor/components/blocks/page/Page.tsx
index 6d04a77c2e..f93cb897ba 100644
--- a/frontend/appflowy_tauri/src/appflowy_app/components/editor/components/blocks/page/Page.tsx
+++ b/frontend/appflowy_tauri/src/appflowy_app/components/editor/components/blocks/page/Page.tsx
@@ -4,7 +4,7 @@ import { EditorElementProps, PageNode } from '$app/application/document/document
export const Page = memo(
forwardRef
>(({ node: _, children, ...attributes }, ref) => {
const className = useMemo(() => {
- return `${attributes.className ?? ''} document-title pb-3 text-4xl font-bold`;
+ return `${attributes.className ?? ''} document-title pb-3 text-5xl font-bold`;
}, [attributes.className]);
return (
diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/editor/components/editor/CustomEditable.tsx b/frontend/appflowy_tauri/src/appflowy_app/components/editor/components/editor/CustomEditable.tsx
index 0f077b82d8..b0bbe0eb28 100644
--- a/frontend/appflowy_tauri/src/appflowy_app/components/editor/components/editor/CustomEditable.tsx
+++ b/frontend/appflowy_tauri/src/appflowy_app/components/editor/components/editor/CustomEditable.tsx
@@ -1,7 +1,9 @@
-import React, { ComponentProps } from 'react';
-import { Editable } from 'slate-react';
+import React, { ComponentProps, useCallback } from 'react';
+import { Editable, useSlate } from 'slate-react';
import Element from './Element';
import { Leaf } from './Leaf';
+import { useShortcuts } from '$app/components/editor/plugins/shortcuts';
+import { useInlineKeyDown } from '$app/components/editor/components/editor/Editor.hooks';
type CustomEditableProps = Omit, 'renderElement' | 'renderLeaf'> &
Partial, 'renderElement' | 'renderLeaf'>> & {
@@ -14,9 +16,21 @@ export function CustomEditable({
renderLeaf = Leaf,
...props
}: CustomEditableProps) {
+ const editor = useSlate();
+ const { onKeyDown: onShortcutsKeyDown } = useShortcuts(editor);
+ const withInlineKeyDown = useInlineKeyDown(editor);
+ const onKeyDown = useCallback(
+ (event: React.KeyboardEvent) => {
+ withInlineKeyDown(event);
+ onShortcutsKeyDown(event);
+ },
+ [onShortcutsKeyDown, withInlineKeyDown]
+ );
+
return (
{
@@ -112,7 +112,7 @@ export function useInlineKeyDown(editor: ReactEditor) {
const { nativeEvent } = e;
if (
- isHotkey('left', nativeEvent) &&
+ createHotkey(HOT_KEY_NAME.LEFT)(nativeEvent) &&
CustomEditor.beforeIsInlineNode(editor, selection, {
unit: 'offset',
})
@@ -122,7 +122,10 @@ export function useInlineKeyDown(editor: ReactEditor) {
return;
}
- if (isHotkey('right', nativeEvent) && CustomEditor.afterIsInlineNode(editor, selection, { unit: 'offset' })) {
+ if (
+ createHotkey(HOT_KEY_NAME.RIGHT)(nativeEvent) &&
+ CustomEditor.afterIsInlineNode(editor, selection, { unit: 'offset' })
+ ) {
e.preventDefault();
Transforms.move(editor, { unit: 'offset' });
return;
diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/editor/components/editor/Editor.tsx b/frontend/appflowy_tauri/src/appflowy_app/components/editor/components/editor/Editor.tsx
index 7b85a36bec..d87dbe3f35 100644
--- a/frontend/appflowy_tauri/src/appflowy_app/components/editor/components/editor/Editor.tsx
+++ b/frontend/appflowy_tauri/src/appflowy_app/components/editor/components/editor/Editor.tsx
@@ -1,13 +1,8 @@
import React, { useCallback } from 'react';
-import {
- useDecorateCodeHighlight,
- useEditor,
- useInlineKeyDown,
-} from '$app/components/editor/components/editor/Editor.hooks';
+import { useDecorateCodeHighlight, useEditor } from '$app/components/editor/components/editor/Editor.hooks';
import { Slate } from 'slate-react';
import { CustomEditable } from '$app/components/editor/components/editor/CustomEditable';
import { SelectionToolbar } from '$app/components/editor/components/tools/selection_toolbar';
-import { useShortcuts } from 'src/appflowy_app/components/editor/plugins/shortcuts';
import { BlockActionsToolbar } from '$app/components/editor/components/tools/block_actions';
import { CircularProgress } from '@mui/material';
@@ -26,8 +21,7 @@ import { LocalEditorProps } from '$app/application/document/document.types';
function Editor({ sharedType, disableFocus, caretColor = 'var(--text-title)' }: LocalEditorProps) {
const { editor, initialValue, handleOnClickEnd, ...props } = useEditor(sharedType);
const decorateCodeHighlight = useDecorateCodeHighlight(editor);
- const { onKeyDown: onShortcutsKeyDown } = useShortcuts(editor);
- const withInlineKeyDown = useInlineKeyDown(editor);
+
const {
selectedBlocks,
decorate: decorateCustomRange,
@@ -47,14 +41,6 @@ function Editor({ sharedType, disableFocus, caretColor = 'var(--text-title)' }:
[decorateCodeHighlight, decorateCustomRange]
);
- const onKeyDown = useCallback(
- (event: React.KeyboardEvent) => {
- withInlineKeyDown(event);
- onShortcutsKeyDown(event);
- },
- [onShortcutsKeyDown, withInlineKeyDown]
- );
-
if (editor.sharedRoot.length === 0) {
return ;
}
@@ -72,7 +58,6 @@ function Editor({ sharedType, disableFocus, caretColor = 'var(--text-title)' }:
}
+
);
}
diff --git a/frontend/appflowy_tauri/src/appflowy_app/components/editor/components/tools/selection_toolbar/actions/align/Align.tsx b/frontend/appflowy_tauri/src/appflowy_app/components/editor/components/tools/selection_toolbar/actions/align/Align.tsx
index 66d2839a96..23917e146b 100644
--- a/frontend/appflowy_tauri/src/appflowy_app/components/editor/components/tools/selection_toolbar/actions/align/Align.tsx
+++ b/frontend/appflowy_tauri/src/appflowy_app/components/editor/components/tools/selection_toolbar/actions/align/Align.tsx
@@ -1,4 +1,4 @@
-import React, { useCallback, useEffect, useMemo, useState } from 'react';
+import React, { useCallback, useMemo, useState } from 'react';
import Tooltip from '@mui/material/Tooltip';
import { ReactComponent as AlignLeftSvg } from '$app/assets/align-left.svg';
import { ReactComponent as AlignCenterSvg } from '$app/assets/align-center.svg';
@@ -6,10 +6,9 @@ import { ReactComponent as AlignRightSvg } from '$app/assets/align-right.svg';
import ActionButton from '$app/components/editor/components/tools/selection_toolbar/actions/_shared/ActionButton';
import { useTranslation } from 'react-i18next';
import { CustomEditor } from '$app/components/editor/command';
-import { ReactEditor, useSlateStatic } from 'slate-react';
+import { useSlateStatic } from 'slate-react';
import { IconButton } from '@mui/material';
import { ReactComponent as MoreSvg } from '$app/assets/more.svg';
-import { createHotkey, HOT_KEY_NAME } from '$app/utils/hotkeys';
export function Align() {
const { t } = useTranslation();
@@ -61,36 +60,6 @@ export function Align() {
}
}, []);
- useEffect(() => {
- const editorDom = ReactEditor.toDOMNode(editor, editor);
- const handleShortcut = (e: KeyboardEvent) => {
- if (createHotkey(HOT_KEY_NAME.ALIGN_LEFT)(e)) {
- e.preventDefault();
- e.stopPropagation();
- CustomEditor.toggleAlign(editor, 'left');
- return;
- }
-
- if (createHotkey(HOT_KEY_NAME.ALIGN_CENTER)(e)) {
- e.preventDefault();
- e.stopPropagation();
- CustomEditor.toggleAlign(editor, 'center');
- return;
- }
-
- if (createHotkey(HOT_KEY_NAME.ALIGN_RIGHT)(e)) {
- e.preventDefault();
- e.stopPropagation();
- CustomEditor.toggleAlign(editor, 'right');
- return;
- }
- };
-
- editorDom.addEventListener('keydown', handleShortcut);
- return () => {
- editorDom.removeEventListener('keydown', handleShortcut);
- };
- }, [editor]);
return (