mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
498 lines
13 KiB
Vue
498 lines
13 KiB
Vue
<template>
|
|
<div class="select-emoji-wrapper">
|
|
<label class="main-label">{{ $t('popup_rename.select_emoji_label') }}:</label>
|
|
|
|
<!-- Selected Emoji input -->
|
|
<div @click.stop="openMenu" class="select-input-wrapper" :class="{'active-menu' : selectOpen}">
|
|
|
|
<!-- If is emoji selected -->
|
|
<div class="select-input" v-if="selectedEmoji">
|
|
<div @click.stop="resetEmoji" class="select-input-icon-wrapper">
|
|
<x-icon size="14" class="select-input-icon"/>
|
|
</div>
|
|
<Emoji class="emoji-preview" :emoji="selectedEmoji" location="emoji-picker-preview" />
|
|
<span>{{ selectedEmoji.name }}</span>
|
|
</div>
|
|
|
|
<!-- If is emoji not selected -->
|
|
<div class="not-selected" v-if="! selectedEmoji">
|
|
<span> {{ $t('popup_rename.set_emoji_input_placeholder') }}</span>
|
|
</div>
|
|
|
|
<chevron-down-icon class="row-icon" size="19"/>
|
|
</div>
|
|
|
|
<!-- Emojis List -->
|
|
<transition name="slide-in">
|
|
<div v-if="selectOpen">
|
|
<!-- Spinner -->
|
|
<div v-if="!loadedList" class="emoji-wrapper">
|
|
<Spinner/>
|
|
</div>
|
|
|
|
<!-- List -->
|
|
<div v-if="loadedList && emojis" class="emoji-wrapper">
|
|
|
|
<!-- Search input -->
|
|
<input @click.stop @input="searchEmojis" v-model="searchInput" class="emoji-input" :placeholder="$t('popup_rename.search_emoji_input_placeholder')">
|
|
|
|
<!-- Navigation of Emojis Groups -->
|
|
<ul v-show="searchInput.length < 1" class="groups-list">
|
|
<li @click.stop="scrollToGroup(group.name)" v-for="(group,i) in emojis.emojisGroups" :key="i" class="group-option" :class="{'active' : group.name === groupInView}">
|
|
<Emoji :emoji="group.emoji" location="emoji-picker" />
|
|
</li>
|
|
</ul>
|
|
|
|
<!-- All Emojis -->
|
|
<div v-show="searchInput.length < 1" @scroll="checkGroupInView" id="group-box" class="group-wrapper">
|
|
<div v-for="(group, name) in allEmoji" :key="name" class="options-wrapper" :id="`group-${name}`">
|
|
<label class="group-name-label">{{ name }}</label>
|
|
<ul class="options-list">
|
|
<li @click="setIcon({'emoji':emoji})" v-for="(emoji,i) in group" :key="i" class="option">
|
|
<Emoji :emoji="emoji" location="emoji-picker" />
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Searched emojis -->
|
|
<div v-if="searchInput.length > 0" class="group-wrapper">
|
|
<div class="options-wrapper">
|
|
<ul class="options-list">
|
|
<li @click="setIcon({'emoji':emoji})" v-for="(emoji,i) in filteredEmojis" :key="i" class="option">
|
|
<Emoji :emoji="emoji" location="emoji-picker" />
|
|
</li>
|
|
</ul>
|
|
<span class="not-found" v-if="filteredEmojis.length === 0 && filteredEmojisLoaded"> {{ $t('popup_rename.emoji_list_not_found') }}</span>
|
|
<Spinner v-if=" ! filteredEmojisLoaded "/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</transition>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { ChevronDownIcon, XIcon } from 'vue-feather-icons'
|
|
import Spinner from '@/components/FilesView/Spinner'
|
|
import Emoji from '@/components/Others/Emoji'
|
|
import { mapGetters } from 'vuex'
|
|
import { groupBy } from 'lodash'
|
|
import { events } from '@/bus'
|
|
|
|
|
|
export default {
|
|
name: 'EmojiPicker',
|
|
props: [ 'pickedEmoji' ],
|
|
components: {
|
|
ChevronDownIcon,
|
|
Spinner,
|
|
Emoji,
|
|
XIcon,
|
|
},
|
|
computed: {
|
|
...mapGetters([ 'emojis' ]),
|
|
allEmoji() {
|
|
return groupBy(this.emojis.emojisList, 'group')
|
|
}
|
|
},
|
|
data () {
|
|
return {
|
|
selectedEmoji: this.pickedEmoji,
|
|
searchInput: '',
|
|
filteredEmojis: [],
|
|
selectOpen: false,
|
|
loadedList: false,
|
|
filteredEmojisLoaded: true,
|
|
groupInView: 'Smileys & Emotion',
|
|
}
|
|
},
|
|
methods: {
|
|
checkGroupInView: _.debounce( function() {
|
|
|
|
this.emojis.emojisGroups.forEach(group => {
|
|
|
|
let element = document.getElementById(`group-${group.name}`).getBoundingClientRect()
|
|
let groupBox = document.getElementById('group-box').getBoundingClientRect()
|
|
|
|
// Check if the group is in the viewport of group-box
|
|
if (element.top < groupBox.top && element.bottom > groupBox.top) {
|
|
this.groupInView = group.name
|
|
}
|
|
})
|
|
|
|
}, 200),
|
|
scrollToGroup(name) {
|
|
|
|
let group = document.getElementById(`group-${name}`)
|
|
|
|
group.scrollIntoView({ behavior: 'smooth' })
|
|
|
|
this.groupInView = name
|
|
},
|
|
searchEmojis() {
|
|
|
|
// Turn on spinner until filteredEmojis will loaded
|
|
|
|
this.filteredEmojisLoaded = false
|
|
|
|
this.filteredEmojis = [],
|
|
|
|
this.filterEmojis()
|
|
|
|
},
|
|
filterEmojis: _.debounce(function() {
|
|
|
|
this.filteredEmojis = this.emojis.emojisList.filter(emoji => emoji.name.includes( this.searchInput.toLowerCase() ))
|
|
|
|
this.filteredEmojisLoaded = true
|
|
|
|
}, 800),
|
|
openMenu() {
|
|
|
|
this.loadedList = false
|
|
|
|
this.selectOpen = !this.selectOpen
|
|
|
|
// Load emojis from server just if not loaded already
|
|
if (this.selectOpen && ! this.emojis) {
|
|
this.$store.dispatch('getEmojisList').then((loaded) => {
|
|
this.loadedList = loaded
|
|
})
|
|
}
|
|
|
|
// Simulate loading for the emojisList processing
|
|
if(this.emojis) {
|
|
setTimeout(() => {
|
|
this.loadedList = true
|
|
}, 20);
|
|
}
|
|
|
|
this.searchInput = ''
|
|
|
|
this.groupInView = 'Smileys & Emotion'
|
|
},
|
|
setIcon(value) {
|
|
|
|
// Set emoji
|
|
this.selectedEmoji = value.emoji
|
|
|
|
events.$emit('setFolderIcon', { 'value': value })
|
|
|
|
this.selectOpen = false
|
|
},
|
|
resetEmoji() {
|
|
|
|
this.selectedEmoji = undefined
|
|
|
|
events.$emit('setFolderIcon', { 'value': 'default' })
|
|
}
|
|
},
|
|
mounted() {
|
|
|
|
this.selectOpen = false
|
|
|
|
events.$on('unClick', () => {
|
|
|
|
this.selectOpen = false
|
|
|
|
this.loadedList = false
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import "@assets/vue-file-manager/_inapp-forms.scss";
|
|
@import '@assets/vue-file-manager/_forms';
|
|
|
|
.select-emoji-wrapper {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.main-label {
|
|
@include font-size(14);
|
|
font-weight: 700;
|
|
margin-bottom: 8px;
|
|
display: block;
|
|
}
|
|
|
|
.emoji-wrapper {
|
|
height: 400px;
|
|
width: 100%;
|
|
position: absolute;
|
|
border: 1px solid transparent;
|
|
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
|
|
border-radius: 8px;
|
|
background: white;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 10px;
|
|
z-index: 10;
|
|
top: 152px;
|
|
|
|
|
|
.groups-list {
|
|
display: grid;
|
|
grid-template-columns: repeat(9, auto);
|
|
justify-content: space-between;
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
height: 90px;
|
|
|
|
.active {
|
|
background: $light_background;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.group-option {
|
|
width: 45px;
|
|
height: 45px;
|
|
list-style: none;
|
|
padding: 6px;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background: $light_background;
|
|
border-radius: 8px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.emoji-input {
|
|
width: 100%;
|
|
border-radius: 8px;
|
|
padding: 4px;
|
|
margin-bottom: 20px;
|
|
background: $light_background;
|
|
border: none;
|
|
padding: 13px 20px;
|
|
font-weight: 700;
|
|
|
|
&::placeholder {
|
|
font-weight: 700;
|
|
color: $light_text;
|
|
}
|
|
}
|
|
|
|
.group-wrapper {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
overflow-y: scroll;
|
|
padding: 0px;
|
|
|
|
.options-wrapper {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 10px;
|
|
|
|
&:last-child {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.options-list {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, 45px);
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
}
|
|
|
|
.group-name-label {
|
|
width: 100%;
|
|
@include font-size(14);
|
|
font-weight: 700;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.option {
|
|
list-style: none;
|
|
width: 45px;
|
|
height: 45px;
|
|
padding: 6px;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background: $light_background;
|
|
border-radius: 8px;
|
|
}
|
|
}
|
|
|
|
.not-found {
|
|
align-self: center;
|
|
margin: auto;
|
|
font-weight: 700;
|
|
padding: 10px;
|
|
border-radius: 8px;
|
|
background: $light_background;
|
|
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.select-input-wrapper {
|
|
height: 50px;
|
|
padding: 13px 20px;
|
|
border: 1px solid transparent;
|
|
border-radius: 8px;
|
|
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border: 1px solid transparent;
|
|
@include transition(150ms);
|
|
|
|
.row-icon {
|
|
@include transition(150ms);
|
|
}
|
|
|
|
&.active-menu {
|
|
border-color: $theme;
|
|
box-shadow: 0 0 7px rgba($theme, 0.3);
|
|
|
|
.row-icon {
|
|
transform: rotate(180deg);
|
|
}
|
|
}
|
|
|
|
.select-input {
|
|
@include font-size(16);
|
|
font-weight: 700;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
|
|
.emoji-preview {
|
|
margin-left: 5px;
|
|
margin-right: 10px;
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
|
|
.select-input-icon-wrapper {
|
|
width: 22px;
|
|
height: 22px;
|
|
border-radius: 6px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-left: -7px;
|
|
|
|
&:hover {
|
|
|
|
.select-input-icon {
|
|
line {
|
|
stroke: $theme;
|
|
}
|
|
}
|
|
}
|
|
|
|
.select-input-icon {
|
|
line {
|
|
stroke: $text;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.not-selected {
|
|
span {
|
|
color: rgba($text, 0.5);
|
|
@include font-size(15);
|
|
font-weight: 700
|
|
}
|
|
}
|
|
}
|
|
|
|
.slide-in-enter-active {
|
|
transition: all 150ms ease;
|
|
}
|
|
|
|
.slide-in-enter {
|
|
opacity: 0;
|
|
transform: translateY(-210px);
|
|
}
|
|
|
|
.slide-in-enter-to {
|
|
transform: translateY(-134px);
|
|
}
|
|
|
|
@media (max-width: 690px) {
|
|
.emoji-wrapper {
|
|
height: 300px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 336px) {
|
|
.emoji-wrapper {
|
|
top: 173px;
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
.emoji-wrapper {
|
|
background: $dark_mode_background;
|
|
|
|
.emoji-input {
|
|
background: $dark_mode_foreground;
|
|
}
|
|
|
|
.groups-list {
|
|
.active {
|
|
background: $dark_mode_foreground !important;
|
|
}
|
|
|
|
.group-option {
|
|
&:hover {
|
|
background: $dark_mode_foreground !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.options-wrapper {
|
|
.option {
|
|
&:hover {
|
|
background: $dark_mode_foreground !important;
|
|
}
|
|
}
|
|
|
|
.not-found {
|
|
background: $dark_mode_foreground !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.select-input-wrapper {
|
|
background: $dark_mode_foreground;
|
|
|
|
.not-selected {
|
|
span {
|
|
color: $dark_mode_text_secondary;
|
|
}
|
|
}
|
|
|
|
.select-input-icon-wrapper {
|
|
&:hover {
|
|
.select-input-icon {
|
|
line {
|
|
stroke: $theme !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.select-input-icon {
|
|
line {
|
|
stroke: $dark_mode_text_primary !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
</style>
|