Add menus to view profile image and header
This commit is contained in:
parent
090320150a
commit
e3c25d25ee
1 changed files with 10 additions and 0 deletions
|
@ -11,6 +11,7 @@ import {
|
||||||
} from 'preact/hooks';
|
} from 'preact/hooks';
|
||||||
import punycode from 'punycode';
|
import punycode from 'punycode';
|
||||||
|
|
||||||
|
import MenuLink from '../components/menu-link';
|
||||||
import { api } from '../utils/api';
|
import { api } from '../utils/api';
|
||||||
import enhanceContent from '../utils/enhance-content';
|
import enhanceContent from '../utils/enhance-content';
|
||||||
import getHTMLText from '../utils/getHTMLText';
|
import getHTMLText from '../utils/getHTMLText';
|
||||||
|
@ -582,6 +583,15 @@ function AccountInfo({
|
||||||
<Icon icon="external" />
|
<Icon icon="external" />
|
||||||
<span>Go to original profile page</span>
|
<span>Go to original profile page</span>
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
|
<MenuDivider />
|
||||||
|
<MenuLink href={info.avatar} target="_blank">
|
||||||
|
<Icon icon="user" />
|
||||||
|
<span>View profile image</span>
|
||||||
|
</MenuLink>
|
||||||
|
<MenuLink href={info.header} target="_blank">
|
||||||
|
<Icon icon="media" />
|
||||||
|
<span>View profile header</span>
|
||||||
|
</MenuLink>
|
||||||
</Menu2>
|
</Menu2>
|
||||||
) : (
|
) : (
|
||||||
<AccountBlock
|
<AccountBlock
|
||||||
|
|
Loading…
Add table
Reference in a new issue