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.

49 lines
1.2 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(['../Parser', './Plain'], function (Parser, Plain) {
'use strict'
class Whisper extends Plain {
getParameterParser() {
return Parser.Username.thenLeft(Parser.Whitespace.rep())
.then(super.getParameterParser())
.map(([username, object]) => {
object.username = username
return object
})
}
*autocomplete(parameterString) {
const usernameDone = Parser.Username.thenLeft(Parser.Whitespace).parse(
Parser.Streams.ofString(parameterString)
2020-11-01 17:41:19 +01:00
)
2018-08-17 00:30:59 +02:00
if (usernameDone.isAccepted()) {
yield* super.autocomplete(parameterString)
return
}
for (const userID of this.profileStore.getLastActivity()) {
const user = this.profileStore.get(userID)
if (!user.username.startsWith(parameterString)) continue
yield `"${user.username.replace(/"/g, '""')}" `
}
}
}
return Whisper
})