misskey-awawa/src/misc/get-user-summary.ts

19 lines
609 B
TypeScript
Raw Normal View History

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