forked from AkkomaGang/akkoma-fe
add user autosuggest component
This commit is contained in:
parent
d05bd31092
commit
da5844205c
4 changed files with 139 additions and 2 deletions
41
src/components/user_autosuggest/user_autosuggest.js
Normal file
41
src/components/user_autosuggest/user_autosuggest.js
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
import { VueAutosuggest } from 'vue-autosuggest'
|
||||||
|
import BasicUserCard from '../basic_user_card/basic_user_card.vue'
|
||||||
|
import userSearchApi from '../../services/new_api/user_search.js'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
VueAutosuggest,
|
||||||
|
BasicUserCard
|
||||||
|
},
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
results: [],
|
||||||
|
timeout: null,
|
||||||
|
selected: null,
|
||||||
|
debounceMilliseconds: 500,
|
||||||
|
inputProps: {
|
||||||
|
id: 'autosuggest__input',
|
||||||
|
onInputChange: this.fetchResults,
|
||||||
|
placeholder: 'Search...',
|
||||||
|
class: 'form-control'
|
||||||
|
},
|
||||||
|
suggestions: []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
fetchResults (query) {
|
||||||
|
clearTimeout(this.timeout)
|
||||||
|
this.timeout = setTimeout(() => {
|
||||||
|
userSearchApi.search({query, store: this.$store})
|
||||||
|
.then((data) => { this.suggestions = [{ data }] })
|
||||||
|
}, this.debounceMilliseconds)
|
||||||
|
},
|
||||||
|
clickHandler (item) {
|
||||||
|
return false
|
||||||
|
},
|
||||||
|
clickUserHandler () {
|
||||||
|
console.log('clickUserHandler')
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
93
src/components/user_autosuggest/user_autosuggest.vue
Normal file
93
src/components/user_autosuggest/user_autosuggest.vue
Normal file
|
@ -0,0 +1,93 @@
|
||||||
|
<template>
|
||||||
|
<div class="user-autosuggest">
|
||||||
|
<VueAutosuggest
|
||||||
|
:suggestions="suggestions"
|
||||||
|
:inputProps="inputProps"
|
||||||
|
@click="clickHandler"
|
||||||
|
>
|
||||||
|
<template slot-scope="{suggestion}">
|
||||||
|
<BasicUserCard :user="suggestion.item" />
|
||||||
|
</template>
|
||||||
|
</VueAutosuggest>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script src="./user_autosuggest.js"></script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.user-autosuggest {
|
||||||
|
.avatar {
|
||||||
|
height: 25px;
|
||||||
|
width: 25px;
|
||||||
|
border-radius: 20px;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
#autosuggest__input {
|
||||||
|
outline: none;
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
border: 1px solid #616161;
|
||||||
|
padding: 10px;
|
||||||
|
width: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
-moz-box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
#autosuggest__input.autosuggest__input-open {
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.autosuggest__results-container {
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.autosuggest__results {
|
||||||
|
font-weight: 300;
|
||||||
|
margin: 0;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 10000001;
|
||||||
|
width: 100%;
|
||||||
|
border: 1px solid #e0e0e0;
|
||||||
|
border-bottom-left-radius: 4px;
|
||||||
|
border-bottom-right-radius: 4px;
|
||||||
|
background: white;
|
||||||
|
padding: 0px;
|
||||||
|
max-height: 400px;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
|
||||||
|
.autosuggest__results ul {
|
||||||
|
list-style: none;
|
||||||
|
padding-left: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.autosuggest__results .autosuggest__results_item {
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#autosuggest ul:nth-child(1) > .autosuggest__results_title {
|
||||||
|
border-top: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.autosuggest__results .autosuggest__results_title {
|
||||||
|
color: gray;
|
||||||
|
font-size: 11px;
|
||||||
|
margin-left: 0;
|
||||||
|
padding: 15px 13px 5px;
|
||||||
|
border-top: 1px solid lightgray;
|
||||||
|
}
|
||||||
|
|
||||||
|
.autosuggest__results .autosuggest__results_item:active,
|
||||||
|
.autosuggest__results .autosuggest__results_item:hover,
|
||||||
|
.autosuggest__results .autosuggest__results_item:focus,
|
||||||
|
.autosuggest__results
|
||||||
|
.autosuggest__results_item.autosuggest__results_item-highlighted {
|
||||||
|
background-color: #f6f6f6;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -9,6 +9,7 @@ import fileSizeFormatService from '../../services/file_size_format/file_size_for
|
||||||
import BlockCard from '../block_card/block_card.vue'
|
import BlockCard from '../block_card/block_card.vue'
|
||||||
import MuteCard from '../mute_card/mute_card.vue'
|
import MuteCard from '../mute_card/mute_card.vue'
|
||||||
import EmojiInput from '../emoji-input/emoji-input.vue'
|
import EmojiInput from '../emoji-input/emoji-input.vue'
|
||||||
|
import UserAutoSuggest from '../user_autosuggest/user_autosuggest.vue'
|
||||||
import withSubscription from '../../hocs/with_subscription/with_subscription'
|
import withSubscription from '../../hocs/with_subscription/with_subscription'
|
||||||
import withList from '../../hocs/with_list/with_list'
|
import withList from '../../hocs/with_list/with_list'
|
||||||
|
|
||||||
|
@ -73,7 +74,8 @@ const UserSettings = {
|
||||||
ImageCropper,
|
ImageCropper,
|
||||||
BlockList,
|
BlockList,
|
||||||
MuteList,
|
MuteList,
|
||||||
EmojiInput
|
EmojiInput,
|
||||||
|
UserAutoSuggest
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
user () {
|
user () {
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
<div class="setting-item" >
|
<div class="setting-item" >
|
||||||
<h2>{{$t('settings.name_bio')}}</h2>
|
<h2>{{$t('settings.name_bio')}}</h2>
|
||||||
<p>{{$t('settings.name')}}</p>
|
<p>{{$t('settings.name')}}</p>
|
||||||
<EmojiInput
|
<EmojiInput
|
||||||
type="text"
|
type="text"
|
||||||
v-model="newName"
|
v-model="newName"
|
||||||
id="username"
|
id="username"
|
||||||
|
@ -195,6 +195,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div :label="$t('settings.blocks_tab')">
|
<div :label="$t('settings.blocks_tab')">
|
||||||
|
<UserAutoSuggest />
|
||||||
<block-list :refresh="true">
|
<block-list :refresh="true">
|
||||||
<template slot="empty">{{$t('settings.no_blocks')}}</template>
|
<template slot="empty">{{$t('settings.no_blocks')}}</template>
|
||||||
</block-list>
|
</block-list>
|
||||||
|
|
Loading…
Reference in a new issue