social/src/components/UserEntry.vue

105 wiersze
2.7 KiB
Vue
Czysty Zwykły widok Historia

<!--
- @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>
-
- @author Julius Härtl <jus@bitgrid.net>
-
- @license GNU AGPL version 3 or any later version
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-->
<template>
<div v-if="item" class="user-entry">
<div class="entry-content">
<div class="user-avatar">
<avatar v-if="item.local" :size="32" :user="item.preferredUsername" />
<avatar v-else :url="item.icon.url" />
</div>
<div class="user-details">
<router-link v-if="item.local" :to="{ name: 'profile', params: { account: item.account }}">
<span class="post-author">{{ item.preferredUsername }}</span>
</router-link>
<a v-else :href="item.id" target="_blank"
rel="noreferrer">{{ item.name }} <span class="user-description">{{ item.account }}</span></a>
<!-- TODO check where the html is coming from to avoid security issues -->
<p v-html="item.summary" />
</div>
<button v-if="item.details.following" :class="{'icon-loading-small': followLoading}"
@click="unfollow()"
@mouseover="followingText=t('social', 'Unfollow')" @mouseleave="followingText=t('social', 'Following')">
<span><span class="icon-checkmark" />{{ followingText }}</span></button>
<button v-else :class="{'icon-loading-small': followLoading}" class="primary"
@click="follow"><span>{{ t('social', 'Follow') }}</span></button>
</div>
</div>
</template>
<script>
import { Avatar } from 'nextcloud-vue'
import follow from '../mixins/follow'
export default {
name: 'UserEntry',
components: {
Avatar
},
mixins: [
follow
],
props: {
item: { type: Object, default: () => {} }
},
data: function() {
return {
followingText: t('social', 'Following')
}
}
}
</script>
<style scoped>
.user-entry {
padding: 20px;
margin-bottom: 10px;
}
.user-avatar {
margin: 5px;
margin-right: 10px;
border-radius: 50%;
flex-shrink: 0;
}
.entry-content {
display: flex;
align-items: flex-start;
}
.user-details {
flex-grow: 1;
}
.user-description {
opacity: 0.7;
}
button {
min-width: 110px;
}
button * {
cursor: pointer;
}
</style>