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

20 lines
648 B
TypeScript
Raw Normal View History

2018-04-02 06:58:53 +03:00
import { IUser, isLocalUser } from '../models/user';
2018-04-02 07:44:32 +03:00
import getAcct from '../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-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}`;
}