mirror of
https://git.pleroma.social/sjw/pleroma-fe.git
synced 2024-12-22 23:49:30 +01:00
some improvements from testing prod
This commit is contained in:
parent
1e0d75782f
commit
c27bbfd21c
@ -106,9 +106,6 @@ const EmojiPicker = {
|
||||
}
|
||||
},
|
||||
inject: ['popoversZLayer'],
|
||||
mounted () {
|
||||
this.updateEmojiSize()
|
||||
},
|
||||
data () {
|
||||
return {
|
||||
keyword: '',
|
||||
@ -138,7 +135,7 @@ const EmojiPicker = {
|
||||
const css = window.getComputedStyle(this.$refs.popover.$el)
|
||||
const emojiSize = css.getPropertyValue('--emojiSize')
|
||||
const emojiSizeUnit = emojiSize.replace(/[0-9,.]+/, '')
|
||||
const emojiSizeValue = emojiSize.replace(/[^0-9,.]+/, '')
|
||||
const emojiSizeValue = Number(emojiSize.replace(/[^0-9,.]+/, ''))
|
||||
const fontSize = css.getPropertyValue('font-size').replace(/[^0-9,.]+/, '')
|
||||
|
||||
let emojiSizeReal
|
||||
@ -245,6 +242,7 @@ const EmojiPicker = {
|
||||
},
|
||||
onShowing () {
|
||||
const oldContentLoaded = this.contentLoaded
|
||||
this.updateEmojiSize()
|
||||
this.recalculateItemPerRow()
|
||||
this.$nextTick(() => {
|
||||
this.$refs.search.focus()
|
||||
@ -287,7 +285,7 @@ const EmojiPicker = {
|
||||
},
|
||||
computed: {
|
||||
minItemSize () {
|
||||
return this.emojiHeight
|
||||
return this.emojiSize
|
||||
},
|
||||
// used to watch it
|
||||
fontSize () {
|
||||
@ -299,15 +297,12 @@ const EmojiPicker = {
|
||||
emojiHeight () {
|
||||
return this.emojiSize
|
||||
},
|
||||
emojiWidth () {
|
||||
return this.emojiSize
|
||||
},
|
||||
itemPerRow () {
|
||||
console.log(
|
||||
this.emojiWidth,
|
||||
this.emojiSize,
|
||||
this.width
|
||||
)
|
||||
return this.width ? Math.floor(this.width / this.emojiWidth) : 6
|
||||
return this.width ? Math.floor(this.width / this.emojiSize) : 6
|
||||
},
|
||||
activeGroupView () {
|
||||
return this.showingStickers ? '' : this.activeGroup
|
||||
|
Loading…
Reference in New Issue
Block a user