yumechi-no-kuni/src/misc/get-user-summary.ts

19 lines
609 B
TypeScript
Raw Normal View History

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