Merge pull request #477 from toeverything/develop

Sync to master
This commit is contained in:
zuomeng wang 2022-09-30 18:20:36 +08:00 committed by GitHub
commit 214da734e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 38 additions and 10 deletions

View File

@ -2,7 +2,7 @@
/* eslint-disable @typescript-eslint/naming-convention */
import { useTranslation } from 'react-i18next';
import { Box, Button, Grid, Typography } from '@mui/joy';
import { Box, Button, Grid, styled, Typography } from '@mui/joy';
import GitHubIcon from '@mui/icons-material/GitHub';
import RedditIcon from '@mui/icons-material/Reddit';
@ -361,7 +361,14 @@ export const AFFiNEFooter = ({
>
#OpenSource
</span>
company
<span>software, built with&nbsp;</span>
<StyledLink
href="https://block-suite.com"
target="_blank"
rel="noreferrer"
>
BlockSuite
</StyledLink>
</Typography>
</Box>
</Grid>
@ -383,3 +390,13 @@ export const AFFiNEFooter = ({
</>
);
};
const StyledLink = styled('a')({
fontWeight: '900',
color: '#000',
textDecoration: 'none',
'&:hover': {
textDecoration: 'underline',
},
});

View File

@ -551,9 +551,9 @@ export const Text = forwardRef<ExtendedTextUtils, TextProps>((props, ref) => {
}
}
// markdown interception
if (supportMarkdown && !!handleMarkdown(e)) {
const start_selection = utils.current.getStartSelection();
utils.current.setSelection(start_selection);
if (supportMarkdown && handleMarkdown(e)) {
const endOfMarkdown = utils.current.getEndSelection();
utils.current.setSelection(endOfMarkdown);
e.preventDefault();
return true;
}

View File

@ -46,12 +46,14 @@ export class BlockCommands {
*
* remove block by block id
* @param {string} blockId
* @param onDelete Delete Block's LeftMenuDraggable
* @memberof BlockCommands
*/
public async removeBlock(blockId: string) {
public async removeBlock(blockId: string, onDelete?: () => void) {
const block = await this._editor.getBlockById(blockId);
if (block) {
block.remove();
onDelete();
await block.remove();
}
}

View File

@ -18,17 +18,21 @@ interface LeftMenuProps {
editor?: Virgo;
hooks: PluginHooks;
blockId: string;
onDelete: () => void;
}
export function LeftMenu(props: LeftMenuProps) {
const { editor, anchorEl, hooks, blockId, onClose } = props;
const { editor, anchorEl, hooks, blockId, onClose, onDelete } = props;
const { t } = useTranslation();
const menu: CascaderItemProps[] = useMemo(
() => [
{
title: t('Delete'),
callback: () => {
editor.commands.blockCommands.removeBlock(blockId);
callback: async () => {
await editor.commands.blockCommands.removeBlock(
blockId,
onDelete
);
},
shortcut: 'Del',
icon: <DeleteCashBinIcon />,

View File

@ -165,6 +165,10 @@ export const LeftMenuDraggable = (props: LeftMenuProps) => {
setAnchorEl(currentTarget);
};
const onDelete = useCallback(() => {
setBlock(undefined);
}, []);
const onClose = useCallback(() => setAnchorEl(undefined), [setAnchorEl]);
useEffect(() => {
@ -241,6 +245,7 @@ export const LeftMenuDraggable = (props: LeftMenuProps) => {
editor={props.editor}
hooks={props.hooks}
onClose={onClose}
onDelete={onDelete}
blockId={block.block.id}
>
<Draggable onClick={onClick}>