2018-02-11 00:31:26 +01:00
|
|
|
|
<:Head>
|
|
|
|
|
<title>Pinafore – Reblogs</title>
|
|
|
|
|
</:Head>
|
|
|
|
|
|
|
|
|
|
<Layout page='reblogs'>
|
2018-02-11 01:03:28 +01:00
|
|
|
|
<DynamicPageBanner title="Boosts" icon="#fa-retweet" />
|
|
|
|
|
<AccountsListPage :accountsFetcher />
|
2018-02-11 00:31:26 +01:00
|
|
|
|
</Layout>
|
|
|
|
|
<script>
|
|
|
|
|
import Layout from '../../_components/Layout.html'
|
|
|
|
|
import { getReblogs } from '../../_api/reblogsAndFavs'
|
|
|
|
|
import AccountsListPage from '../../_components/AccountsListPage.html'
|
2018-02-11 01:03:28 +01:00
|
|
|
|
import { store } from '../../_store/store'
|
|
|
|
|
import DynamicPageBanner from '../../_components/DynamicPageBanner.html'
|
2018-02-11 00:31:26 +01:00
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
computed: {
|
2018-02-11 01:03:28 +01:00
|
|
|
|
statusId: params => params.statusId,
|
|
|
|
|
accountsFetcher: ($currentInstance, $accessToken, statusId) => () => getReblogs($currentInstance, $accessToken, statusId)
|
2018-02-11 00:31:26 +01:00
|
|
|
|
},
|
2018-02-11 01:03:28 +01:00
|
|
|
|
store: () => store,
|
2018-02-11 00:31:26 +01:00
|
|
|
|
components: {
|
|
|
|
|
Layout,
|
2018-02-11 01:03:28 +01:00
|
|
|
|
AccountsListPage,
|
|
|
|
|
DynamicPageBanner
|
2018-02-11 00:31:26 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|