Whalebird-desktop-client-ma.../src/renderer/components/TimelineSpace/Modals/NewToot/Status.vue

261 lines
6.4 KiB
Vue
Raw Normal View History

<template>
<div class="status">
<textarea
v-model="status"
ref="status"
2018-08-16 16:43:02 +02:00
v-shortkey="openSuggest ? {up: ['arrowup'], down: ['arrowdown'], enter: ['enter'], esc: ['esc']} : {linux: ['ctrl', 'enter'], mac: ['meta', 'enter'], left: ['arrowleft'], right: ['arrowright']}"
@shortkey="handleKey"
2018-08-20 05:22:35 +02:00
@paste="onPaste"
v-on:input="startSuggest"
:placeholder="$t('modals.new_toot.status')"
autofocus>
</textarea>
<el-popover
placement="bottom-start"
width="300"
trigger="manual"
v-model="openSuggest">
<ul class="suggest-list">
<li
2018-08-19 05:45:22 +02:00
v-for="(item, index) in filteredSuggestion"
:key="index"
2018-08-19 05:45:22 +02:00
@click="insertItem(item)"
@shortkey="insertItem(item)"
@mouseover="highlightedIndex = index"
:class="{'highlighted': highlightedIndex === index}">
2018-08-19 07:54:16 +02:00
<span v-if="item.image">
<img :src="item.image" class="icon" />
</span>
{{ item.name }}
</li>
</ul>
</el-popover>
</div>
</template>
<script>
2018-08-07 16:20:58 +02:00
import { mapState } from 'vuex'
import suggestText from '../../../../utils/suggestText'
export default {
name: 'status',
props: {
value: {
type: String
},
opened: {
type: Boolean,
default: false
}
},
data () {
return {
openSuggest: false,
highlightedIndex: 0,
startIndex: null,
2018-08-19 05:45:22 +02:00
matchWord: null,
filteredSuggestion: []
}
},
computed: {
2018-08-07 16:20:58 +02:00
...mapState({
filteredAccounts: state => state.TimelineSpace.Modals.NewToot.Status.filteredAccounts,
emojis: state => state.TimelineSpace.emojis
2018-08-07 16:20:58 +02:00
}),
status: {
get: function () {
return this.value
},
set: function (value) {
this.$emit('input', value)
}
}
},
watch: {
opened: function (newState, oldState) {
if (!oldState && newState) {
this.$nextTick(function () {
this.$refs.status.focus()
})
2018-08-07 16:20:58 +02:00
} else if (oldState && !newState) {
this.closeSuggest()
}
}
},
methods: {
startSuggest (e) {
const currentValue = e.target.value
// Start suggest after user stop writing
setTimeout(() => {
if (currentValue === this.status) {
2018-08-19 05:45:22 +02:00
this.suggest(e)
}
}, 500)
},
2018-08-19 05:45:22 +02:00
async suggest (e) {
const ac = await this.suggestAccount(e)
if (!ac) {
this.suggestEmoji(e)
}
},
2018-08-07 16:20:58 +02:00
async suggestAccount (e) {
// e.target.sectionStart: Cursor position
// e.target.value: current value of the textarea
const [start, word] = suggestText(e.target.value, e.target.selectionStart, '@')
if (!start || !word) {
this.closeSuggest()
return false
}
2018-08-07 16:20:58 +02:00
try {
await this.$store.dispatch('TimelineSpace/Modals/NewToot/Status/searchAccount', word)
this.openSuggest = true
this.startIndex = start
this.matchWord = word
2018-08-19 05:45:22 +02:00
this.filteredSuggestion = this.filteredAccounts
return true
2018-08-07 16:20:58 +02:00
} catch (err) {
console.log(err)
2018-08-19 05:45:22 +02:00
return false
}
},
suggestEmoji (e) {
// e.target.sectionStart: Cursor position
// e.target.value: current value of the textarea
const [start, word] = suggestText(e.target.value, e.target.selectionStart, ':')
if (!start || !word) {
this.closeSuggest()
return false
}
const filtered = this.emojis.filter(emoji => emoji.name.includes(word))
2018-08-19 05:45:22 +02:00
if (filtered.length > 0) {
this.openSuggest = true
this.startIndex = start
this.matchWord = word
this.filteredSuggestion = filtered
} else {
this.openSuggest = false
}
2018-08-19 05:45:22 +02:00
return true
},
closeSuggest () {
this.openSuggest = false
this.startIndex = null
this.matchWord = null
2018-08-07 16:20:58 +02:00
this.highlightedIndex = 0
2018-08-19 05:45:22 +02:00
this.filteredSuggestion = []
2018-08-07 16:20:58 +02:00
this.$store.commit('TimelineSpace/Modals/NewToot/Status/clearFilteredAccounts')
},
suggestHighlight (index) {
if (index < 0) {
this.highlightedIndex = 0
2018-08-19 05:45:22 +02:00
} else if (index >= this.filteredSuggestion.length) {
this.highlightedIndex = this.filteredSuggestion.length - 1
} else {
this.highlightedIndex = index
}
},
2018-08-19 05:45:22 +02:00
insertItem (item) {
const str = `${this.status.slice(0, this.startIndex - 1)}${item.name} ${this.status.slice(this.startIndex + this.matchWord.length)}`
this.status = str
2018-08-07 16:20:58 +02:00
this.closeSuggest()
},
2018-08-19 05:45:22 +02:00
selectCurrentItem () {
const item = this.filteredSuggestion[this.highlightedIndex]
this.insertItem(item)
},
2018-08-20 05:22:35 +02:00
onPaste (e) {
this.$emit('paste', e)
},
handleKey (event) {
const current = event.target.selectionStart
switch (event.srcKey) {
case 'up':
this.suggestHighlight(this.highlightedIndex - 1)
break
case 'down':
this.suggestHighlight(this.highlightedIndex + 1)
break
case 'enter':
2018-08-19 05:45:22 +02:00
this.selectCurrentItem()
break
2018-08-16 16:43:02 +02:00
case 'esc':
this.closeSuggest()
break
case 'left':
event.target.setSelectionRange(current - 1, current - 1)
break
case 'right':
event.target.setSelectionRange(current + 1, current + 1)
break
2018-08-07 18:09:46 +02:00
case 'linux':
case 'mac':
this.$emit('toot')
break
default:
return true
}
}
}
}
</script>
<style lang="scss" scoped>
.status {
textarea {
display: block;
padding: 5px 15px;
line-height: 1.5;
box-sizing: border-box;
width: 100%;
font-size: inherit;
color: #606266;
background-image: none;
border: 0;
border-radius: 4px;
resize: none;
height: 120px;
2018-08-07 16:20:58 +02:00
transition: border-color 0.2s cubic-bezier(0.645, 0.045, 9.355, 1);
font-family: 'Lato', sans-serif;
&::placeholder {
color: #c0c4cc;
}
&:focus {
outline: 0;
}
}
.suggest-list {
list-style: none;
padding: 6px 0;
margin: 0;
box-sizing: border-box;
li {
font-size: 14px;
padding: 0 20px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: #606266;
height: 34px;
line-height: 34px;
box-sizing: border-box;
cursor: pointer;
2018-08-19 07:54:16 +02:00
.icon {
display: inline-block;
vertical-align: middle;
width: 20px;
height: 20px;
}
}
.highlighted {
background-color: #f5f7fa;
}
}
}
</style>