1
0
mirror of https://github.com/wbbaddons/Tims-Chat.git synced 2025-01-20 01:40:41 +00:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.4 KiB
JavaScript
Raw Normal View History

2018-08-17 00:30:59 +02:00
/*
2021-02-04 23:04:35 +01:00
* Copyright (c) 2010-2021 Tim Düsterhus.
2018-08-17 00:30:59 +02:00
*
* Use of this software is governed by the Business Source License
* included in the LICENSE file.
*
2021-03-05 17:19:27 +01:00
* Change Date: 2025-03-05
2018-08-17 00:30:59 +02:00
*
* On the date above, in accordance with the Business Source
* License, use of this software will be governed by version 2
* or later of the General Public License.
*/
define(['../Command', '../Parser', 'WoltLabSuite/Core/StringUtil'], function (
Command,
Parser,
StringUtil
) {
'use strict'
2020-11-01 17:41:19 +01:00
2018-08-17 00:30:59 +02:00
const DEPENDENCIES = ['ProfileStore']
class Plain extends Command {
constructor(profileStore, id) {
super(id)
this.profileStore = profileStore
}
getParameterParser() {
2021-09-17 15:14:39 +02:00
return Parser.Rest1.map(StringUtil.escapeHTML.bind(StringUtil)).map(
(text) => ({ text })
)
2018-08-17 00:30:59 +02:00
}
*autocomplete(parameterString) {
const parts = parameterString.split(/ /)
const lastWord = parts.pop().toLowerCase()
if (lastWord === '') {
return
}
for (const userID of this.profileStore.getLastActivity()) {
const user = this.profileStore.get(userID)
const username = user.username.toLowerCase()
if (
!username.startsWith(parameterString) &&
!username.startsWith(lastWord.replace(/^@/, ''))
2020-11-01 17:41:19 +01:00
)
2018-08-17 00:30:59 +02:00
continue
2020-11-01 17:41:19 +01:00
2018-08-17 00:30:59 +02:00
yield `${parts
.concat([
lastWord.startsWith('@') ? `@${user.username}` : user.username,
])
.join(' ')} `
}
}
}
Plain.DEPENDENCIES = DEPENDENCIES
return Plain
})