2019-02-26 03:51:04 +00:00
|
|
|
<template>
|
|
|
|
<basic-user-card :user="user">
|
2019-02-27 16:58:29 +00:00
|
|
|
<div class="follow-card-content-container">
|
2019-07-05 07:17:44 +00:00
|
|
|
<span
|
2020-05-14 07:27:58 +00:00
|
|
|
v-if="isMe || (!noFollowsYou && relationship.followed_by)"
|
2019-07-05 07:17:44 +00:00
|
|
|
class="faint"
|
|
|
|
>
|
2019-02-26 16:00:25 +00:00
|
|
|
{{ isMe ? $t('user_card.its_you') : $t('user_card.follows_you') }}
|
|
|
|
</span>
|
2019-04-11 20:34:46 +00:00
|
|
|
<template v-if="!loggedIn">
|
2019-07-05 07:17:44 +00:00
|
|
|
<div
|
2020-04-21 20:27:51 +00:00
|
|
|
v-if="!relationship.following"
|
2019-07-05 07:17:44 +00:00
|
|
|
class="follow-card-follow-button"
|
|
|
|
>
|
2019-04-11 20:34:46 +00:00
|
|
|
<RemoteFollow :user="user" />
|
|
|
|
</div>
|
|
|
|
</template>
|
2020-05-13 20:58:08 +00:00
|
|
|
<template v-else-if="!isMe">
|
2019-10-17 13:19:52 +00:00
|
|
|
<FollowButton
|
2020-04-21 20:27:51 +00:00
|
|
|
:relationship="relationship"
|
2019-10-17 13:19:52 +00:00
|
|
|
:label-following="$t('user_card.follow_unfollow')"
|
2020-04-23 11:27:27 +00:00
|
|
|
class="follow-card-follow-button"
|
2019-10-17 13:19:52 +00:00
|
|
|
/>
|
2019-04-11 20:34:46 +00:00
|
|
|
</template>
|
2019-02-27 16:58:29 +00:00
|
|
|
</div>
|
2019-02-26 03:51:04 +00:00
|
|
|
</basic-user-card>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./follow_card.js"></script>
|
2019-02-27 16:58:29 +00:00
|
|
|
|
|
|
|
<style lang="scss">
|
2019-03-21 19:03:54 +00:00
|
|
|
.follow-card {
|
|
|
|
&-content-container {
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
line-height: 1.5em;
|
|
|
|
}
|
2019-02-27 16:58:29 +00:00
|
|
|
|
2019-03-21 19:03:54 +00:00
|
|
|
&-follow-button {
|
2019-02-27 16:58:29 +00:00
|
|
|
margin-top: 0.5em;
|
|
|
|
margin-left: auto;
|
|
|
|
width: 10em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|