jormungandr-bite/src/misc/get-user-summary.ts

19 lines
615 B
TypeScript
Raw Normal View History

2018-04-01 21:58:53 -06:00
import { IUser, isLocalUser } from '../models/user';
2018-07-07 04:19:00 -06:00
import getAcct from '../misc/acct/render';
2018-04-05 10:36:34 -06:00
import getUserName from './get-user-name';
2018-03-27 01:51:12 -06:00
/**
*
* @param user
*/
export default function(user: IUser): string {
2018-04-05 10:36:34 -06:00
let string = `${getUserName(user)} (@${getAcct(user)})\n` +
2018-04-07 11:30:37 -06:00
`${user.notesCount}投稿、${user.followingCount}フォロー、${user.followersCount}フォロワー\n`;
2018-03-27 01:51:12 -06:00
2018-04-01 13:01:34 -06:00
if (isLocalUser(user)) {
2018-04-07 12:58:11 -06:00
string += `場所: ${user.profile.location}、誕生日: ${user.profile.birthday}\n`;
2018-03-27 01:51:12 -06:00
}
return string + `${user.description}`;
}