mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-03 21:13:36 +03:00
fix(core): share-button's label of shared page should be 'shared' (#7486)
close #7427
This commit is contained in:
parent
15042394be
commit
7082f7ea7a
@ -1,12 +1,17 @@
|
|||||||
import { Button } from '@affine/component/ui/button';
|
import { Button } from '@affine/component/ui/button';
|
||||||
import { Divider } from '@affine/component/ui/divider';
|
import { Divider } from '@affine/component/ui/divider';
|
||||||
import { Menu } from '@affine/component/ui/menu';
|
import { Menu } from '@affine/component/ui/menu';
|
||||||
|
import { ShareService } from '@affine/core/modules/share-doc';
|
||||||
import { WorkspaceFlavour } from '@affine/env/workspace';
|
import { WorkspaceFlavour } from '@affine/env/workspace';
|
||||||
import { useI18n } from '@affine/i18n';
|
import { useI18n } from '@affine/i18n';
|
||||||
import { WebIcon } from '@blocksuite/icons/rc';
|
import { WebIcon } from '@blocksuite/icons/rc';
|
||||||
import type { Doc } from '@blocksuite/store';
|
import type { Doc } from '@blocksuite/store';
|
||||||
import type { WorkspaceMetadata } from '@toeverything/infra';
|
import {
|
||||||
import { forwardRef, type PropsWithChildren, type Ref } from 'react';
|
useLiveData,
|
||||||
|
useService,
|
||||||
|
type WorkspaceMetadata,
|
||||||
|
} from '@toeverything/infra';
|
||||||
|
import { forwardRef, type PropsWithChildren, type Ref, useEffect } from 'react';
|
||||||
|
|
||||||
import * as styles from './index.css';
|
import * as styles from './index.css';
|
||||||
import { ShareExport } from './share-export';
|
import { ShareExport } from './share-export';
|
||||||
@ -42,10 +47,18 @@ const DefaultShareButton = forwardRef(function DefaultShareButton(
|
|||||||
ref: Ref<HTMLButtonElement>
|
ref: Ref<HTMLButtonElement>
|
||||||
) {
|
) {
|
||||||
const t = useI18n();
|
const t = useI18n();
|
||||||
|
const shareService = useService(ShareService);
|
||||||
|
const shared = useLiveData(shareService.share.isShared$);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
shareService.share.revalidate();
|
||||||
|
}, [shareService]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Button ref={ref} className={styles.shareButton} type="primary">
|
<Button ref={ref} className={styles.shareButton} type="primary">
|
||||||
{t['com.affine.share-menu.shareButton']()}
|
{shared
|
||||||
|
? t['com.affine.share-menu.sharedButton']()
|
||||||
|
: t['com.affine.share-menu.shareButton']()}
|
||||||
</Button>
|
</Button>
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user