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

19 lines
607 B
TypeScript
Raw Normal View History

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