tweak status options

This commit is contained in:
Nolan Lawson 2018-04-05 07:44:10 -07:00
parent 8197c9e773
commit a6d2382f97
1 changed files with 4 additions and 5 deletions

View File

@ -23,15 +23,14 @@ export default {
verifyCredentialsId: (verifyCredentials) => verifyCredentials.id,
following: (relationship) => relationship && relationship.following,
followRequested: (relationship) => relationship && relationship.requested,
accountName: (account) => account && (account.display_name || account.acct),
accountId: (account) => account && account.id,
followLabel: (following, followRequested, accountName) => {
if (typeof following === 'undefined' || !accountName) {
followLabel: (following, followRequested, account) => {
if (typeof following === 'undefined' || !account) {
return ''
}
return (following || followRequested)
? `Unfollow ${accountName}`
: `Follow ${accountName}`
? `Unfollow @${account.acct}`
: `Follow @${account.acct}`
},
items: (followLabel, following, followRequested, accountId, verifyCredentialsId) => (
[