fixed a lot of bugs with emoji picker, improved relevant components

This commit is contained in:
Henry Jameson 2019-08-12 20:01:38 +03:00
parent 579b5c9e77
commit 5851f97eb0
12 changed files with 300 additions and 150 deletions

View file

@ -58,6 +58,16 @@ const EmojiInput = {
required: false, required: false,
type: Boolean, type: Boolean,
default: false default: false
},
emojiPickerExternalTrigger: {
required: false,
type: Boolean,
default: false
},
stickerPicker: {
required: false,
type: Boolean,
default: false
} }
}, },
data () { data () {
@ -95,9 +105,6 @@ const EmojiInput = {
textAtCaret () { textAtCaret () {
return (this.wordAtCaret || {}).word || '' return (this.wordAtCaret || {}).word || ''
}, },
pickerIconBottom () {
return this.input && this.input.tag === 'textarea'
},
wordAtCaret () { wordAtCaret () {
if (this.value && this.caret) { if (this.value && this.caret) {
const word = Completion.wordAtPosition(this.value, this.caret - 1) || {} const word = Completion.wordAtPosition(this.value, this.caret - 1) || {}
@ -133,6 +140,9 @@ const EmojiInput = {
} }
}, },
methods: { methods: {
triggerShowPicker () {
this.showPicker = true
},
togglePicker () { togglePicker () {
this.showPicker = !this.showPicker this.showPicker = !this.showPicker
}, },
@ -148,6 +158,15 @@ const EmojiInput = {
this.value.substring(this.caret) this.value.substring(this.caret)
].join('') ].join('')
this.$emit('input', newValue) this.$emit('input', newValue)
const position = this.caret + insertion.length
this.$nextTick(function () {
// Re-focus inputbox after clicking suggestion
this.input.elm.focus()
// Set selection right after the replacement instead of the very end
this.input.elm.setSelectionRange(position, position)
this.caret = position
})
}, },
replaceText (e, suggestion) { replaceText (e, suggestion) {
const len = this.suggestions.length || 0 const len = this.suggestions.length || 0
@ -264,6 +283,14 @@ const EmojiInput = {
onClickOutside () { onClickOutside () {
this.showPicker = false this.showPicker = false
}, },
onStickerUploaded (e) {
this.showPicker = false
this.$emit('sticker-uploaded', e)
},
onStickerUploadFailed (e) {
this.showPicker = false
this.$emit('sticker-upload-Failed', e)
},
setCaret ({ target: { selectionStart } }) { setCaret ({ target: { selectionStart } }) {
this.caret = selectionStart this.caret = selectionStart
}, },

View file

@ -6,8 +6,8 @@
<slot /> <slot />
<template v-if="emojiPicker"> <template v-if="emojiPicker">
<div <div
v-if="!emojiPickerExternalTrigger"
class="emoji-picker-icon" class="emoji-picker-icon"
:class="pickerIconBottom ? 'picker-icon-bottom': 'picker-icon-right'"
@click.prevent="togglePicker" @click.prevent="togglePicker"
> >
<i class="icon-smile" /> <i class="icon-smile" />
@ -16,8 +16,11 @@
v-if="emojiPicker" v-if="emojiPicker"
ref="picker" ref="picker"
:class="{ hide: !showPicker }" :class="{ hide: !showPicker }"
:sticker-picker="stickerPicker"
class="emoji-picker-panel" class="emoji-picker-panel"
@emoji="insert" @emoji="insert"
@sticker-uploaded="onStickerUploaded"
@sticker-upload-failed="onStickerUploadFailed"
/> />
</template> </template>
<div <div
@ -62,6 +65,8 @@
.emoji-picker-icon { .emoji-picker-icon {
position: absolute; position: absolute;
top: 0;
right: 0;
margin: 0 .25em; margin: 0 .25em;
font-size: 16px; font-size: 16px;
cursor: pointer; cursor: pointer;
@ -70,15 +75,6 @@
color: $fallback--text; color: $fallback--text;
color: var(--text, $fallback--text); color: var(--text, $fallback--text);
} }
&.picker-icon-bottom {
bottom: 0;
left: 0;
}
&.picker-icon-right {
top: 0;
right: 0;
}
} }
.emoji-picker-panel { .emoji-picker-panel {
position: absolute; position: absolute;

View file

@ -1,15 +1,26 @@
const filterByKeyword = (list, keyword = '') => { const filterByKeyword = (list, keyword = '') => {
return list.filter(x => x.displayText.includes(keyword)) return list.filter(x => x.displayText.includes(keyword))
} }
const EmojiPicker = { const EmojiPicker = {
props: {
stickerPicker: {
required: false,
type: Boolean,
default: false
}
},
data () { data () {
return { return {
keyword: '', keyword: '',
activeGroup: 'standard', activeGroup: 'custom',
showingAdditional: false showingStickers: false
} }
}, },
components: {
StickerPicker: () => import('../sticker_picker/sticker_picker.vue')
},
methods: { methods: {
onEmoji (emoji) { onEmoji (emoji) {
const value = emoji.imageUrl ? `:${emoji.displayText}:` : emoji.replacement const value = emoji.imageUrl ? `:${emoji.displayText}:` : emoji.replacement
@ -19,37 +30,72 @@ const EmojiPicker = {
highlight (key) { highlight (key) {
const ref = this.$refs['group-' + key] const ref = this.$refs['group-' + key]
const top = ref[0].offsetTop const top = ref[0].offsetTop
this.$refs['emoji-groups'].scrollTop = top + 1 this.setShowStickers(false)
this.activeGroup = key this.activeGroup = key
}, this.$nextTick(() => {
scrolledGroup (e) { this.$refs['emoji-groups'].scrollTop = top + 1
const top = e.target.scrollTop
Object.keys(this.emojis).forEach(key => {
if (this.$refs['group-' + key][0].offsetTop < top) {
this.activeGroup = key
}
}) })
}, },
toggleAdditional (value) { scrolledGroup (e) {
this.showingAdditional = value const target = (e && e.target) || this.$refs['emoji-groups']
const top = target.scrollTop + 5
this.$nextTick(() => {
this.emojisView.forEach(group => {
const ref = this.$refs['group-' + group.id]
if (ref[0].offsetTop <= top) {
this.activeGroup = group.id
}
})
})
},
toggleStickers () {
this.showingStickers = !this.showingStickers
},
setShowStickers (value) {
this.showingStickers = value
},
onStickerUploaded (e) {
this.$emit('sticker-uploaded', e)
},
onStickerUploadFailed (e) {
this.$emit('sticker-upload-failed', e)
}
},
watch: {
keyword () {
this.scrolledGroup()
} }
}, },
computed: { computed: {
activeGroupView () {
return this.showingStickers ? '' : this.activeGroup
},
stickersAvailable () {
if (this.$store.state.instance.stickers) {
return this.$store.state.instance.stickers.length > 0
}
return 0
},
emojis () { emojis () {
const standardEmojis = this.$store.state.instance.emoji || [] const standardEmojis = this.$store.state.instance.emoji || []
const customEmojis = this.$store.state.instance.customEmoji || [] const customEmojis = this.$store.state.instance.customEmoji || []
return { return [
custom: { {
text: 'Custom', id: 'custom',
icon: 'icon-picture', text: this.$t('emoji.custom'),
icon: 'icon-smile',
emojis: filterByKeyword(customEmojis, this.keyword) emojis: filterByKeyword(customEmojis, this.keyword)
}, },
standard: { {
text: 'Standard', id: 'standard',
icon: 'icon-star', text: this.$t('emoji.unicode'),
icon: 'icon-picture',
emojis: filterByKeyword(standardEmojis, this.keyword) emojis: filterByKeyword(standardEmojis, this.keyword)
} }
} ]
},
emojisView () {
return this.emojis.filter(value => value.emojis.length > 0)
} }
} }
} }

View file

@ -1,39 +1,78 @@
@import '../../_variables.scss'; @import '../../_variables.scss';
.emoji-picker { .emoji-picker {
position: absolute;
z-index: 1;
right: 0;
width: 300px;
height: 300px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
position: absolute;
right: 0;
left: 0;
height: 300px;
margin: 0 !important; margin: 0 !important;
z-index: 1;
.emoji { .panel-body {
&-tabs { display: flex;
&-item { flex-direction: column;
padding: 0 5px; flex: 1 1 0;
min-height: 0px;
}
&.active { .additional-tabs {
border-bottom: 4px solid; border-left: 1px solid;
border-left-color: $fallback--icon;
border-left-color: var(--icon, $fallback--icon);
padding-left: 5px;
flex: 0 0 0;
}
i { .emoji-tabs {
color: $fallback--lightText; flex: 1 1 0;
color: var(--lightText, $fallback--lightText); }
}
.additional-tabs,
.emoji-tabs {
&-item {
padding: 0 5px;
cursor: pointer;
font-size: 24px;
&.disabled {
opacity: 0.5;
pointer-events: none;
}
&.active {
border-bottom: 4px solid;
i {
color: $fallback--lightText;
color: var(--lightText, $fallback--lightText);
} }
} }
} }
}
.sticker-picker {
flex: 1 1 0
}
.stickers,
.emoji {
&-content { &-content {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} flex: 1 1 0;
min-height: 0;
&.hidden {
display: none
}
}
}
.emoji {
&-search { &-search {
padding: 5px; padding: 5px;
flex: 0 0 1px; flex: 0 0 0;
input { input {
width: 100%; width: 100%;
@ -50,13 +89,16 @@
display: flex; display: flex;
align-items: center; align-items: center;
flex-wrap: wrap; flex-wrap: wrap;
padding: 5px; padding-left: 5px;
justify-content: space-between; justify-content: left;
&-title { &-title {
font-size: 12px; font-size: 12px;
width: 100%; width: 100%;
margin: 0; margin: 0;
&.disabled {
display: none;
}
} }
} }
@ -68,7 +110,7 @@
font-size: 32px; font-size: 32px;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
margin: 2px; margin: 4px;
cursor: pointer; cursor: pointer;

View file

@ -3,30 +3,44 @@
<div class="panel-heading"> <div class="panel-heading">
<span class="emoji-tabs"> <span class="emoji-tabs">
<span <span
v-for="(value, key) in emojis" v-for="group in emojis"
:key="key" :key="group.id"
class="emoji-tabs-item" class="emoji-tabs-item"
:class="{'active': activeGroup === key}" :class="{
:title="value.text" active: activeGroupView === group.id,
@click.prevent="highlight(key)" disabled: group.emojis.length === 0
}"
:title="group.text"
@click.prevent="highlight(group.id)"
> >
<i :class="value.icon" /> <i :class="group.icon" />
</span> </span>
</span> </span>
<span class="additional-tabs"> <span
<slot name="tabs" /> v-if="stickerPicker"
class="additional-tabs"
>
<span
class="stickers-tab-icon additional-tabs-item"
:class="{active: showingStickers}"
:title="$t('emoji.stickers')"
@click.prevent="toggleStickers"
>
<i class="icon-star" />
</span>
</span> </span>
</div> </div>
<div class="panel-body emoji-dropdown-menu-content"> <div class="panel-body">
<div <div
v-if="!showingAdditional"
class="emoji-content" class="emoji-content"
:class="{hidden: showingStickers}"
> >
<div class="emoji-search"> <div class="emoji-search">
<input <input
v-model="keyword" v-model="keyword"
type="text" type="text"
class="form-control" class="form-control"
:placeholder="$t('emoji.search_emoji')"
> >
</div> </div>
<div <div
@ -35,22 +49,22 @@
@scroll="scrolledGroup" @scroll="scrolledGroup"
> >
<div <div
v-for="(value, key) in emojis" v-for="group in emojisView"
:key="key" :key="group.id"
class="emoji-group" class="emoji-group"
> >
<h6 <h6
:ref="'group-' + key" :ref="'group-' + group.id"
class="emoji-group-title" class="emoji-group-title"
> >
{{ value.text }} {{ group.text }}
</h6> </h6>
<span <span
v-for="emoji in value.emojis" v-for="emoji in group.emojis"
:key="key + emoji.displayText" :key="group.id + emoji.displayText"
:title="emoji.displayText" :title="emoji.displayText"
class="emoji-item" class="emoji-item"
@click="onEmoji(emoji)" @click.stop.prevent="onEmoji(emoji)"
> >
<span v-if="!emoji.imageUrl">{{ emoji.replacement }}</span> <span v-if="!emoji.imageUrl">{{ emoji.replacement }}</span>
<img <img
@ -61,11 +75,17 @@
</div> </div>
</div> </div>
</div> </div>
<div v-if="showingAdditional" class="additional-tabs-content"> <div
<slot name="tab-content" /> v-if="showingStickers"
class="stickers-content"
>
<sticker-picker
@uploaded="onStickerUploaded"
@upload-failed="onStickerUploadFailed"
/>
</div> </div>
</div> </div>
</div> </div>
</template> </template>
<script src="./emoji_picker.js"></script> <script src="./emoji_picker.js"></script>

View file

@ -3,7 +3,6 @@ import MediaUpload from '../media_upload/media_upload.vue'
import ScopeSelector from '../scope_selector/scope_selector.vue' import ScopeSelector from '../scope_selector/scope_selector.vue'
import EmojiInput from '../emoji_input/emoji_input.vue' import EmojiInput from '../emoji_input/emoji_input.vue'
import PollForm from '../poll/poll_form.vue' import PollForm from '../poll/poll_form.vue'
import StickerPicker from '../sticker_picker/sticker_picker.vue'
import fileTypeService from '../../services/file_type/file_type.service.js' import fileTypeService from '../../services/file_type/file_type.service.js'
import { reject, map, uniqBy } from 'lodash' import { reject, map, uniqBy } from 'lodash'
import suggestor from '../emoji_input/suggestor.js' import suggestor from '../emoji_input/suggestor.js'
@ -35,7 +34,6 @@ const PostStatusForm = {
MediaUpload, MediaUpload,
EmojiInput, EmojiInput,
PollForm, PollForm,
StickerPicker,
ScopeSelector ScopeSelector
}, },
mounted () { mounted () {
@ -84,8 +82,7 @@ const PostStatusForm = {
contentType contentType
}, },
caret: 0, caret: 0,
pollFormVisible: false, pollFormVisible: false
stickerPickerVisible: false
} }
}, },
computed: { computed: {
@ -161,12 +158,6 @@ const PostStatusForm = {
safeDMEnabled () { safeDMEnabled () {
return this.$store.state.instance.safeDM return this.$store.state.instance.safeDM
}, },
stickersAvailable () {
if (this.$store.state.instance.stickers) {
return this.$store.state.instance.stickers.length > 0
}
return 0
},
pollsAvailable () { pollsAvailable () {
return this.$store.state.instance.pollsAvailable && return this.$store.state.instance.pollsAvailable &&
this.$store.state.instance.pollLimits.max_options >= 2 this.$store.state.instance.pollLimits.max_options >= 2
@ -222,7 +213,6 @@ const PostStatusForm = {
poll: {} poll: {}
} }
this.pollFormVisible = false this.pollFormVisible = false
this.stickerPickerVisible = false
this.$refs.mediaUpload.clearFile() this.$refs.mediaUpload.clearFile()
this.clearPollForm() this.clearPollForm()
this.$emit('posted') this.$emit('posted')
@ -239,7 +229,6 @@ const PostStatusForm = {
addMediaFile (fileInfo) { addMediaFile (fileInfo) {
this.newStatus.files.push(fileInfo) this.newStatus.files.push(fileInfo)
this.enableSubmit() this.enableSubmit()
this.stickerPickerVisible = false
}, },
removeMediaFile (fileInfo) { removeMediaFile (fileInfo) {
let index = this.newStatus.files.indexOf(fileInfo) let index = this.newStatus.files.indexOf(fileInfo)
@ -293,20 +282,16 @@ const PostStatusForm = {
target.style.height = null target.style.height = null
} }
}, },
showEmoji () {
this.$refs['textarea'].focus()
this.$refs['emoji-input'].triggerShowPicker()
},
clearError () { clearError () {
this.error = null this.error = null
}, },
changeVis (visibility) { changeVis (visibility) {
this.newStatus.visibility = visibility this.newStatus.visibility = visibility
}, },
toggleStickerPicker () {
this.stickerPickerVisible = !this.stickerPickerVisible
},
clearStickerPicker () {
if (this.$refs.stickerPicker) {
this.$refs.stickerPicker.clear()
}
},
togglePollForm () { togglePollForm () {
this.pollFormVisible = !this.pollFormVisible this.pollFormVisible = !this.pollFormVisible
}, },

View file

@ -74,10 +74,15 @@
> >
</EmojiInput> </EmojiInput>
<EmojiInput <EmojiInput
ref="emoji-input"
v-model="newStatus.status" v-model="newStatus.status"
:suggest="emojiUserSuggestor" :suggest="emojiUserSuggestor"
emoji-picker
class="form-control main-input" class="form-control main-input"
emoji-picker
emoji-picker-external-trigger
sticker-picker
@sticker-uploaded="addMediaFile"
@sticker-upload-failed="uploadFailed"
> >
<textarea <textarea
ref="textarea" ref="textarea"
@ -160,14 +165,12 @@
@upload-failed="uploadFailed" @upload-failed="uploadFailed"
/> />
<div <div
v-if="stickersAvailable" class="emoji-icon"
class="sticker-icon"
> >
<i <i
:title="$t('stickers.add_sticker')" :title="$t('emoji.add_emoji')"
class="icon-picture btn btn-default" class="icon-smile btn btn-default"
:class="{ selected: stickerPickerVisible }" @click.stop.prevent="showEmoji"
@click="toggleStickerPicker"
/> />
</div> </div>
<div <div
@ -260,11 +263,6 @@
<label for="filesSensitive">{{ $t('post_status.attachments_sensitive') }}</label> <label for="filesSensitive">{{ $t('post_status.attachments_sensitive') }}</label>
</div> </div>
</form> </form>
<sticker-picker
v-if="stickerPickerVisible"
ref="stickerPicker"
@uploaded="addMediaFile"
/>
</div> </div>
</template> </template>
@ -327,7 +325,7 @@
} }
} }
.poll-icon, .sticker-icon { .poll-icon, .emoji-icon {
font-size: 26px; font-size: 26px;
flex: 1; flex: 1;
@ -337,7 +335,7 @@
} }
} }
.sticker-icon { .emoji-icon {
flex: 0; flex: 0;
min-width: 50px; min-width: 50px;
} }

View file

@ -3,9 +3,9 @@ import statusPosterService from '../../services/status_poster/status_poster.serv
import TabSwitcher from '../tab_switcher/tab_switcher.js' import TabSwitcher from '../tab_switcher/tab_switcher.js'
const StickerPicker = { const StickerPicker = {
components: [ components: {
TabSwitcher TabSwitcher
], },
data () { data () {
return { return {
meta: { meta: {

View file

@ -2,32 +2,30 @@
<div <div
class="sticker-picker" class="sticker-picker"
> >
<div <tab-switcher
class="sticker-picker-panel" class="tab-switcher"
:render-only-focused="true"
scrollable-tabs
> >
<tab-switcher <div
:render-only-focused="true" v-for="stickerpack in pack"
:key="stickerpack.path"
:image-tooltip="stickerpack.meta.title"
:image="stickerpack.path + stickerpack.meta.tabIcon"
class="sticker-picker-content"
> >
<div <div
v-for="stickerpack in pack" v-for="sticker in stickerpack.meta.stickers"
:key="stickerpack.path" :key="sticker"
:image-tooltip="stickerpack.meta.title" class="sticker"
:image="stickerpack.path + stickerpack.meta.tabIcon" @click.stop.prevent="pick(stickerpack.path + sticker, stickerpack.meta.title)"
class="sticker-picker-content"
> >
<div <img
v-for="sticker in stickerpack.meta.stickers" :src="stickerpack.path + sticker"
:key="sticker"
class="sticker"
@click="pick(stickerpack.path + sticker, stickerpack.meta.title)"
> >
<img
:src="stickerpack.path + sticker"
>
</div>
</div> </div>
</tab-switcher> </div>
</div> </tab-switcher>
</div> </div>
</template> </template>
@ -37,22 +35,24 @@
@import '../../_variables.scss'; @import '../../_variables.scss';
.sticker-picker { .sticker-picker {
.sticker-picker-panel { width: 100%;
display: inline-block; position: relative;
width: 100%; .tab-switcher {
.sticker-picker-content { position: absolute;
max-height: 300px; top: 0;
overflow-y: scroll; bottom: 0;
overflow-x: auto; left: 0;
.sticker { right: 0;
display: inline-block; }
width: 20%; .sticker-picker-content {
height: 20%; .sticker {
img { display: inline-block;
width: 100%; width: 20%;
&:hover { height: 20%;
filter: drop-shadow(0 0 5px var(--link, $fallback--link)); img {
} width: 100%;
&:hover {
filter: drop-shadow(0 0 5px var(--link, $fallback--link));
} }
} }
} }

View file

@ -4,7 +4,26 @@ import './tab_switcher.scss'
export default Vue.component('tab-switcher', { export default Vue.component('tab-switcher', {
name: 'TabSwitcher', name: 'TabSwitcher',
props: ['renderOnlyFocused', 'onSwitch', 'customActive'], props: {
renderOnlyFocused: {
required: false,
type: Boolean,
default: false
},
onSwitch: {
required: false,
type: Function
},
customActive: {
required: false,
type: String
},
scrollableTabs: {
required: false,
type: Boolean,
default: false
}
},
data () { data () {
return { return {
active: this.$slots.default.findIndex(_ => _.tag) active: this.$slots.default.findIndex(_ => _.tag)
@ -18,7 +37,8 @@ export default Vue.component('tab-switcher', {
}, },
methods: { methods: {
activateTab (index, dataset) { activateTab (index, dataset) {
return () => { return (e) => {
e.preventDefault()
if (typeof this.onSwitch === 'function') { if (typeof this.onSwitch === 'function') {
this.onSwitch.call(null, index, this.$slots.default[index].elm.dataset) this.onSwitch.call(null, index, this.$slots.default[index].elm.dataset)
} }
@ -85,7 +105,7 @@ export default Vue.component('tab-switcher', {
<div class="tabs"> <div class="tabs">
{tabs} {tabs}
</div> </div>
<div class="contents"> <div class={'contents' + (this.scrollableTabs ? ' scrollable-tabs' : '')}>
{contents} {contents}
</div> </div>
</div> </div>

View file

@ -1,10 +1,21 @@
@import '../../_variables.scss'; @import '../../_variables.scss';
.tab-switcher { .tab-switcher {
display: flex;
flex-direction: column;
.contents { .contents {
flex: 1 0 auto;
min-height: 0px;
.hidden { .hidden {
display: none; display: none;
} }
&.scrollable-tabs {
flex-basis: 0;
overflow-y: auto;
}
} }
.tabs { .tabs {
display: flex; display: flex;

View file

@ -106,8 +106,13 @@
"expired": "Poll ended {0} ago", "expired": "Poll ended {0} ago",
"not_enough_options": "Too few unique options in poll" "not_enough_options": "Too few unique options in poll"
}, },
"stickers": { "emoji": {
"add_sticker": "Add Sticker" "stickers": "Stickers",
"emoji": "Emoji",
"search_emoji": "Search for an emoji",
"add_emoji": "Insert emoji",
"custom": "Custom emoji",
"unicode": "Unicode emoji"
}, },
"interactions": { "interactions": {
"favs_repeats": "Repeats and Favorites", "favs_repeats": "Repeats and Favorites",