2018-04-05 03:33:17 +00:00
|
|
|
<ModalDialog
|
2018-04-08 23:56:20 +00:00
|
|
|
:id
|
2018-04-05 03:33:17 +00:00
|
|
|
:label
|
|
|
|
:title
|
|
|
|
background="var(--main-bg)"
|
|
|
|
>
|
2018-03-12 02:40:32 +00:00
|
|
|
<GenericDialogList :items on:click="onClick(event)"/>
|
|
|
|
</ModalDialog>
|
|
|
|
<script>
|
|
|
|
import ModalDialog from './ModalDialog.html'
|
2018-04-08 23:56:20 +00:00
|
|
|
import { store } from '../../../_store/store'
|
2018-03-12 02:40:32 +00:00
|
|
|
import GenericDialogList from './GenericDialogList.html'
|
2018-04-08 23:56:20 +00:00
|
|
|
import { setAccountFollowed } from '../../../_actions/follow'
|
|
|
|
import { doDeleteStatus } from '../../../_actions/delete'
|
|
|
|
import { show } from '../helpers/showDialog'
|
|
|
|
import { close } from '../helpers/closeDialog'
|
|
|
|
import { oncreate } from '../helpers/onCreateDialog'
|
2018-04-15 01:47:55 +00:00
|
|
|
import { setAccountBlocked } from '../../../_actions/block'
|
2018-03-12 02:40:32 +00:00
|
|
|
|
|
|
|
export default {
|
2018-04-08 23:56:20 +00:00
|
|
|
oncreate,
|
2018-03-12 02:40:32 +00:00
|
|
|
computed: {
|
|
|
|
relationship: ($currentAccountRelationship) => $currentAccountRelationship,
|
|
|
|
account: ($currentAccountProfile) => $currentAccountProfile,
|
2018-03-14 15:36:12 +00:00
|
|
|
verifyCredentials: ($currentVerifyCredentials) => $currentVerifyCredentials,
|
|
|
|
verifyCredentialsId: (verifyCredentials) => verifyCredentials.id,
|
2018-03-15 05:14:06 +00:00
|
|
|
following: (relationship) => relationship && relationship.following,
|
|
|
|
followRequested: (relationship) => relationship && relationship.requested,
|
2018-03-12 02:40:32 +00:00
|
|
|
accountId: (account) => account && account.id,
|
2018-04-15 01:47:55 +00:00
|
|
|
blocking: (relationship) => relationship.blocking,
|
2018-04-05 14:44:10 +00:00
|
|
|
followLabel: (following, followRequested, account) => {
|
|
|
|
if (typeof following === 'undefined' || !account) {
|
2018-03-12 02:40:32 +00:00
|
|
|
return ''
|
|
|
|
}
|
2018-03-15 05:14:06 +00:00
|
|
|
return (following || followRequested)
|
2018-04-05 14:44:10 +00:00
|
|
|
? `Unfollow @${account.acct}`
|
|
|
|
: `Follow @${account.acct}`
|
2018-03-12 02:40:32 +00:00
|
|
|
},
|
2018-04-15 01:47:55 +00:00
|
|
|
blockLabel: (blocking, account) => {
|
|
|
|
return blocking ? `Unblock @${account.acct}` : `Block @${account.acct}`
|
|
|
|
},
|
|
|
|
items: (blockLabel, blocking, followLabel, following, followRequested, accountId, verifyCredentialsId) => (
|
2018-03-14 15:36:12 +00:00
|
|
|
[
|
2018-04-15 01:47:55 +00:00
|
|
|
accountId === verifyCredentialsId &&
|
|
|
|
{
|
|
|
|
key: 'delete',
|
|
|
|
label: 'Delete',
|
|
|
|
icon: '#fa-trash'
|
|
|
|
},
|
|
|
|
accountId !== verifyCredentialsId && !blocking &&
|
2018-03-12 02:40:32 +00:00
|
|
|
{
|
|
|
|
key: 'follow',
|
|
|
|
label: followLabel,
|
2018-03-15 05:14:06 +00:00
|
|
|
icon: following ? '#fa-user-times' : followRequested ? '#fa-hourglass' : '#fa-user-plus'
|
2018-03-14 15:36:12 +00:00
|
|
|
},
|
2018-04-15 01:47:55 +00:00
|
|
|
accountId !== verifyCredentialsId &&
|
2018-03-14 15:36:12 +00:00
|
|
|
{
|
2018-04-15 01:47:55 +00:00
|
|
|
key: 'block',
|
|
|
|
label: blockLabel,
|
|
|
|
icon: blocking ? '#fa-unlock' : '#fa-ban'
|
2018-03-12 02:40:32 +00:00
|
|
|
}
|
2018-03-14 15:36:12 +00:00
|
|
|
].filter(Boolean)
|
|
|
|
)
|
2018-03-12 02:40:32 +00:00
|
|
|
},
|
|
|
|
components: {
|
|
|
|
ModalDialog,
|
|
|
|
GenericDialogList
|
|
|
|
},
|
|
|
|
store: () => store,
|
|
|
|
methods: {
|
2018-04-08 23:56:20 +00:00
|
|
|
show,
|
|
|
|
close,
|
2018-04-15 01:47:55 +00:00
|
|
|
onClick(item) {
|
|
|
|
switch (item.key) {
|
|
|
|
case 'delete':
|
|
|
|
return this.onDeleteClicked()
|
|
|
|
case 'follow':
|
|
|
|
return this.onFollowClicked()
|
|
|
|
case 'block':
|
|
|
|
return this.onBlockClicked()
|
2018-03-12 02:40:32 +00:00
|
|
|
}
|
2018-04-15 01:47:55 +00:00
|
|
|
},
|
|
|
|
async onDeleteClicked() {
|
|
|
|
let statusId = this.get('statusId')
|
|
|
|
this.close()
|
|
|
|
await doDeleteStatus(statusId)
|
|
|
|
},
|
|
|
|
async onFollowClicked() {
|
|
|
|
let accountId = this.get('accountId')
|
|
|
|
let following = this.get('following')
|
|
|
|
this.close()
|
|
|
|
await setAccountFollowed(accountId, !following, true)
|
|
|
|
},
|
|
|
|
async onBlockClicked() {
|
|
|
|
let accountId = this.get('accountId')
|
|
|
|
let blocking = this.get('blocking')
|
|
|
|
this.close()
|
|
|
|
await setAccountBlocked(accountId, !blocking, true)
|
2018-03-12 02:40:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|