mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 00:02:15 +00:00
328 lines
9.4 KiB
Vue
328 lines
9.4 KiB
Vue
<template>
|
|
<div class="set-folder-icon">
|
|
|
|
<TabWrapper >
|
|
<TabOption :selected="true" id="emoji-list" :title="$t('popup_rename.tab_emoji_title')" icon="emoji">
|
|
<div class="select-emoji-wrapper">
|
|
<label class="main-label">Pick Yout Emoji Icon:</label>
|
|
|
|
<div @click="openMenu" v-if="!selectOpen" class="select-input-wrapper">
|
|
|
|
<div class="select-input" v-if="selectedEmoji">
|
|
<div class="emoji-preview">{{selectedEmoji.char}}</div>
|
|
<span>{{selectedEmoji.name}}</span>
|
|
</div>
|
|
|
|
<div class="not-selected" v-if="! selectedEmoji">
|
|
<span> {{$t('popup_rename.set_emoji_input_placeholder')}}</span>
|
|
</div>
|
|
|
|
<chevron-down-icon size="19" class="chevron-icon"/>
|
|
</div>
|
|
|
|
<transition v-if="selectOpen" name="slide-in">
|
|
<div class="emoji-wrapper">
|
|
<input v-model="searchEmoji" class="emoji-input" :placeholder="$t('popup_rename.search_emoji_input_placeholder')" >
|
|
<label class="object-label"> {{$t('popup_rename.emoji_list_label')}}</label>
|
|
<ul class="options-list">
|
|
<li @click="setIcon({'emoji':emoji})" class="option" v-for="(emoji,i) in allEmoji" :key="i">
|
|
{{emoji.char}}
|
|
</li>
|
|
<span class="not-found" v-if="allEmoji.length === 0"> {{$t('popup_rename.emoji_list_not_found')}}</span>
|
|
</ul>
|
|
</div>
|
|
</transition>
|
|
</div>
|
|
</TabOption>
|
|
|
|
<TabOption :title="$t('popup_rename.tab_color_title')" icon="folder">
|
|
<div class="color-pick-wrapper">
|
|
<label class="main-label">{{$t('popup_rename.color_pick_label')}}</label>
|
|
<ul class="color-wrapper">
|
|
<li v-for="(color, index) in colors"
|
|
:key="index"
|
|
@click="setIcon({'color': color})"
|
|
class="single-color"
|
|
:class="{'active-color': color === selectedColor }"
|
|
:style="{background:color}" />
|
|
</ul>
|
|
</div>
|
|
</TabOption>
|
|
</TabWrapper>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {SmileIcon, FolderIcon, ChevronDownIcon } from 'vue-feather-icons'
|
|
import TabWrapper from '@/components/Others/TabWrapper'
|
|
import TabOption from '@/components/Others/TabOption'
|
|
import emojis from '../../emoji.json'
|
|
import {events} from '@/bus'
|
|
|
|
export default {
|
|
name: "SetFolderIcon",
|
|
props: ['folderData', 'unique_id'],
|
|
components: {
|
|
ChevronDownIcon ,
|
|
TabWrapper,
|
|
TabOption,
|
|
FolderIcon,
|
|
SmileIcon,
|
|
},
|
|
computed: {
|
|
allEmoji() {
|
|
let emojisList = this.emojis
|
|
|
|
if(this.searchEmoji !== undefined) {
|
|
emojisList = this.emojis.filter(emoji => emoji.name.includes(this.searchEmoji))
|
|
}
|
|
|
|
this.$emojisCustomize('emoji-list')
|
|
|
|
return emojisList ? emojisList : "Not Found"
|
|
},
|
|
},
|
|
data () {
|
|
return {
|
|
selectedEmoji: undefined,
|
|
selectedColor: undefined,
|
|
searchEmoji: undefined,
|
|
selectOpen: false,
|
|
emojis: emojis,
|
|
colors: ['#FF6633', '#FFB399', '#FF33FF', '#FFFF99', '#00B3E6',
|
|
'#E6B333', '#3366E6', '#999966', '#99FF99', '#B34D4D',
|
|
'#80B300', '#809900', '#E6B3B3', '#6680B3']
|
|
}
|
|
},
|
|
methods: {
|
|
openMenu() {
|
|
this.selectOpen = ! this.selectOpen
|
|
|
|
this.$emojisCustomize('emoji-list')
|
|
|
|
},
|
|
setIcon(value) {
|
|
if(value.emoji)
|
|
this.selectedEmoji = value.emoji
|
|
|
|
if(value.color)
|
|
this.selectedColor = value.color
|
|
|
|
events.$emit('setFolderIcon', {'value':value, 'unique_id':this.unique_id})
|
|
|
|
|
|
this.selectOpen = false
|
|
|
|
this.$emojisCustomize()
|
|
|
|
}
|
|
},
|
|
mounted () {
|
|
this.selectOpen = false
|
|
}
|
|
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import "@assets/vue-file-manager/_inapp-forms.scss";
|
|
@import '@assets/vue-file-manager/_forms';
|
|
|
|
.color-pick-wrapper {
|
|
.color-wrapper {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
margin-bottom: 20px;
|
|
.single-color {
|
|
width: 40px;
|
|
height: 40px;
|
|
list-style: none;
|
|
margin: 8px;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
|
|
&.active-color {
|
|
border: 2px solid $text;
|
|
}
|
|
|
|
&:hover {
|
|
border: 2px solid $text;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.select-emoji-wrapper{
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.main-label {
|
|
@include font-size(14);
|
|
font-weight: 700;
|
|
margin-bottom: 8px;
|
|
display: block;
|
|
}
|
|
|
|
.emoji-wrapper {
|
|
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;
|
|
top: 89px;
|
|
|
|
.emoji-input {
|
|
margin: auto;
|
|
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;
|
|
}
|
|
}
|
|
|
|
.options-list {
|
|
max-height: 200px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
overflow: hidden;
|
|
overflow-y: scroll;
|
|
padding: 0px;
|
|
|
|
.option {
|
|
list-style: none;
|
|
width: 45px;
|
|
height: 45px;
|
|
padding: 6px;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background: $light_background;
|
|
border-radius: 8px;
|
|
}
|
|
}
|
|
.not-found {
|
|
margin:auto;
|
|
font-weight: 700;
|
|
padding: 10px;
|
|
border-radius: 8px;
|
|
background:$light_background ;
|
|
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
|
|
}
|
|
}
|
|
.object-label {
|
|
@include font-size(14);
|
|
margin-bottom: 8px;
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
|
|
|
|
.select-input-wrapper{
|
|
height: 48px;
|
|
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;
|
|
|
|
.select-input {
|
|
@include font-size(16);
|
|
font-weight: 700;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
|
|
.emoji-preview {
|
|
width: 25px;
|
|
height: 25px;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
|
|
.not-selected {
|
|
span {
|
|
color: rgba($text, 0.5);
|
|
@include font-size(15);
|
|
font-weight: 700
|
|
}
|
|
}
|
|
}
|
|
|
|
.wrapper {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
|
|
.set-folder-icon {
|
|
position: relative;
|
|
}
|
|
|
|
.slide-in-enter-active {
|
|
transition: all 5s ease;
|
|
}
|
|
|
|
.slide-in-enter
|
|
{
|
|
opacity: 0;
|
|
transform: translateY(-50px);
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.color-pick-wrapper{
|
|
.color-wrapper{
|
|
.single-color {
|
|
&.active-color {
|
|
border: 2px solid ;
|
|
}
|
|
&:hover {
|
|
border: 2px solid $dark_mode_text_primary;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.emoji-wrapper {
|
|
background: $dark_mode_background;
|
|
.emoji-input {
|
|
background: $dark_mode_foreground ;
|
|
}
|
|
.options-list {
|
|
.option {
|
|
&:hover {
|
|
background: $dark_mode_foreground;
|
|
}
|
|
}
|
|
.not-found {
|
|
background: $dark_mode_foreground;
|
|
}
|
|
}
|
|
}
|
|
|
|
.select-input-wrapper {
|
|
background: $dark_mode_foreground;
|
|
.not-selected {
|
|
span {
|
|
color:$dark_mode_text_secondary;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
</style>
|