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

41 lines
1003 B
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.
*/
2020-11-01 17:41:19 +01:00
define(['../Command', '../Parser'], function (Command, Parser) {
'use strict'
2018-08-17 00:30:59 +02:00
2020-11-01 17:41:19 +01:00
const DEPENDENCIES = ['ProfileStore']
2018-08-17 00:30:59 +02:00
class Info extends Command {
constructor(profileStore, id) {
super(id)
this.profileStore = profileStore
}
getParameterParser() {
2020-11-01 17:41:19 +01:00
return Parser.Username.map((username) => ({ username }))
2018-08-17 00:30:59 +02:00
}
2020-11-01 17:41:19 +01:00
*autocomplete(parameterString) {
2018-08-17 00:30:59 +02:00
for (const userID of this.profileStore.getLastActivity()) {
const user = this.profileStore.get(userID)
if (!user.username.startsWith(parameterString)) continue
yield `"${user.username.replace(/"/g, '""')}" `
}
}
}
Info.DEPENDENCIES = DEPENDENCIES
return Info
2020-11-01 17:41:19 +01:00
})