mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 23:32:09 +03:00
feat: remove avatar for empty field (#8246)
This commit is contained in:
parent
58db654b07
commit
fc7e7a37ee
@ -232,8 +232,6 @@ const CloudUserAvatar = (props: { type: 'CreatedBy' | 'UpdatedBy' }) => {
|
|||||||
return null;
|
return null;
|
||||||
}, [cloudDocMeta, props.type]);
|
}, [cloudDocMeta, props.type]);
|
||||||
|
|
||||||
const t = useI18n();
|
|
||||||
|
|
||||||
if (!cloudDocMeta) {
|
if (!cloudDocMeta) {
|
||||||
if (isRevalidating) {
|
if (isRevalidating) {
|
||||||
// TODO: loading ui
|
// TODO: loading ui
|
||||||
@ -253,23 +251,21 @@ const CloudUserAvatar = (props: { type: 'CreatedBy' | 'UpdatedBy' }) => {
|
|||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
return <NoRecordValue />;
|
||||||
|
};
|
||||||
|
|
||||||
|
const NoRecordValue = () => {
|
||||||
|
const t = useI18n();
|
||||||
return (
|
return (
|
||||||
<>
|
<span>
|
||||||
<Avatar name="?" size={20} />
|
{t['com.affine.page-properties.property-user-avatar-no-record']()}
|
||||||
<span>
|
</span>
|
||||||
{t['com.affine.page-properties.property-user-avatar-no-record']()}
|
|
||||||
</span>
|
|
||||||
</>
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const LocalUserValue = () => {
|
const LocalUserValue = () => {
|
||||||
const t = useI18n();
|
const t = useI18n();
|
||||||
return (
|
return <span>{t['com.affine.page-properties.local-user']()}</span>;
|
||||||
<span className={styles.propertyRowValueCell}>
|
|
||||||
{t['com.affine.page-properties.local-user']()}
|
|
||||||
</span>
|
|
||||||
);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const CreatedUserValue = () => {
|
export const CreatedUserValue = () => {
|
||||||
@ -278,7 +274,11 @@ export const CreatedUserValue = () => {
|
|||||||
workspaceService.workspace.flavour === WorkspaceFlavour.AFFINE_CLOUD;
|
workspaceService.workspace.flavour === WorkspaceFlavour.AFFINE_CLOUD;
|
||||||
|
|
||||||
if (!isCloud) {
|
if (!isCloud) {
|
||||||
return <LocalUserValue />;
|
return (
|
||||||
|
<div className={styles.propertyRowValueUserCell}>
|
||||||
|
<LocalUserValue />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
Loading…
Reference in New Issue
Block a user