diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-07-07 19:19:00 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-07-07 19:19:00 +0900 |
| commit | aa4ef6745ad798bd7d4f05cb397ef1dd85279814 (patch) | |
| tree | d34ded516f52b91c4ff1a5443776ce22d8f483f0 /src/misc/get-user-summary.ts | |
| parent | Refactorijg (diff) | |
| download | sharkey-aa4ef6745ad798bd7d4f05cb397ef1dd85279814.tar.gz sharkey-aa4ef6745ad798bd7d4f05cb397ef1dd85279814.tar.bz2 sharkey-aa4ef6745ad798bd7d4f05cb397ef1dd85279814.zip | |
Refactorng
Diffstat (limited to 'src/misc/get-user-summary.ts')
| -rw-r--r-- | src/misc/get-user-summary.ts | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/misc/get-user-summary.ts b/src/misc/get-user-summary.ts new file mode 100644 index 0000000000..625caf1f7e --- /dev/null +++ b/src/misc/get-user-summary.ts @@ -0,0 +1,18 @@ +import { IUser, isLocalUser } from '../models/user'; +import getAcct from '../misc/acct/render'; +import getUserName from './get-user-name'; + +/** + * ユーザーを表す文字列を取得します。 + * @param user ユーザー + */ +export default function(user: IUser): string { + let string = `${getUserName(user)} (@${getAcct(user)})\n` + + `${user.notesCount}投稿、${user.followingCount}フォロー、${user.followersCount}フォロワー\n`; + + if (isLocalUser(user)) { + string += `場所: ${user.profile.location}、誕生日: ${user.profile.birthday}\n`; + } + + return string + `「${user.description}」`; +} |