2018-02-15 10:33:34 +01:00
|
|
|
<template>
|
2018-02-22 09:32:58 +01:00
|
|
|
<div class="root home">
|
2018-09-17 23:29:47 +02:00
|
|
|
<mk-note-detail v-for="n in user.pinnedNotes" :key="n.id" :note="n" :compact="true"/>
|
2018-04-07 19:30:37 +02:00
|
|
|
<section class="recent-notes">
|
2018-11-08 19:44:35 +01:00
|
|
|
<h2><fa :icon="['far', 'comments']"/>{{ $t('recent-notes') }}</h2>
|
2018-02-15 10:33:34 +01:00
|
|
|
<div>
|
2018-04-07 19:30:37 +02:00
|
|
|
<x-notes :user="user"/>
|
2018-02-15 10:33:34 +01:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section class="images">
|
2018-11-08 19:44:35 +01:00
|
|
|
<h2><fa icon="image"/>{{ $t('images') }}</h2>
|
2018-02-15 10:33:34 +01:00
|
|
|
<div>
|
2018-02-22 09:32:58 +01:00
|
|
|
<x-photos :user="user"/>
|
2018-02-15 10:33:34 +01:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section class="activity">
|
2018-11-08 19:44:35 +01:00
|
|
|
<h2><fa icon="chart-bar"/>{{ $t('activity') }}</h2>
|
2018-02-15 10:33:34 +01:00
|
|
|
<div>
|
2018-11-13 15:06:31 +01:00
|
|
|
<x-activity :user="user"/>
|
2018-02-15 10:33:34 +01:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section class="frequently-replied-users">
|
2018-11-08 19:44:35 +01:00
|
|
|
<h2><fa icon="users"/>{{ $t('frequently-replied-users') }}</h2>
|
2018-02-15 10:33:34 +01:00
|
|
|
<div>
|
2018-02-22 09:32:58 +01:00
|
|
|
<x-friends :user="user"/>
|
2018-02-15 10:33:34 +01:00
|
|
|
</div>
|
|
|
|
</section>
|
2018-05-27 06:49:09 +02:00
|
|
|
<section class="followers-you-know" v-if="$store.getters.isSignedIn && $store.state.i.id !== user.id">
|
2018-11-08 19:44:35 +01:00
|
|
|
<h2><fa icon="users"/>{{ $t('followers-you-know') }}</h2>
|
2018-02-15 10:33:34 +01:00
|
|
|
<div>
|
2018-02-22 09:32:58 +01:00
|
|
|
<x-followers-you-know :user="user"/>
|
2018-02-15 10:33:34 +01:00
|
|
|
</div>
|
|
|
|
</section>
|
2018-11-08 19:44:35 +01:00
|
|
|
<p v-if="user.host === null">{{ $t('last-used-at') }}: <b><mk-time :time="user.lastUsedAt"/></b></p>
|
2018-02-15 10:33:34 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-11-08 19:44:35 +01:00
|
|
|
import i18n from '../../../../i18n';
|
2018-04-07 19:30:37 +02:00
|
|
|
import XNotes from './home.notes.vue';
|
2018-02-22 09:32:58 +01:00
|
|
|
import XPhotos from './home.photos.vue';
|
|
|
|
import XFriends from './home.friends.vue';
|
|
|
|
import XFollowersYouKnow from './home.followers-you-know.vue';
|
|
|
|
|
2018-02-15 10:33:34 +01:00
|
|
|
export default Vue.extend({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n('mobile/views/pages/user/home.vue'),
|
2018-02-22 09:32:58 +01:00
|
|
|
components: {
|
2018-04-07 19:30:37 +02:00
|
|
|
XNotes,
|
2018-02-22 09:32:58 +01:00
|
|
|
XPhotos,
|
|
|
|
XFriends,
|
2018-11-13 15:06:31 +01:00
|
|
|
XFollowersYouKnow,
|
|
|
|
XActivity: () => import('../../components/activity.vue').then(m => m.default)
|
2018-02-22 09:32:58 +01:00
|
|
|
},
|
2018-02-15 10:33:34 +01:00
|
|
|
props: ['user']
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-28 04:43:15 +02:00
|
|
|
.root.home
|
2018-02-15 10:33:34 +01:00
|
|
|
max-width 600px
|
|
|
|
margin 0 auto
|
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
> .mk-note-detail
|
2018-02-15 10:33:34 +01:00
|
|
|
margin 0 0 8px 0
|
|
|
|
|
2018-04-27 19:29:17 +02:00
|
|
|
@media (min-width 500px)
|
|
|
|
margin 0 0 16px 0
|
|
|
|
|
2018-02-15 10:33:34 +01:00
|
|
|
> section
|
2018-09-28 04:43:15 +02:00
|
|
|
background var(--face)
|
2018-02-15 10:33:34 +01:00
|
|
|
border-radius 8px
|
2018-04-27 14:33:18 +02:00
|
|
|
box-shadow 0 4px 16px rgba(#000, 0.1)
|
2018-02-15 10:33:34 +01:00
|
|
|
|
|
|
|
&:not(:last-child)
|
|
|
|
margin-bottom 8px
|
|
|
|
|
2018-04-27 14:33:18 +02:00
|
|
|
@media (min-width 500px)
|
|
|
|
margin-bottom 16px
|
|
|
|
|
2018-02-15 10:33:34 +01:00
|
|
|
> h2
|
|
|
|
margin 0
|
|
|
|
padding 8px 10px
|
|
|
|
font-size 15px
|
|
|
|
font-weight normal
|
2018-09-28 04:43:15 +02:00
|
|
|
color var(--text)
|
|
|
|
background var(--faceHeader)
|
2018-02-15 10:33:34 +01:00
|
|
|
border-radius 8px 8px 0 0
|
|
|
|
|
2018-04-28 03:59:37 +02:00
|
|
|
@media (min-width 500px)
|
|
|
|
padding 10px 16px
|
|
|
|
|
2018-02-15 10:33:34 +01:00
|
|
|
> i
|
|
|
|
margin-right 6px
|
|
|
|
|
|
|
|
> .activity
|
|
|
|
> div
|
|
|
|
padding 8px
|
|
|
|
|
|
|
|
> p
|
|
|
|
display block
|
|
|
|
margin 16px
|
|
|
|
text-align center
|
2018-09-28 04:43:15 +02:00
|
|
|
color var(--text)
|
2018-02-15 10:33:34 +01:00
|
|
|
|
|
|
|
</style>
|