2018-05-02 00:05:36 +00:00
|
|
|
{#if $isUserLoggedIn}
|
2018-03-14 00:14:57 +00:00
|
|
|
<div class="community-page">
|
|
|
|
|
|
|
|
<h2 class="community-header">
|
|
|
|
Timelines
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<PageList label="Timelines">
|
|
|
|
<PageListItem href="/local"
|
|
|
|
label="Local Timeline"
|
|
|
|
icon="#fa-users"
|
|
|
|
pinnable="true"
|
|
|
|
/>
|
|
|
|
<PageListItem href="/federated"
|
|
|
|
label="Federated Timeline"
|
|
|
|
icon="#fa-globe"
|
|
|
|
pinnable="true"
|
|
|
|
/>
|
|
|
|
<PageListItem href="/favorites"
|
|
|
|
label="Favorites"
|
|
|
|
icon="#fa-star"
|
|
|
|
pinnable="true"
|
|
|
|
/>
|
|
|
|
</PageList>
|
|
|
|
|
2018-05-02 00:05:36 +00:00
|
|
|
{#if $lists.length}
|
2018-03-14 00:14:57 +00:00
|
|
|
|
|
|
|
<h2 class="community-header">
|
|
|
|
Lists
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<PageList label="Lists">
|
2018-05-02 00:05:36 +00:00
|
|
|
{#each $lists as list}
|
|
|
|
<PageListItem href="/lists/{list.id}"
|
|
|
|
label={list.title}
|
2018-03-14 00:14:57 +00:00
|
|
|
icon="#fa-bars"
|
|
|
|
pinnable="true"
|
|
|
|
/>
|
2018-05-02 00:05:36 +00:00
|
|
|
{/each}
|
2018-03-14 00:14:57 +00:00
|
|
|
</PageList>
|
|
|
|
|
2018-05-02 00:05:36 +00:00
|
|
|
{/if}
|
2018-03-14 00:14:57 +00:00
|
|
|
|
|
|
|
<h2 class="community-header">
|
|
|
|
Instance settings
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<PageList label="Instance settings">
|
2018-05-02 00:05:36 +00:00
|
|
|
{#if isLockedAccount}
|
2018-03-16 16:05:34 +00:00
|
|
|
<PageListItem href="/requests"
|
|
|
|
label="Follow requests"
|
|
|
|
icon="#fa-user-plus"
|
|
|
|
/>
|
2018-05-02 00:05:36 +00:00
|
|
|
{/if}
|
2018-03-14 00:14:57 +00:00
|
|
|
<PageListItem href="/muted"
|
|
|
|
label="Muted users"
|
|
|
|
icon="#fa-volume-off"
|
|
|
|
/>
|
|
|
|
<PageListItem href="/blocked"
|
|
|
|
label="Blocked users"
|
|
|
|
icon="#fa-ban"
|
|
|
|
/>
|
|
|
|
<PageListItem href="/pinned"
|
|
|
|
label="Pinned toots"
|
|
|
|
icon="#fa-thumb-tack"
|
|
|
|
/>
|
|
|
|
</PageList>
|
|
|
|
|
|
|
|
</div>
|
2018-05-02 00:05:36 +00:00
|
|
|
{:else}
|
2018-03-14 00:14:57 +00:00
|
|
|
<HiddenFromSSR>
|
|
|
|
<FreeTextLayout>
|
|
|
|
<h1>Community</h1>
|
|
|
|
|
|
|
|
<p>Community options appear here when logged in.</p>
|
|
|
|
</FreeTextLayout>
|
|
|
|
</HiddenFromSSR>
|
2018-05-02 00:05:36 +00:00
|
|
|
{/if}
|
2018-03-14 00:14:57 +00:00
|
|
|
<style>
|
|
|
|
.community-page {
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
.community-page {
|
|
|
|
margin: 20px 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
import FreeTextLayout from '../../_components/FreeTextLayout.html'
|
|
|
|
import { store } from '../../_store/store.js'
|
|
|
|
import HiddenFromSSR from '../../_components/HiddenFromSSR'
|
|
|
|
import PageList from '../../_components/community/PageList.html'
|
|
|
|
import PageListItem from '../../_components/community/PageListItem.html'
|
|
|
|
import { updateLists } from '../../_actions/lists'
|
|
|
|
|
|
|
|
export default {
|
2018-04-20 04:38:01 +00:00
|
|
|
async oncreate () {
|
2018-04-19 16:37:05 +00:00
|
|
|
let { currentInstance } = this.store.get()
|
|
|
|
if (currentInstance) {
|
2018-03-14 00:14:57 +00:00
|
|
|
await updateLists()
|
|
|
|
}
|
|
|
|
},
|
|
|
|
store: () => store,
|
|
|
|
components: {
|
|
|
|
FreeTextLayout,
|
|
|
|
HiddenFromSSR,
|
|
|
|
PageList,
|
|
|
|
PageListItem
|
2018-03-16 16:05:34 +00:00
|
|
|
},
|
|
|
|
computed: {
|
2018-05-02 00:05:36 +00:00
|
|
|
isLockedAccount: ({ $currentVerifyCredentials }) => $currentVerifyCredentials && $currentVerifyCredentials.locked
|
2018-03-14 00:14:57 +00:00
|
|
|
}
|
2018-04-20 04:38:01 +00:00
|
|
|
}
|
2018-03-14 00:14:57 +00:00
|
|
|
</script>
|