aboutsummaryrefslogtreecommitdiff
path: root/src/components/chat_title/chat_title.vue
blob: fd42d125d13d8713c2effa50f828ae0c751f7125 (plain)
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
52
53
54
55
56
<template>
  <!-- eslint-disable vue/no-v-html -->
  <div
    class="chat-title"
    :title="title"
  >
    <ChatAvatar
      v-if="withAvatar"
      :user="user"
      width="23px"
      height="23px"
    />
    <span
      v-if="withAvatar"
      style="margin-right: 0.5em"
    />
    <span
      class="username"
      v-html="htmlTitle"
    />
  </div>
  <!-- eslint-enable vue/no-v-html -->
</template>

<script src="./chat_title.js"></script>

<style lang="scss">
@import '../../_variables.scss';

.chat-title {
  display: flex;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  a {
    display: flex;
    align-items: center;
  }

  .username {
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline;
    word-wrap: break-word;

    .emoji {
      width: 14px;
      height: 14px;
      vertical-align: middle;
      object-fit: contain
    }
  }
}
</style>