1
0
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:
Tim Düsterhus 2020-10-31 17:05:30 +01:00
parent 1a83a69026
commit 17468c9cf6
Signed by: TimWolla
GPG Key ID: 8FF75566094168AF
3 changed files with 38 additions and 19 deletions

View File

@ -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 uses the Licensed Work for a purpose that does neither
directly or indirectly generate revenue. 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 Change License: Version 2 or later of the GNU General Public License as
published by the Free Software Foundation. published by the Free Software Foundation.

View File

@ -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 * Use of this software is governed by the Business Source License
* included in the LICENSE file. * 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 * On the date above, in accordance with the Business Source
* License, use of this software will be governed by version 2 * 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}`) console.debug('Chat.onAutocomplete', `Autocompleting message: ${value}`)
const result = this.bottle.container.Autocompleter.autocomplete(value) const result = this.bottle.container.Autocompleter.autocomplete(value)
const returnValues = [] const completions = []
for (const item of result) { for (const item of result) {
returnValues.push({ label: item, objectID: item }) completions.push(item)
if (returnValues.length == 5) break if (completions.length == 5) break
} }
const payload = { returnValues } this.ui.autocompleter.sendCompletions(completions)
this.ui.autocompleter._ajaxSuccess(payload)
} }
async pullMessages() { async pullMessages() {

View File

@ -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 * Use of this software is governed by the Business Source License
* included in the LICENSE file. * 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 * On the date above, in accordance with the Business Source
* License, use of this software will be governed by version 2 * License, use of this software will be governed by version 2
@ -21,12 +21,13 @@ define([ 'WoltLabSuite/Core/Dom/Util'
class Autocompleter extends Suggestion { class Autocompleter extends Suggestion {
constructor(input) { constructor(input) {
const elementId = DomUtil.identify(input.input) const elementId = DomUtil.identify(input.input)
const options = { callbackSelect: (() => null) } const options = { callbackSelect: (_elementId, selection) => this.insertSelection(selection) }
super(elementId, options) super(elementId, options)
this.input = input this.input = input
this._options.callbackSelect = this.callbackSelect.bind(this) this.completions = new Map()
this.completionId = 0
} }
bootstrap() { bootstrap() {
@ -40,30 +41,49 @@ define([ 'WoltLabSuite/Core/Dom/Util'
}) })
} }
keyDown(...args) {
return this._keyDown(...args)
}
_keyDown(event) { _keyDown(event) {
const result = super._keyDown(event) const result = (super.keyDown || super._keyDown).call(this, event)
if (!result && EventKey.Enter(event)) { if (!result && EventKey.Enter(event)) {
this.cancelNextSubmit = true this.cancelNextSubmit = true
} }
} }
keyUp(...args) {
return this._keyUp(...args)
}
_keyUp(event) { _keyUp(event) {
const value = this.input.getText(true) const value = this.input.getText(true)
if (this._value !== value) { if (this._value !== value) {
this._ajaxSuccess({ returnValues: [] }) this.sendCompletions([])
this._value = value this._value = value
} }
} }
callbackSelect(_, selected) { insertSelection(selection) {
this.input.insertText(selected.objectId, { append: false }) let text
if ((text = this.completions.get(parseInt(selection.objectId, 10)))) {
this.input.insertText(text, { append: false })
}
} }
_ajaxSuccess(...args) { sendCompletions(completions) {
this._value = this.input.getText(true) this.completions = new Map()
return super._ajaxSuccess(...args)
const returnValues = completions.map(completion => {
this.completions.set(++this.completionId, completion)
return { label: completion
, objectID: this.completionId
}
})
this._ajaxSuccess({ returnValues })
} }
} }
Autocompleter.DEPENDENCIES = DEPENDENCIES Autocompleter.DEPENDENCIES = DEPENDENCIES