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

19 lines
599 B
TypeScript
Raw Normal View History

2018-04-02 06:58:53 +03:00
import { IUser, isLocalUser } from '../models/user';
2018-04-02 07:41:25 +03:00
import getAcct from '../user/get-acct';
2018-03-27 10:51:12 +03:00
/**
*
* @param user
*/
export default function(user: IUser): string {
let string = `${user.name} (@${getAcct(user)})\n` +
2018-03-29 08:48:47 +03:00
`${user.postsCount}投稿、${user.followingCount}フォロー、${user.followersCount}フォロワー\n`;
2018-03-27 10:51:12 +03:00
2018-04-01 22:01:34 +03:00
if (isLocalUser(user)) {
const account = user.account;
2018-03-27 10:51:12 +03:00
string += `場所: ${account.profile.location}、誕生日: ${account.profile.birthday}\n`;
}
return string + `${user.description}`;
}