mirror of
https://github.com/kokonect-link/cherrypick
synced 2025-01-09 11:23:14 +09:00
a1b490afa7
Closes #1411
20 lines
648 B
TypeScript
20 lines
648 B
TypeScript
import { IUser, isLocalUser } from '../models/user';
|
|
import getAcct from '../acct/render';
|
|
import getUserName from './get-user-name';
|
|
|
|
/**
|
|
* ユーザーを表す文字列を取得します。
|
|
* @param user ユーザー
|
|
*/
|
|
export default function(user: IUser): string {
|
|
let string = `${getUserName(user)} (@${getAcct(user)})\n` +
|
|
`${user.notesCount}投稿、${user.followingCount}フォロー、${user.followersCount}フォロワー\n`;
|
|
|
|
if (isLocalUser(user)) {
|
|
const account = user.account;
|
|
string += `場所: ${account.profile.location}、誕生日: ${account.profile.birthday}\n`;
|
|
}
|
|
|
|
return string + `「${user.description}」`;
|
|
}
|