Sharkey/src/misc/get-user-summary.ts

19 lines
615 B
TypeScript
Raw Normal View History

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