b9473cada9
* moving exports to _converse.exports.
34 lines
943 B
JavaScript
34 lines
943 B
JavaScript
// SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { Collection } from '@converse/skeletor/src/collection.js'
|
|
import { ChatRoomTask } from './task'
|
|
import { initStorage } from '@converse/headless/utils/storage.js'
|
|
|
|
/**
|
|
* A list of {@link _converse.exports.ChatRoomTask} instances, representing all tasks associated to a MUC.
|
|
* @class
|
|
* @namespace _converse.exports.ChatRoomTasks
|
|
* @memberOf _converse
|
|
*/
|
|
class ChatRoomTasks extends Collection {
|
|
model = ChatRoomTask
|
|
comparator = 'order'
|
|
|
|
initialize (models, options) {
|
|
this.model = ChatRoomTask // don't know why, must do it again here
|
|
super.initialize(arguments)
|
|
this.chatroom = options.chatroom
|
|
|
|
const id = `converse-livechat-tasks-${this.chatroom.get('jid')}`
|
|
initStorage(this, id, 'session')
|
|
|
|
this.on('change:order', () => this.sort())
|
|
}
|
|
}
|
|
|
|
export {
|
|
ChatRoomTasks
|
|
}
|