forked from traPtitech/traQ-group-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserList.vue
51 lines (46 loc) · 1.12 KB
/
UserList.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<template>
<div class="user-list-container">
<ul class="uk-list uk-list-divider" :style="{'height': height + 'px', 'overflow-y': 'scroll'}">
<li class="user" :key="user.userId" v-for="user in users" @click="$emit('userClick', user)">
<div class="user-icon-wrap">
<div class="user-icon" :style="`background-image: url(https://ex-traq.emoine.tech/api/v3/public/icon/${user.name})`" alt=""></div>
</div>
<div class="user-name">@{{user.name}}</div>
</li>
</ul>
</div>
</template>
<style>
.user-list-container {
padding-left: 12px;
padding-right: 12px;
width: 300px;
}
.user {
display: flex;
margin-top: 12px;
margin-bottom: 12px;
cursor: pointer;
}
.user-icon-wrap {
grid-area: user-icon;
}
.user-icon {
width: 40px;
height: 40px;
border-radius: 40px;
background-size: cover;
background-repeat: no-repeat;
background-position: 50%;
}
.user-name {
margin-left: 8px;
line-height: 40px;
text-align: center;
}
</style>
<script lang="ts">
export default {
props: ['users', 'height']
}
</script>