mirror of
https://github.com/wbbaddons/Tims-Chat.git
synced 2024-12-21 21:30:08 +00:00
Make Ui/Input/Autocompleter less of a hack
This commit is contained in:
parent
1a83a69026
commit
17468c9cf6
2
LICENSE
2
LICENSE
@ -10,7 +10,7 @@ Additional Use Grant: You may use the Licensed Work when your application
|
||||
uses the Licensed Work for a purpose that does neither
|
||||
directly or indirectly generate revenue.
|
||||
|
||||
Change Date: 2024-10-20
|
||||
Change Date: 2024-10-31
|
||||
|
||||
Change License: Version 2 or later of the GNU General Public License as
|
||||
published by the Free Software Foundation.
|
||||
|
@ -1,10 +1,10 @@
|
||||
/*
|
||||
* Copyright (c) 2010-2018 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2020 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2024-10-20
|
||||
* Change Date: 2024-10-31
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
@ -335,14 +335,13 @@ define([ './Chat/console'
|
||||
console.debug('Chat.onAutocomplete', `Autocompleting message: ${value}`)
|
||||
|
||||
const result = this.bottle.container.Autocompleter.autocomplete(value)
|
||||
const returnValues = []
|
||||
const completions = []
|
||||
for (const item of result) {
|
||||
returnValues.push({ label: item, objectID: item })
|
||||
if (returnValues.length == 5) break
|
||||
completions.push(item)
|
||||
if (completions.length == 5) break
|
||||
}
|
||||
|
||||
const payload = { returnValues }
|
||||
this.ui.autocompleter._ajaxSuccess(payload)
|
||||
this.ui.autocompleter.sendCompletions(completions)
|
||||
}
|
||||
|
||||
async pullMessages() {
|
||||
|
@ -1,10 +1,10 @@
|
||||
/*
|
||||
* Copyright (c) 2010-2018 Tim Düsterhus.
|
||||
* Copyright (c) 2010-2020 Tim Düsterhus.
|
||||
*
|
||||
* Use of this software is governed by the Business Source License
|
||||
* included in the LICENSE file.
|
||||
*
|
||||
* Change Date: 2024-10-20
|
||||
* Change Date: 2024-10-31
|
||||
*
|
||||
* On the date above, in accordance with the Business Source
|
||||
* License, use of this software will be governed by version 2
|
||||
@ -21,12 +21,13 @@ define([ 'WoltLabSuite/Core/Dom/Util'
|
||||
class Autocompleter extends Suggestion {
|
||||
constructor(input) {
|
||||
const elementId = DomUtil.identify(input.input)
|
||||
const options = { callbackSelect: (() => null) }
|
||||
const options = { callbackSelect: (_elementId, selection) => this.insertSelection(selection) }
|
||||
|
||||
super(elementId, options)
|
||||
|
||||
this.input = input
|
||||
this._options.callbackSelect = this.callbackSelect.bind(this)
|
||||
this.completions = new Map()
|
||||
this.completionId = 0
|
||||
}
|
||||
|
||||
bootstrap() {
|
||||
@ -40,30 +41,49 @@ define([ 'WoltLabSuite/Core/Dom/Util'
|
||||
})
|
||||
}
|
||||
|
||||
keyDown(...args) {
|
||||
return this._keyDown(...args)
|
||||
}
|
||||
|
||||
_keyDown(event) {
|
||||
const result = super._keyDown(event)
|
||||
const result = (super.keyDown || super._keyDown).call(this, event)
|
||||
|
||||
if (!result && EventKey.Enter(event)) {
|
||||
this.cancelNextSubmit = true
|
||||
}
|
||||
}
|
||||
|
||||
keyUp(...args) {
|
||||
return this._keyUp(...args)
|
||||
}
|
||||
|
||||
_keyUp(event) {
|
||||
const value = this.input.getText(true)
|
||||
|
||||
if (this._value !== value) {
|
||||
this._ajaxSuccess({ returnValues: [] })
|
||||
this.sendCompletions([])
|
||||
this._value = value
|
||||
}
|
||||
}
|
||||
|
||||
callbackSelect(_, selected) {
|
||||
this.input.insertText(selected.objectId, { append: false })
|
||||
insertSelection(selection) {
|
||||
let text
|
||||
if ((text = this.completions.get(parseInt(selection.objectId, 10)))) {
|
||||
this.input.insertText(text, { append: false })
|
||||
}
|
||||
}
|
||||
|
||||
_ajaxSuccess(...args) {
|
||||
this._value = this.input.getText(true)
|
||||
return super._ajaxSuccess(...args)
|
||||
sendCompletions(completions) {
|
||||
this.completions = new Map()
|
||||
|
||||
const returnValues = completions.map(completion => {
|
||||
this.completions.set(++this.completionId, completion)
|
||||
return { label: completion
|
||||
, objectID: this.completionId
|
||||
}
|
||||
})
|
||||
|
||||
this._ajaxSuccess({ returnValues })
|
||||
}
|
||||
}
|
||||
Autocompleter.DEPENDENCIES = DEPENDENCIES
|
||||
|
Loading…
Reference in New Issue
Block a user