yandere_fe/src/components/user_card/user_card.vue

143 lines
3.5 KiB
Vue
Raw Normal View History

2017-08-21 10:25:01 -07:00
<template>
<div class="card">
2019-02-05 14:11:17 -08:00
<router-link :to="userProfileLink(user)">
2019-02-12 08:00:09 -08:00
<UserAvatar class="avatar" @click.prevent.native="toggleUserExpanded" :src="user.profile_image_url"/>
2019-02-05 14:11:17 -08:00
</router-link>
<div class="usercard" v-if="userExpanded">
2017-08-21 10:25:01 -07:00
<user-card-content :user="user" :switcher="false"></user-card-content>
</div>
<div class="name-and-screen-name" v-else>
<div :title="user.name" class="user-name">
<span v-if="user.name_html" v-html="user.name_html"></span>
<span v-else>{{ user.name }}</span>
</div>
<div class="user-link-action">
<router-link class='user-screen-name' :to="userProfileLink(user)">
@{{user.screen_name}}
</router-link>
2017-08-21 10:25:01 -07:00
</div>
</div>
2019-02-11 10:03:01 -08:00
<div class="follow-box">
2019-02-12 08:00:09 -08:00
<span class="faint" v-if="showFollows && user.follows_you">
2019-02-11 10:03:01 -08:00
{{ currentUser.id == user.id ? $t('user_card.its_you') : $t('user_card.follows_you') }}
</span>
<button
v-if="showFollow"
class="btn btn-default"
@click="followUser"
:disabled="followRequestInProgress"
:title="followRequestSent ? $t('user_card.follow_again') : ''"
>
<template v-if="followRequestInProgress">
{{ $t('user_card.follow_progress') }}
</template>
<template v-else-if="followRequestSent">
{{ $t('user_card.follow_sent') }}
</template>
<template v-else>
{{ $t('user_card.follow') }}
</template>
</button>
<button v-if="showActions && following" class="btn btn-default" @click="unfollowUser" :disabled="followRequestInProgress">
<template v-if="followRequestInProgress">
{{ $t('user_card.follow_progress') }}
</template>
<template v-else>
{{ $t('user_card.follow_unfollow') }}
</template>
</button>
</div>
2018-06-06 17:58:44 -07:00
<div class="approval" v-if="showApproval">
<button class="btn btn-default" @click="approveUser">{{ $t('user_card.approve') }}</button>
<button class="btn btn-default" @click="denyUser">{{ $t('user_card.deny') }}</button>
</div>
2017-08-21 10:25:01 -07:00
</div>
</template>
<script src="./user_card.js"></script>
<style lang="scss">
@import '../../_variables.scss';
.name-and-screen-name {
2018-04-07 09:30:27 -07:00
margin-left: 0.7em;
2019-02-11 10:03:01 -08:00
margin-top: 0.0em;
2018-04-07 09:30:27 -07:00
text-align: left;
width: 100%;
2019-02-11 10:03:01 -08:00
.user-name {
img {
object-fit: contain;
height: 16px;
width: 16px;
vertical-align: middle;
}
}
2019-02-11 10:03:01 -08:00
.user-link-action {
display: flex;
align-items: flex-start;
justify-content: space-between;
}
}
2017-08-21 10:25:01 -07:00
.card {
2018-04-07 09:30:27 -07:00
display: flex;
flex: 1 0;
padding-top: 0.6em;
padding-right: 1em;
padding-bottom: 0.6em;
padding-left: 1em;
border-bottom: 1px solid;
margin: 0;
border-bottom-color: $fallback--border;
2019-02-11 10:03:01 -08:00
border-bottom-color: var(--border, $fallback--border);
2018-04-07 09:30:27 -07:00
.avatar {
2019-02-04 09:49:23 -08:00
padding: 0;
2018-04-07 09:30:27 -07:00
}
2019-02-11 10:03:01 -08:00
.follow-box {
width: 15em;
text-align: center;
position: relative;
2019-02-12 08:00:09 -08:00
.btn {
2019-02-11 10:03:01 -08:00
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
}
}
2017-08-21 10:25:01 -07:00
.usercard {
2018-04-07 09:30:27 -07:00
width: fill-available;
margin: 0.2em 0 0 0.7em;
2018-04-07 09:30:27 -07:00
border-radius: $fallback--panelRadius;
border-radius: var(--panelRadius, $fallback--panelRadius);
border-style: solid;
border-color: $fallback--border;
2018-08-31 07:24:46 -07:00
border-color: var(--border, $fallback--border);
2018-04-07 09:30:27 -07:00
border-width: 1px;
overflow: hidden;
2018-04-07 09:30:27 -07:00
.panel-heading {
background: transparent;
2018-08-31 07:24:46 -07:00
flex-direction: column;
align-items: stretch;
2018-04-07 09:30:27 -07:00
}
2018-04-07 09:30:27 -07:00
p {
margin-bottom: 0;
}
}
2018-06-06 17:58:44 -07:00
.approval {
button {
width: 100%;
margin-bottom: 0.5em;
}
}
2017-08-21 10:25:01 -07:00
</style>