akkoma-fe/src/components/emoji-input/emoji-input.vue

112 lines
2.4 KiB
Vue
Raw Normal View History

2019-03-26 02:38:15 +00:00
<template>
<div class="emoji-input">
<slot></slot>
2019-06-08 14:15:42 +00:00
<div ref="panel" class="autocomplete-panel" :class="{ hide: !showPopup }">
<div class="autocomplete-panel-body">
<div
v-for="(suggestion, index) in suggestions"
:key="index"
2019-06-25 21:34:09 +00:00
@click.stop.prevent="onClick($event, suggestion)"
class="autocomplete-item"
:class="{ highlighted: suggestion.highlighted }"
2019-03-26 02:38:15 +00:00
>
2019-06-08 14:15:42 +00:00
<span class="image">
<img v-if="suggestion.img":src="suggestion.img" />
<span v-else>{{suggestion.replacement}}</span>
</span>
2019-06-08 14:15:42 +00:00
<div class="label">
<span class="displayText">{{suggestion.displayText}}</span>
<span class="detailText">{{suggestion.detailText}}</span>
2019-03-26 02:38:15 +00:00
</div>
2019-06-08 14:15:42 +00:00
</div>
2019-03-26 02:38:15 +00:00
</div>
</div>
</div>
2019-03-26 02:38:15 +00:00
</template>
<script src="./emoji-input.js"></script>
<style lang="scss">
@import '../../_variables.scss';
.emoji-input {
display: flex;
flex-direction: column;
2019-06-08 14:15:42 +00:00
.autocomplete {
&-panel {
position: absolute;
z-index: 9;
margin-top: 2px;
&.hide {
display: none
}
&-body {
margin: 0 0.5em 0 0.5em;
border-radius: $fallback--tooltipRadius;
border-radius: var(--tooltipRadius, $fallback--tooltipRadius);
box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
box-shadow: var(--popupShadow);
min-width: 75%;
background: $fallback--bg;
background: var(--bg, $fallback--bg);
color: $fallback--lightText;
color: var(--lightText, $fallback--lightText);
}
}
&-item {
display: flex;
cursor: pointer;
padding: 0.2em 0.4em;
border-bottom: 1px solid rgba(0, 0, 0, 0.4);
height: 32px;
.image {
width: 32px;
height: 32px;
line-height: 32px;
text-align: center;
font-size: 32px;
margin-right: 4px;
2019-06-08 14:15:42 +00:00
img {
width: 32px;
height: 32px;
object-fit: contain;
}
}
.label {
display: flex;
flex-direction: column;
justify-content: center;
margin: 0 0.1em 0 0.2em;
.displayText {
line-height: 1.5;
}
.detailText {
font-size: 9px;
line-height: 9px;
}
}
&.highlighted {
background-color: $fallback--fg;
background-color: var(--lightBg, $fallback--fg);
}
}
}
2019-06-08 14:15:42 +00:00
input, textarea {
2019-06-09 18:23:56 +00:00
flex: 1 0 auto;
2019-03-26 02:38:15 +00:00
}
}
</style>