mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-19 20:21:37 +03:00
fix page title tranform
This commit is contained in:
parent
e50502417b
commit
c2edd93c72
@ -86,8 +86,9 @@ export const PageView: FC<CreateView> = ({ block, editor }) => {
|
|||||||
alwaysShowPlaceholder
|
alwaysShowPlaceholder
|
||||||
ref={textRef}
|
ref={textRef}
|
||||||
className={'title'}
|
className={'title'}
|
||||||
supportMarkdown={true}
|
supportMarkdown={false}
|
||||||
handleEnter={onTextEnter}
|
handleEnter={onTextEnter}
|
||||||
|
handleConvert={() => {}}
|
||||||
placeholder={'Untitled'}
|
placeholder={'Untitled'}
|
||||||
block={block}
|
block={block}
|
||||||
editor={editor}
|
editor={editor}
|
||||||
|
@ -82,6 +82,11 @@ export const CommandMenu = ({ editor, hooks, style }: CommandMenuProps) => {
|
|||||||
const checkIfShowCommandMenu = useCallback(
|
const checkIfShowCommandMenu = useCallback(
|
||||||
async (event: React.KeyboardEvent<HTMLDivElement>) => {
|
async (event: React.KeyboardEvent<HTMLDivElement>) => {
|
||||||
const { type, anchorNode } = editor.selection.currentSelectInfo;
|
const { type, anchorNode } = editor.selection.currentSelectInfo;
|
||||||
|
// console.log(await editor.getBlockById(anchorNode.id));
|
||||||
|
let activeBlock = await editor.getBlockById(anchorNode.id);
|
||||||
|
if (activeBlock.type === Protocol.Block.Type.page) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (event.key === '/' && type === 'Range') {
|
if (event.key === '/' && type === 'Range') {
|
||||||
if (anchorNode) {
|
if (anchorNode) {
|
||||||
const text = editor.blockHelper.getBlockTextBeforeSelection(
|
const text = editor.blockHelper.getBlockTextBeforeSelection(
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import { useState, useEffect } from 'react';
|
import { useState, useEffect } from 'react';
|
||||||
|
import { Protocol } from '@toeverything/datasource/db-service';
|
||||||
import {
|
import {
|
||||||
MuiClickAwayListener as ClickAwayListener,
|
MuiClickAwayListener as ClickAwayListener,
|
||||||
MuiGrow as Grow,
|
MuiGrow as Grow,
|
||||||
@ -22,8 +23,14 @@ export const InlineMenuContainer = ({ editor }: InlineMenuContainerProps) => {
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
// const unsubscribe = editor.selection.onSelectionChange(info => {
|
// const unsubscribe = editor.selection.onSelectionChange(info => {
|
||||||
const unsubscribe = editor.selection.onSelectEnd(info => {
|
const unsubscribe = editor.selection.onSelectEnd(async info => {
|
||||||
const { type, browserSelection, anchorNode } = info;
|
const { type, browserSelection, anchorNode } = info;
|
||||||
|
if (anchorNode) {
|
||||||
|
let activeBlock = await editor.getBlockById(anchorNode.id);
|
||||||
|
if (activeBlock.type === Protocol.Block.Type.page) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
if (
|
if (
|
||||||
type === 'None' ||
|
type === 'None' ||
|
||||||
!anchorNode ||
|
!anchorNode ||
|
||||||
|
Loading…
Reference in New Issue
Block a user