mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-18 02:26:21 +08:00
fix: add some tips for livedemo
This commit is contained in:
@@ -4,7 +4,7 @@ import {
|
||||
SideBarViewCloseIcon,
|
||||
SideBarViewIcon,
|
||||
} from '@toeverything/components/icons';
|
||||
import { IconButton, styled } from '@toeverything/components/ui';
|
||||
import { IconButton, styled, Tooltip } from '@toeverything/components/ui';
|
||||
import { useTranslation } from '@toeverything/datasource/i18n';
|
||||
import {
|
||||
useCurrentEditors,
|
||||
@@ -51,16 +51,28 @@ export const LayoutHeader = () => {
|
||||
</FlexContainer>
|
||||
<FlexContainer>
|
||||
<StyledHelper>
|
||||
<StyledShare disabled={true}>{t('Share')}</StyledShare>
|
||||
<Tooltip
|
||||
placement="bottom-end"
|
||||
content="Share function coming soon"
|
||||
>
|
||||
<StyledShare disabled={true}>
|
||||
{t('Share')}
|
||||
</StyledShare>
|
||||
</Tooltip>
|
||||
<div style={{ margin: '0px 12px' }}>
|
||||
<IconButton
|
||||
size="large"
|
||||
hoverColor={'transparent'}
|
||||
onClick={handleSearch}
|
||||
disabled={true}
|
||||
<Tooltip
|
||||
placement="bottom-end"
|
||||
content="Search function coming soon"
|
||||
>
|
||||
<SearchIcon />
|
||||
</IconButton>
|
||||
<IconButton
|
||||
size="large"
|
||||
hoverColor={'transparent'}
|
||||
onClick={handleSearch}
|
||||
disabled={true}
|
||||
>
|
||||
<SearchIcon />
|
||||
</IconButton>
|
||||
</Tooltip>
|
||||
</div>
|
||||
|
||||
<IconButton onClick={toggleInfoSidebar} size="large">
|
||||
|
||||
@@ -7,7 +7,20 @@ type CommentsProps = {
|
||||
resolveComment: (blockId: string, commentId: string) => void;
|
||||
};
|
||||
|
||||
export const Comments = ({
|
||||
export const Comments = (props: CommentsProps) => {
|
||||
return <StyledText>Comment coming soon...</StyledText>;
|
||||
};
|
||||
|
||||
const StyledText = styled('div')(({ theme }) => {
|
||||
return {
|
||||
display: 'flex',
|
||||
justifyContent: 'center',
|
||||
color: theme.affine.palette.menu,
|
||||
marginTop: theme.affine.spacing.lgSpacing,
|
||||
};
|
||||
});
|
||||
|
||||
export const BakComments = ({
|
||||
activeCommentId,
|
||||
resolveComment,
|
||||
}: CommentsProps) => {
|
||||
|
||||
Reference in New Issue
Block a user