mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-13 11:45:45 +03:00
parent
fce4b97540
commit
d9f8ebd5fe
@ -9,12 +9,12 @@ import { Group } from '@urbit/api';
|
|||||||
import { uxToHex, cite, useShowNickname, deSig } from '~/logic/lib/util';
|
import { uxToHex, cite, useShowNickname, deSig } from '~/logic/lib/util';
|
||||||
import useSettingsState, {selectCalmState} from "~/logic/state/settings";
|
import useSettingsState, {selectCalmState} from "~/logic/state/settings";
|
||||||
import useLocalState from "~/logic/state/local";
|
import useLocalState from "~/logic/state/local";
|
||||||
import OverlaySigil from './OverlaySigil';
|
|
||||||
import { Sigil } from '~/logic/lib/sigil';
|
import { Sigil } from '~/logic/lib/sigil';
|
||||||
import Timestamp from './Timestamp';
|
import Timestamp from './Timestamp';
|
||||||
import useContactState from '~/logic/state/contact';
|
import useContactState from '~/logic/state/contact';
|
||||||
|
import { useCopy } from '~/logic/lib/useCopy';
|
||||||
import ProfileOverlay from './ProfileOverlay';
|
import ProfileOverlay from './ProfileOverlay';
|
||||||
import {PropFunc} from '~/types';
|
import { PropFunc } from '~/types';
|
||||||
|
|
||||||
interface AuthorProps {
|
interface AuthorProps {
|
||||||
ship: string;
|
ship: string;
|
||||||
@ -61,6 +61,7 @@ export default function Author(props: AuthorProps & PropFunc<typeof Box>): React
|
|||||||
const { hideAvatars } = useSettingsState(selectCalmState);
|
const { hideAvatars } = useSettingsState(selectCalmState);
|
||||||
const name = showNickname && contact ? contact.nickname : cite(ship);
|
const name = showNickname && contact ? contact.nickname : cite(ship);
|
||||||
const stamp = moment(date);
|
const stamp = moment(date);
|
||||||
|
const { copyDisplay, doCopy, didCopy } = useCopy(`~${ship}`, name);
|
||||||
|
|
||||||
const [showOverlay, setShowOverlay] = useState(false);
|
const [showOverlay, setShowOverlay] = useState(false);
|
||||||
|
|
||||||
@ -108,11 +109,13 @@ export default function Author(props: AuthorProps & PropFunc<typeof Box>): React
|
|||||||
ml={showImage ? 2 : 0}
|
ml={showImage ? 2 : 0}
|
||||||
color='black'
|
color='black'
|
||||||
fontSize='1'
|
fontSize='1'
|
||||||
|
cursor='pointer'
|
||||||
lineHeight='tall'
|
lineHeight='tall'
|
||||||
fontFamily={showNickname ? 'sans' : 'mono'}
|
fontFamily={showNickname ? 'sans' : 'mono'}
|
||||||
fontWeight={showNickname ? '500' : '400'}
|
fontWeight={showNickname ? '500' : '400'}
|
||||||
|
onClick={doCopy}
|
||||||
>
|
>
|
||||||
{name}
|
{copyDisplay}
|
||||||
</Box>
|
</Box>
|
||||||
{ !dontShowTime && (
|
{ !dontShowTime && (
|
||||||
<Timestamp
|
<Timestamp
|
||||||
|
Loading…
Reference in New Issue
Block a user