1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-08 07:28:43 +01:00

34 lines
1.1 KiB
HTML
Raw Normal View History

2018-03-16 09:18:40 -07:00
<DynamicPageBanner title="Follow requests" icon="#fa-user-plus" />
<AccountsListPage {accountsFetcher} {accountActions} />
2018-03-16 09:18:40 -07:00
<script>
import AccountsListPage from '.././_components/AccountsListPage.html'
import { store } from '.././_store/store'
import { getFollowRequests } from '../_actions/followRequests'
import DynamicPageBanner from '.././_components/DynamicPageBanner.html'
import { setFollowRequestApprovedOrRejected } from '../_actions/requests'
2018-03-16 09:18:40 -07:00
export default {
data: () => ({
accountActions: [
{
icon: '#fa-check',
label: 'Approve',
onclick: (accountId) => setFollowRequestApprovedOrRejected(accountId, true, true)
},
{
icon: '#fa-times',
label: 'Reject',
onclick: (accountId) => setFollowRequestApprovedOrRejected(accountId, false, true)
}
]
}),
2018-03-16 09:18:40 -07:00
computed: {
accountsFetcher: ({ $currentInstance, $accessToken }) => () => getFollowRequests($currentInstance, $accessToken)
2018-03-16 09:18:40 -07:00
},
store: () => store,
components: {
AccountsListPage,
DynamicPageBanner
}
}
</script>