2018-06-18 00:28:43 -05:00
|
|
|
import { IUser, isRemoteUser } from '../../../models/user';
|
|
|
|
import config from '../../../config';
|
2018-06-17 02:45:01 -05:00
|
|
|
|
|
|
|
export default (mention: IUser) => ({
|
2018-06-12 15:11:55 -05:00
|
|
|
type: 'Mention',
|
2018-06-17 02:45:01 -05:00
|
|
|
href: isRemoteUser(mention) ? mention.uri : `${config.url}/@${mention.username}`,
|
|
|
|
name: isRemoteUser(mention) ? `@${mention.username}@${mention.host}` : `@${mention.username}`,
|
2018-06-12 15:11:55 -05:00
|
|
|
});
|